From 181b3ec7f7827ad2bb873e001105f2eb813323eb Mon Sep 17 00:00:00 2001 From: GlennBullingham Date: Tue, 11 Oct 2022 14:09:58 +0100 Subject: [PATCH 1/2] chore(release): update image tags to v.1.0.3 Update container image tags in deployment yaml to reflect release v1.0.3 Signed-off-by: GlennBullingham --- deploy/csi-daemonset.yaml | 2 +- deploy/mayastor-daemonset.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/csi-daemonset.yaml b/deploy/csi-daemonset.yaml index b85f5fd8b..bd347e04d 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.2 + image: mayadata/mayastor:v1.0.3 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 6644242cf..b1bd884a4 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.2 + image: mayadata/mayastor:v1.0.3 imagePullPolicy: IfNotPresent env: - name: RUST_LOG From a6dd802eabc76e6dd376c613a6e7bd36085de322 Mon Sep 17 00:00:00 2001 From: GlennBullingham Date: Tue, 11 Oct 2022 17:01:17 +0100 Subject: [PATCH 2/2] chore(check-deploy-yamls): update to v1.0.3 tag Signed-off-by: GlennBullingham --- scripts/check-deploy-yamls.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-deploy-yamls.sh b/scripts/check-deploy-yamls.sh index a2107e610..ce4386a43 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.2 +TAG=v1.0.3 "$SCRIPTDIR"/generate-deploy-yamls.sh -c "$CORES" -t "$TAG" "$PROFILE"