Skip to content
This repository has been archived by the owner on Mar 13, 2021. It is now read-only.

Commit

Permalink
Preparing for 0.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
trisberg committed Nov 29, 2017
1 parent 07b5737 commit 3c28910
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions config/function-controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
2 changes: 1 addition & 1 deletion config/http-gateway-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion config/topic-controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion samples/java/greeter/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion samples/node/square/Dockerfile
Original file line number Diff line number Diff line change
@@ -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}
2 changes: 1 addition & 1 deletion samples/python/sentiments/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 /
Expand Down
2 changes: 1 addition & 1 deletion samples/shell/echo/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion samples/shell/wordcount/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3c28910

Please sign in to comment.