From 3c28910614aa793bd2ebafed236141303079d212 Mon Sep 17 00:00:00 2001 From: trisberg Date: Tue, 28 Nov 2017 19:12:34 -0500 Subject: [PATCH] Preparing for 0.0.1 release --- config/function-controller-deployment.yaml | 4 ++-- config/http-gateway-deployment.yaml | 2 +- config/topic-controller-deployment.yaml | 2 +- samples/java/greeter/Dockerfile | 2 +- samples/node/square/Dockerfile | 2 +- samples/python/sentiments/Dockerfile | 2 +- samples/shell/echo/Dockerfile | 2 +- samples/shell/wordcount/Dockerfile | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/function-controller-deployment.yaml b/config/function-controller-deployment.yaml index 843f0eaf7..0d6f77947 100644 --- a/config/function-controller-deployment.yaml +++ b/config/function-controller-deployment.yaml @@ -12,7 +12,7 @@ spec: component: function-controller spec: containers: - - image: projectriff/function-controller:0.0.1-SNAPSHOT + - image: projectriff/function-controller:0.0.1 name: function-controller imagePullPolicy: IfNotPresent livenessProbe: @@ -37,5 +37,5 @@ spec: - name: SPRING_CLOUD_STREAM_KAFKA_BINDER_ZK_NODES value: zookeeper:2181 - name: RIFF_FUNCTION_SIDECAR_TAG - value: 0.0.1-SNAPSHOT + value: 0.0.1 serviceAccountName: riff-sa diff --git a/config/http-gateway-deployment.yaml b/config/http-gateway-deployment.yaml index 00c69d5fa..782bf3302 100644 --- a/config/http-gateway-deployment.yaml +++ b/config/http-gateway-deployment.yaml @@ -12,7 +12,7 @@ spec: component: http-gateway spec: containers: - - image: projectriff/http-gateway:0.0.1-SNAPSHOT + - image: projectriff/http-gateway:0.0.1 name: http-gateway imagePullPolicy: IfNotPresent livenessProbe: diff --git a/config/topic-controller-deployment.yaml b/config/topic-controller-deployment.yaml index 20744d0df..2fe7f7968 100644 --- a/config/topic-controller-deployment.yaml +++ b/config/topic-controller-deployment.yaml @@ -12,7 +12,7 @@ spec: component: topic-controller spec: containers: - - image: projectriff/topic-controller:0.0.1-SNAPSHOT + - image: projectriff/topic-controller:0.0.1 name: topic-controller imagePullPolicy: IfNotPresent livenessProbe: diff --git a/samples/java/greeter/Dockerfile b/samples/java/greeter/Dockerfile index 7558419d1..0a8ba5fae 100644 --- a/samples/java/greeter/Dockerfile +++ b/samples/java/greeter/Dockerfile @@ -1,4 +1,4 @@ -FROM projectriff/java-function-invoker:0.0.1-SNAPSHOT +FROM projectriff/java-function-invoker:0.0.1 ARG FUNCTION_JAR=/functions/greeter-1.0.0.jar ARG FUNCTION_CLASS=functions.Greeter ADD target/greeter-1.0.0.jar $FUNCTION_JAR diff --git a/samples/node/square/Dockerfile b/samples/node/square/Dockerfile index e9222d823..c58c35f57 100644 --- a/samples/node/square/Dockerfile +++ b/samples/node/square/Dockerfile @@ -1,3 +1,3 @@ -FROM projectriff/node-function-invoker:0.0.1-SNAPSHOT +FROM projectriff/node-function-invoker:0.0.1 ENV FUNCTION_URI /functions/function.js ADD square.js ${FUNCTION_URI} diff --git a/samples/python/sentiments/Dockerfile b/samples/python/sentiments/Dockerfile index 43bca064f..052206679 100644 --- a/samples/python/sentiments/Dockerfile +++ b/samples/python/sentiments/Dockerfile @@ -1,4 +1,4 @@ -FROM projectriff/python2-function-invoker:0.0.1-SNAPSHOT +FROM projectriff/python2-function-invoker:0.0.1 ARG FUNCTION_MODULE=sentiment_service.py ARG FUNCTION_HANDLER=process ADD ./sentiment_service.py / diff --git a/samples/shell/echo/Dockerfile b/samples/shell/echo/Dockerfile index a411cd630..84f234c20 100644 --- a/samples/shell/echo/Dockerfile +++ b/samples/shell/echo/Dockerfile @@ -1,4 +1,4 @@ -FROM projectriff/shell-function-invoker:0.0.1-SNAPSHOT +FROM projectriff/shell-function-invoker:0.0.1 ARG FUNCTION_URI="/echo.sh" ADD echo.sh / ENV FUNCTION_URI $FUNCTION_URI diff --git a/samples/shell/wordcount/Dockerfile b/samples/shell/wordcount/Dockerfile index 6b326b437..f6b26f7a2 100644 --- a/samples/shell/wordcount/Dockerfile +++ b/samples/shell/wordcount/Dockerfile @@ -1,4 +1,4 @@ -FROM projectriff/shell-function-invoker:0.0.1-SNAPSHOT +FROM projectriff/shell-function-invoker:0.0.1 ARG FUNCTION_URI="/wordcount.sh" ADD wordcount.sh / ENV FUNCTION_URI $FUNCTION_URI