Skip to content

Commit

Permalink
chore(deployment): Update k8s deployment config files
Browse files Browse the repository at this point in the history
Set mayastor image tags to release version (0.8.0)
  • Loading branch information
GlennBullingham committed Mar 15, 2021
1 parent bd6b96e commit bb5c056
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions deploy/csi-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ spec:
# the same.
containers:
- name: mayastor-csi
image: mayadata/mayastor-csi:develop
imagePullPolicy: Always
image: mayadata/mayastor-csi:v0.8.0
imagePullPolicy: IfNotPresent
# we need privileged because we mount filesystems and use mknod
securityContext:
privileged: true
Expand Down
4 changes: 2 additions & 2 deletions deploy/mayastor-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ spec:
command: ['sh', '-c', 'until nc -vz nats 4222; do echo "Waiting for message bus..."; sleep 1; done;']
containers:
- name: mayastor
image: mayadata/mayastor:develop
imagePullPolicy: Always
image: mayadata/mayastor:v0.8.0
imagePullPolicy: IfNotPresent
env:
- name: MY_NODE_NAME
valueFrom:
Expand Down
5 changes: 2 additions & 3 deletions deploy/moac-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,14 @@ spec:
mountPath: /var/lib/csi/sockets/pluginproxy/

- name: moac
image: mayadata/moac:develop
imagePullPolicy: Always
image: mayadata/moac:v0.8.0
imagePullPolicy: IfNotPresent
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--namespace=$(MY_POD_NAMESPACE)"
- "--port=4000"
- "--watcher-idle-timeout=600000"
- "--message-bus=nats"
- "-vv"
env:
- name: CSI_ENDPOINT
value: /var/lib/csi/sockets/pluginproxy/csi.sock
Expand Down

0 comments on commit bb5c056

Please sign in to comment.