Skip to content

Commit 1b29888

Browse files
authored
Merge pull request #114 from BuddhiWathsala/master
Bump 5.1.0->5.1.1-rc1
2 parents b538ba1 + 6e54a9f commit 1b29888

11 files changed

+13
-13
lines changed

deploy/examples/example-stateful-distributed-email-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ spec:
5151
-
5252
name: BASIC_AUTH_ENABLED
5353
value: "false"
54-
image: "siddhiio/siddhi-runner-ubuntu:5.1.0"
54+
image: "siddhiio/siddhi-runner-ubuntu:5.1.1-rc1"
5555

5656
messagingSystem:
5757
type: nats

deploy/examples/example-stateful-distributed-log-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
-
4242
name: BASIC_AUTH_ENABLED
4343
value: "false"
44-
image: "siddhiio/siddhi-runner-ubuntu:5.1.0"
44+
image: "siddhiio/siddhi-runner-ubuntu:5.1.1-rc1"
4545

4646
messagingSystem:
4747
type: nats

deploy/examples/example-stateful-distributed-nats-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
-
4242
name: BASIC_AUTH_ENABLED
4343
value: "false"
44-
image: "siddhiio/siddhi-runner-ubuntu:5.1.0"
44+
image: "siddhiio/siddhi-runner-ubuntu:5.1.1-rc1"
4545

4646
messagingSystem:
4747
type: nats

deploy/examples/example-stateful-monolithic-log-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
-
4242
name: BASIC_AUTH_ENABLED
4343
value: "false"
44-
image: "siddhiio/siddhi-runner-ubuntu:5.1.0"
44+
image: "siddhiio/siddhi-runner-ubuntu:5.1.1-rc1"
4545

4646
persistentVolumeClaim:
4747
accessModes:

deploy/examples/example-stateful-tcp-nats-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
insert into PowerSurgeAlertStream;
3636
3737
container:
38-
image: "siddhiio/siddhi-runner-ubuntu:5.1.0"
38+
image: "siddhiio/siddhi-runner-ubuntu:5.1.1-rc1"
3939

4040
persistentVolumeClaim:
4141
accessModes:

deploy/examples/example-stateless-email-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ spec:
4747
-
4848
name: BASIC_AUTH_ENABLED
4949
value: "false"
50-
image: "siddhiio/siddhi-runner-ubuntu:5.1.0"
50+
image: "siddhiio/siddhi-runner-ubuntu:5.1.1-rc1"

deploy/examples/example-stateless-log-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ spec:
3737
-
3838
name: BASIC_AUTH_ENABLED
3939
value: "false"
40-
image: "siddhiio/siddhi-runner-ubuntu:5.1.0"
40+
image: "siddhiio/siddhi-runner-ubuntu:5.1.1-rc1"

deploy/operator.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
data:
88
siddhiHome: /home/siddhi_user/siddhi-runner/
99
siddhiProfile: runner
10-
siddhiImage: siddhiio/siddhi-runner-alpine:5.1.0
10+
siddhiImage: siddhiio/siddhi-runner-alpine:5.1.1-rc1
1111
autoIngressCreation: "true"
1212
# siddhiImageSecret: siddhiio
1313
# ingressTLS: siddhi-tls
@@ -31,7 +31,7 @@ spec:
3131
serviceAccountName: siddhi-operator
3232
containers:
3333
- name: siddhi-operator
34-
image: siddhiio/siddhi-operator:0.2.0
34+
image: siddhiio/siddhi-operator:0.2.1-rc1
3535
command:
3636
- siddhi-operator
3737
imagePullPolicy: Always
@@ -47,6 +47,6 @@ spec:
4747
- name: OPERATOR_NAME
4848
value: siddhi-operator
4949
- name: OPERATOR_VERSION
50-
value: 0.2.0
50+
value: 0.2.1-rc1
5151
- name: OPERATOR_CONFIGMAP
5252
value: siddhi-operator-config

pkg/controller/siddhiprocess/artifact/artifacts_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ func TestCreateOrUpdateDeployment(t *testing.T) {
217217
"app": "sample",
218218
"version": "0.1.0",
219219
}
220-
image := "siddhiio/siddhi-operator:0.2.0"
220+
image := "siddhiio/siddhi-operator:0.2.1-rc1"
221221
_, err := kubeClient.CreateOrUpdateDeployment(
222222
name,
223223
namespace,

pkg/controller/siddhiprocess/deploymanager/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package deploymanager
2121
// Constants for the DeployManager
2222
const (
2323
OperatorName string = "siddhi-operator"
24-
OperatorVersion string = "0.2.0"
24+
OperatorVersion string = "0.2.1-rc1"
2525
CRDName string = "SiddhiProcess"
2626
PVCExtension string = "-pvc"
2727
DepCMExtension string = "-depyml"

0 commit comments

Comments
 (0)