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.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
trisberg committed Dec 15, 2017
1 parent 1df8502 commit 5832468
Show file tree
Hide file tree
Showing 23 changed files with 27 additions and 27 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.2-snapshot
- image: projectriff/function-controller:0.0.3-snapshot
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.2-snapshot
value: 0.0.3-snapshot
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.2-snapshot
- image: projectriff/http-gateway:0.0.3-snapshot
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.2-snapshot
- image: projectriff/topic-controller:0.0.3-snapshot
name: topic-controller
imagePullPolicy: IfNotPresent
livenessProbe:
Expand Down
8 changes: 4 additions & 4 deletions helm/values-snapshot.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
functionController:
image:
tag: 0.0.2-snapshot
tag: 0.0.3-snapshot
sidecar:
image:
tag: 0.0.2-snapshot
tag: 0.0.3-snapshot
topicController:
image:
tag: 0.0.2-snapshot
tag: 0.0.3-snapshot
httpGateway:
image:
tag: 0.0.2-snapshot
tag: 0.0.3-snapshot
2 changes: 1 addition & 1 deletion riff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

RIFF_VERSION=0.0.1
RIFF_VERSION=0.0.2

function print_usage() {
cat <<EOF
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
FROM projectriff/java-function-invoker:0.0.2
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/java/greeter/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pushd samples/java/greeter/ ; ./mvnw clean package ; popd
=== Build the Docker container for the function code

```
./riff build -n greeter -v v0001 -f samples/java/greeter
./riff build -n greeter -v 0.0.2 -f samples/java/greeter
```

=== Create the Function and Topic(s)
Expand Down
2 changes: 1 addition & 1 deletion samples/java/greeter/greeter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ spec:
input: names
output: greetings
container:
image: projectriff/greeter:v0001
image: projectriff/greeter:0.0.2
2 changes: 1 addition & 1 deletion samples/node/slack/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM projectriff/node-function-invoker:0.0.1
FROM projectriff/node-function-invoker:0.0.2
ENV FUNCTION_URI /functions/function.js
ADD slack_command.js ${FUNCTION_URI}
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
FROM projectriff/node-function-invoker:0.0.2
ENV FUNCTION_URI /functions/function.js
ADD square.js ${FUNCTION_URI}
2 changes: 1 addition & 1 deletion samples/node/square/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
=== Build the Docker container for the function code

```
./riff build -n square -v v0001 -f samples/node/square
./riff build -n square -v 0.0.2 -f samples/node/square
```

=== Create the Function and Topic(s)
Expand Down
2 changes: 1 addition & 1 deletion samples/node/square/square.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ spec:
protocol: http
input: numbers
container:
image: projectriff/square:v0001
image: projectriff/square:0.0.2
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
FROM projectriff/python2-function-invoker:0.0.2
ARG FUNCTION_MODULE=sentiment_service.py
ARG FUNCTION_HANDLER=process
ADD ./sentiment_service.py /
Expand Down
2 changes: 1 addition & 1 deletion samples/python/sentiments/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
=== Build the Docker container for the function code

```
./riff build -n sentiments -v v0001 -f samples/python/sentiments
./riff build -n sentiments -v 0.0.2 -f samples/python/sentiments
```

=== Create the Function and Topic(s)
Expand Down
2 changes: 1 addition & 1 deletion samples/python/sentiments/sentiments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ spec:
input: tweets
output: sentiments
container:
image: projectriff/sentiments:v0001
image: projectriff/sentiments:0.0.2
2 changes: 1 addition & 1 deletion samples/python/uppercase/dockerize
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ GIT_PATH=https://raw.githubusercontent.com/projectriff/function-proto/master
wget $GIT_PATH/fntypes.proto -P proto
wget $GIT_PATH/function.proto -P proto

docker build . --rm -t projectriff/grpc-py:v0001
docker build . --rm -t projectriff/grpc-py:0.0.2
2 changes: 1 addition & 1 deletion samples/python/uppercase/uppercase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
protocol: grpc
input: greetings
container:
image: projectriff/grpc-py:v0001
image: projectriff/grpc-py:0.0.2
env:
- name: GRPC_PORT
value: 10382
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
FROM projectriff/shell-function-invoker:0.0.2
ARG FUNCTION_URI="/echo.sh"
ADD echo.sh /
ENV FUNCTION_URI $FUNCTION_URI
2 changes: 1 addition & 1 deletion samples/shell/echo/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
=== Build the Docker container for the function code

```
./riff build -n echo -v v0001 -f samples/shell/echo
./riff build -n echo -v 0.0.2 -f samples/shell/echo
```

=== Create the Function and Topic(s)
Expand Down
2 changes: 1 addition & 1 deletion samples/shell/echo/echo-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ spec:
protocol: stdio
input: greetings
container:
image: projectriff/echo:v0001
image: projectriff/echo:0.0.2
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
FROM projectriff/shell-function-invoker:0.0.2
ARG FUNCTION_URI="/wordcount.sh"
ADD wordcount.sh /
ENV FUNCTION_URI $FUNCTION_URI
2 changes: 1 addition & 1 deletion samples/shell/wordcount/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
=== Build the Docker container for the function code

```
./riff build -n wordcount -v v0001 -f samples/shell/wordcount
./riff build -n wordcount -v 0.0.2 -f samples/shell/wordcount
```

=== Create the Function and Topic(s)
Expand Down
2 changes: 1 addition & 1 deletion samples/shell/wordcount/wordcount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ spec:
input: names
output: greetings
container:
image: projectriff/wordcount:v0001
image: projectriff/wordcount:0.0.2

0 comments on commit 5832468

Please sign in to comment.