Skip to content

Commit

Permalink
Merge pull request #38 from BuddhiWathsala/master
Browse files Browse the repository at this point in the history
Change image versions to -m1
  • Loading branch information
pcnfernando authored Jul 8, 2019
2 parents b039093 + 063fcf7 commit 69f7ac7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
name: siddhi-operator-config
data:
siddhiRunnerHome: /home/siddhi_user/siddhi-runner/
siddhiRunnerImage: siddhiio/siddhi-runner-alpine:5.1.0
siddhiRunnerImage: siddhiio/siddhi-runner-alpine:5.1.0-m1
autoIngressCreation: "true"
---

Expand All @@ -28,7 +28,7 @@ spec:
serviceAccountName: siddhi-operator
containers:
- name: siddhi-operator
image: siddhiio/siddhi-operator:0.2.0
image: siddhiio/siddhi-operator:0.2.0-m1
command:
- siddhi-operator
imagePullPolicy: Always
Expand All @@ -44,7 +44,7 @@ spec:
- name: OPERATOR_NAME
value: siddhi-operator
- name: OPERATOR_VERSION
value: 0.2.0
value: 0.2.0-m1
- name: OPERATOR_CONFIGMAP
value: siddhi-operator-config

Expand All @@ -65,7 +65,7 @@ spec:
selector:
matchLabels:
name: siddhi-parser
version: 0.2.0
version: 0.2.0-m1
strategy:
rollingUpdate:
maxSurge: 25%
Expand All @@ -76,10 +76,10 @@ spec:
creationTimestamp: null
labels:
name: siddhi-parser
version: 0.2.0
version: 0.2.0-m1
spec:
containers:
- image: siddhiio/siddhi-parser:0.2.0
- image: siddhiio/siddhi-parser:0.2.0-m1
imagePullPolicy: IfNotPresent
name: siddhirunner-msf4j
ports:
Expand All @@ -102,7 +102,7 @@ spec:
targetPort: 9090
selector:
name: siddhi-parser
version: 0.2.0
version: 0.2.0-m1
sessionAffinity: None
type: ClusterIP
status:
Expand Down
6 changes: 3 additions & 3 deletions pkg/controller/siddhiprocess/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
// Default configurations stored as constants. Further these constants used by the Configurations() function.
const (
SiddhiHome string = "/home/siddhi_user/siddhi-runner/"
SiddhiImage string = "siddhiio/siddhi-runner-alpine:5.1.0"
SiddhiImage string = "siddhiio/siddhi-runner-alpine:5.1.0-m1"
SiddhiRunnerPath string = "wso2/runner/"
SiddhiCMExt string = "-siddhi"
SiddhiExt string = ".siddhi"
Expand All @@ -48,7 +48,7 @@ const (
RunnerRPath string = "bin/runner.sh"
HostName string = "siddhi"
OperatorName string = "siddhi-operator"
OperatorVersion string = "0.2.0"
OperatorVersion string = "0.2.0-m1"
CRDName string = "SiddhiProcess"
ReadWriteOnce string = "ReadWriteOnce"
ReadOnlyMany string = "ReadOnlyMany"
Expand Down Expand Up @@ -305,7 +305,7 @@ var testSP = &siddhiv1alpha2.SiddhiProcess{
},
Spec: siddhiv1alpha2.SiddhiProcessSpec{
Container: corev1.Container{
Image: "siddhiio/siddhi-runner:5.1.0",
Image: SiddhiImage,
},
MessagingSystem: siddhiv1alpha2.MessagingSystem{
Type: "nats",
Expand Down

0 comments on commit 69f7ac7

Please sign in to comment.