From 3130f6a7e3574228686b0421952f6fb2fad4b338 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Tue, 20 Jun 2023 18:37:49 +0100 Subject: [PATCH] chore: prepare release 1.0.8 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 b0f3271d8..094132114 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.7 + image: mayadata/mayastor:v1.0.8 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 d40f43716..3342a55ac 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.7 + image: mayadata/mayastor:v1.0.8 imagePullPolicy: IfNotPresent env: - name: RUST_LOG diff --git a/scripts/check-deploy-yamls.sh b/scripts/check-deploy-yamls.sh index 6066ac081..3f4aac02e 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.7 +TAG=v1.0.8 "$SCRIPTDIR"/generate-deploy-yamls.sh -c "$CORES" -t "$TAG" "$PROFILE"