Skip to content

Commit

Permalink
Update deployment YAML files to use 'latest' tag (#423)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
GlennBullingham authored Sep 17, 2020
1 parent df43b77 commit 8ac77ba
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
14 changes: 10 additions & 4 deletions deploy/README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion deploy/csi-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion deploy/mayastor-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deploy/moac-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit 8ac77ba

Please sign in to comment.