Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump 5.1.1->5.1.2 and 0.2.1->0.2.2 #121

Merged
merged 1 commit into from
Dec 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
-
name: BASIC_AUTH_ENABLED
value: "false"
image: "siddhiio/siddhi-runner-ubuntu:5.1.1"
image: "siddhiio/siddhi-runner-ubuntu:5.1.2"

messagingSystem:
type: nats
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/example-stateful-distributed-log-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
-
name: BASIC_AUTH_ENABLED
value: "false"
image: "siddhiio/siddhi-runner-ubuntu:5.1.1"
image: "siddhiio/siddhi-runner-ubuntu:5.1.2"

messagingSystem:
type: nats
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/example-stateful-distributed-nats-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
-
name: BASIC_AUTH_ENABLED
value: "false"
image: "siddhiio/siddhi-runner-ubuntu:5.1.1"
image: "siddhiio/siddhi-runner-ubuntu:5.1.2"

messagingSystem:
type: nats
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/example-stateful-monolithic-log-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
-
name: BASIC_AUTH_ENABLED
value: "false"
image: "siddhiio/siddhi-runner-ubuntu:5.1.1"
image: "siddhiio/siddhi-runner-ubuntu:5.1.2"

persistentVolumeClaim:
accessModes:
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/example-stateful-tcp-nats-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
insert into PowerSurgeAlertStream;

container:
image: "siddhiio/siddhi-runner-ubuntu:5.1.1"
image: "siddhiio/siddhi-runner-ubuntu:5.1.2"

persistentVolumeClaim:
accessModes:
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/example-stateless-email-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ spec:
-
name: BASIC_AUTH_ENABLED
value: "false"
image: "siddhiio/siddhi-runner-ubuntu:5.1.1"
image: "siddhiio/siddhi-runner-ubuntu:5.1.2"
2 changes: 1 addition & 1 deletion deploy/examples/example-stateless-log-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ spec:
-
name: BASIC_AUTH_ENABLED
value: "false"
image: "siddhiio/siddhi-runner-ubuntu:5.1.1"
image: "siddhiio/siddhi-runner-ubuntu:5.1.2"
6 changes: 3 additions & 3 deletions deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
data:
siddhiHome: /home/siddhi_user/siddhi-runner/
siddhiProfile: runner
siddhiImage: siddhiio/siddhi-runner-alpine:5.1.1
siddhiImage: siddhiio/siddhi-runner-alpine:5.1.2
autoIngressCreation: "true"
# siddhiImageSecret: siddhiio
# ingressTLS: siddhi-tls
Expand All @@ -31,7 +31,7 @@ spec:
serviceAccountName: siddhi-operator
containers:
- name: siddhi-operator
image: siddhiio/siddhi-operator:0.2.1
image: siddhiio/siddhi-operator:0.2.2
command:
- siddhi-operator
imagePullPolicy: Always
Expand All @@ -47,6 +47,6 @@ spec:
- name: OPERATOR_NAME
value: siddhi-operator
- name: OPERATOR_VERSION
value: 0.2.1
value: 0.2.2
- name: OPERATOR_CONFIGMAP
value: siddhi-operator-config
2 changes: 1 addition & 1 deletion pkg/controller/siddhiprocess/artifact/artifacts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func TestCreateOrUpdateDeployment(t *testing.T) {
"app": "sample",
"version": "0.1.0",
}
image := "siddhiio/siddhi-operator:0.2.1"
image := "siddhiio/siddhi-operator:0.2.2"
_, err := kubeClient.CreateOrUpdateDeployment(
name,
namespace,
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/siddhiprocess/deploymanager/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package deploymanager
// Constants for the DeployManager
const (
OperatorName string = "siddhi-operator"
OperatorVersion string = "0.2.1"
OperatorVersion string = "0.2.2"
CRDName string = "SiddhiProcess"
PVCExtension string = "-pvc"
DepCMExtension string = "-depyml"
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/siddhiprocess/siddhicontroller/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package siddhicontroller
const (
OperatorCMName string = "siddhi-operator-config"
SiddhiHome string = "/home/siddhi_user/siddhi-runner/"
SiddhiImage string = "siddhiio/siddhi-runner-alpine:5.1.1"
SiddhiImage string = "siddhiio/siddhi-runner-alpine:5.1.2"
SiddhiProfile string = "runner"
AutoCreateIngress bool = true
)
Expand Down