From 8ac77baeda4333f1e35c043437c368a55b3b0f8d Mon Sep 17 00:00:00 2001 From: Glenn Bullingham <35334134+GlennBullingham@users.noreply.github.com> Date: Thu, 17 Sep 2020 19:34:59 +0100 Subject: [PATCH] Update deployment YAML files to use 'latest' tag (#423) * Deploy files should specify mayastor images with 'latest' tag * Update /deploy README - use "latest" tag on images YAML files defining the deployment of Mayastor containers now use the 'latest' tag on all Mayastor supplied-images, instead of a one reflecting the repository branch or tag. --- deploy/README.md | 14 ++++++++++---- deploy/csi-daemonset.yaml | 2 +- deploy/mayastor-daemonset.yaml | 2 +- deploy/moac-deployment.yaml | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/deploy/README.md b/deploy/README.md index 39a3b7970..8aab60cf3 100644 --- a/deploy/README.md +++ b/deploy/README.md @@ -1,7 +1,13 @@ -# Quickstart +# Quickstart Guide -### Relocated +### Has been relocated -As of v0.4.0, the Mayastor user's quickstart guide has moved. +As of release 0.4.0-alpha the Mayastor user's quickstart guide has moved. -It is now hosted by [GitBook](https://mayastor.gitbook.io/introduction/). +It is now hosted at [GitBook](https://mayastor.gitbook.io/introduction/). + +# Deployment Files + +The files in this directory are provided as a convenience, a template for the successful test deployment of Mayastor to a cluster. + +**NOTE:** ALL versions of deployment files from v0.4.0 specify the 'latest' tag on Mayastor container images. If you wish to deploy earlier versions, your own builds, or a nightly build, you must change the image tags accordingly. diff --git a/deploy/csi-daemonset.yaml b/deploy/csi-daemonset.yaml index 7c70355d5..dcf68c04e 100644 --- a/deploy/csi-daemonset.yaml +++ b/deploy/csi-daemonset.yaml @@ -28,7 +28,7 @@ spec: # the same. containers: - name: mayastor-csi - image: mayadata/mayastor-csi:v0.3.0 + image: mayadata/mayastor-csi:latest imagePullPolicy: Always # we need privileged because we mount filesystems and use mknod securityContext: diff --git a/deploy/mayastor-daemonset.yaml b/deploy/mayastor-daemonset.yaml index 54d7b5fc1..eab2a3eb9 100644 --- a/deploy/mayastor-daemonset.yaml +++ b/deploy/mayastor-daemonset.yaml @@ -31,7 +31,7 @@ spec: # the same. containers: - name: mayastor - image: mayadata/mayastor:v0.3.0 + image: mayadata/mayastor:latest imagePullPolicy: Always env: - name: MY_NODE_NAME diff --git a/deploy/moac-deployment.yaml b/deploy/moac-deployment.yaml index 419d9248b..90484d4a2 100644 --- a/deploy/moac-deployment.yaml +++ b/deploy/moac-deployment.yaml @@ -44,7 +44,7 @@ spec: mountPath: /var/lib/csi/sockets/pluginproxy/ - name: moac - image: mayadata/moac:v0.3.0 + image: mayadata/moac:latest imagePullPolicy: Always args: - "--csi-address=$(CSI_ENDPOINT)"