You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2020/03/25 08:48:09 UTC

[flink-statefun] branch master updated (67b75eb -> d6b2216)

This is an automated email from the ASF dual-hosted git repository.

tzulitai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git.


    from 67b75eb  [FLINK-16752] Add a repackage goal to ridesharing example
     add 22f64f0  [FLINK-16757] Add Helm charts under tools
     add ffebe03  [FLINK-16757] Reuse Helm charts in examples
     add 9a6bd36  [FLINK-16722] Exclude venv from the rat plugin
     add 945be88  [FLINK-16722] Add Python SDK walkthrough
     add d6b2216  [hotfix] Let update_branch_version.sh update version string in Helm charts

No new revisions were added by this update.

Summary of changes:
 pom.xml                                            |   2 +-
 .../statefun-greeter-example/k8s/config-map.yaml   |  45 ----
 .../k8s/create-resources.sh}                       |   9 +-
 .../k8s/master-deployment.yaml                     |  65 ------
 .../k8s/master-rest-service.yaml                   |  28 ---
 .../k8s/master-service.yaml                        |  31 ---
 .../k8s/worker-deployment.yaml                     |  60 ------
 statefun-examples/statefun-python-k8s/README.md    |   4 +-
 .../statefun-python-k8s/build-example.sh           |  13 +-
 .../templates => }/python-worker-deployment.yaml   |  10 +-
 .../templates => }/python-worker-service.yaml      |   4 +-
 .../statefun-python-walkthrough/README.md          |  44 ++++
 .../statefun-python-walkthrough/example_utils.py   |  27 +--
 .../requirements.txt                               |   6 +-
 .../statefun-python-walkthrough/run-example.py     | 176 ++++++++++++++++
 .../walkthrough.proto}                             |  22 +-
 .../statefun-python-walkthrough/walkthrough.py     | 157 ++++++++++++++
 .../statefun-python-walkthrough/walkthrough_pb2.py | 229 +++++++++++++++++++++
 .../resources => tools/k8s}/Chart.yaml             |   6 +-
 .../k8s}/templates/config-map.yaml                 |   0
 .../k8s}/templates/master-deployment.yaml          |   0
 .../k8s}/templates/master-rest-service.yaml        |   0
 .../k8s}/templates/master-service.yaml             |   0
 .../k8s}/templates/worker-deployment.yaml          |   0
 .../resources => tools/k8s}/values.yaml            |  10 +-
 tools/releasing/update_branch_version.sh           |   3 +
 26 files changed, 672 insertions(+), 279 deletions(-)
 delete mode 100644 statefun-examples/statefun-greeter-example/k8s/config-map.yaml
 copy statefun-examples/{statefun-python-k8s/Dockerfile.statefun => statefun-greeter-example/k8s/create-resources.sh} (83%)
 mode change 100644 => 100755
 delete mode 100644 statefun-examples/statefun-greeter-example/k8s/master-deployment.yaml
 delete mode 100644 statefun-examples/statefun-greeter-example/k8s/master-rest-service.yaml
 delete mode 100644 statefun-examples/statefun-greeter-example/k8s/master-service.yaml
 delete mode 100644 statefun-examples/statefun-greeter-example/k8s/worker-deployment.yaml
 rename statefun-examples/statefun-python-k8s/{resources/templates => }/python-worker-deployment.yaml (85%)
 rename statefun-examples/statefun-python-k8s/{resources/templates => }/python-worker-service.yaml (92%)
 create mode 100644 statefun-examples/statefun-python-walkthrough/README.md
 copy statefun-docs/src/main/python/Caller.py => statefun-examples/statefun-python-walkthrough/example_utils.py (65%)
 copy statefun-examples/{statefun-python-k8s => statefun-python-walkthrough}/requirements.txt (95%)
 create mode 100644 statefun-examples/statefun-python-walkthrough/run-example.py
 copy statefun-examples/{statefun-python-k8s/messages.proto => statefun-python-walkthrough/walkthrough.proto} (78%)
 create mode 100644 statefun-examples/statefun-python-walkthrough/walkthrough.py
 create mode 100644 statefun-examples/statefun-python-walkthrough/walkthrough_pb2.py
 rename {statefun-examples/statefun-python-k8s/resources => tools/k8s}/Chart.yaml (85%)
 rename {statefun-examples/statefun-python-k8s/resources => tools/k8s}/templates/config-map.yaml (100%)
 rename {statefun-examples/statefun-python-k8s/resources => tools/k8s}/templates/master-deployment.yaml (100%)
 rename {statefun-examples/statefun-python-k8s/resources => tools/k8s}/templates/master-rest-service.yaml (100%)
 rename {statefun-examples/statefun-python-k8s/resources => tools/k8s}/templates/master-service.yaml (100%)
 rename {statefun-examples/statefun-python-k8s/resources => tools/k8s}/templates/worker-deployment.yaml (100%)
 rename {statefun-examples/statefun-python-k8s/resources => tools/k8s}/values.yaml (88%)