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.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
trisberg committed Jan 26, 2018
1 parent 98d62a3 commit 1e90cac
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Getting-Started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ NOTE: The same commands work for all of the riff components: `functionController

* Overriding the version of a riff component:
+
To set the version tag for the `functionController` to `0.0.3-build.1` use the following:
To set the version tag for the `functionController` to `0.0.4-build.1` use the following:
+
[source, bash]
----
Expand Down
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.3-snapshot
- image: projectriff/function-controller:0.0.4-snapshot
name: function-controller
imagePullPolicy: IfNotPresent
livenessProbe:
Expand All @@ -33,5 +33,5 @@ spec:
- name: KAFKA_BROKERS
value: kafka:9092
- name: RIFF_FUNCTION_SIDECAR_TAG
value: 0.0.3-snapshot
value: 0.0.4-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.3-snapshot
- image: projectriff/http-gateway:0.0.4-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.3-snapshot
- image: projectriff/topic-controller:0.0.4-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.3-snapshot
tag: 0.0.4-snapshot
sidecar:
image:
tag: 0.0.3-snapshot
tag: 0.0.4-snapshot
topicController:
image:
tag: 0.0.3-snapshot
tag: 0.0.4-snapshot
httpGateway:
image:
tag: 0.0.3-snapshot
tag: 0.0.4-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="${RIFF_VERSION:-0.0.2}"
RIFF_VERSION="${RIFF_VERSION:-0.0.3}"

function print_usage() {
cat <<EOF
Expand Down
2 changes: 1 addition & 1 deletion riff.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setlocal enabledelayedexpansion

if [%RIFF_VERSION%]==[] (
set RIFF_VERSION=0.0.2
set RIFF_VERSION=0.0.3
)

:: handle general help
Expand Down

0 comments on commit 1e90cac

Please sign in to comment.