From cc810bdf7385508af3fd9a334213211ca81ad3b8 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Fri, 2 Dec 2022 14:33:27 +0000 Subject: [PATCH] chore(yaml): prepare release v1.0.5 Signed-off-by: Tiago Castro --- deploy/csi-daemonset.yaml | 2 +- deploy/mayastor-daemonset.yaml | 2 +- scripts/check-deploy-yamls.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/csi-daemonset.yaml b/deploy/csi-daemonset.yaml index ccad42890..93a380d1b 100644 --- a/deploy/csi-daemonset.yaml +++ b/deploy/csi-daemonset.yaml @@ -30,7 +30,7 @@ spec: # the same. containers: - name: mayastor-csi - image: mayadata/mayastor:v1.0.4 + image: mayadata/mayastor:v1.0.5 imagePullPolicy: IfNotPresent # we need privileged because we mount filesystems and use mknod securityContext: diff --git a/deploy/mayastor-daemonset.yaml b/deploy/mayastor-daemonset.yaml index 29c94081f..7525053e8 100644 --- a/deploy/mayastor-daemonset.yaml +++ b/deploy/mayastor-daemonset.yaml @@ -33,7 +33,7 @@ spec: command: ['sh', '-c', 'until nc -vz nats 4222; do echo "Waiting for message bus..."; sleep 1; done;'] containers: - name: mayastor - image: mayadata/mayastor:v1.0.4 + image: mayadata/mayastor:v1.0.5 imagePullPolicy: IfNotPresent env: - name: RUST_LOG diff --git a/scripts/check-deploy-yamls.sh b/scripts/check-deploy-yamls.sh index ceabadbf4..e66c422be 100755 --- a/scripts/check-deploy-yamls.sh +++ b/scripts/check-deploy-yamls.sh @@ -8,7 +8,7 @@ DEPLOYDIR="$ROOTDIR"/deploy CORES=2 PROFILE=release -TAG=v1.0.4 +TAG=v1.0.5 "$SCRIPTDIR"/generate-deploy-yamls.sh -c "$CORES" -t "$TAG" "$PROFILE"