Skip to content

Commit

Permalink
Update Minio example
Browse files Browse the repository at this point in the history
- Add latest image tag in Minio image
- Remove command and use args instead.
  • Loading branch information
nitisht committed May 6, 2017
1 parent a481a5b commit cef6be8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
8 changes: 2 additions & 6 deletions examples/storage/minio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ spec:
containers:
- name: minio
# Pulls the default Minio image from Docker Hub
image: minio/minio
command:
- minio
image: minio/minio:latest
args:
- server
- /storage
Expand Down Expand Up @@ -261,9 +259,7 @@ spec:
value: "minio"
- name: MINIO_SECRET_KEY
value: "minio123"
image: minio/minio
command:
- minio
image: minio/minio:latest
args:
- server
- http://minio-0.minio.default.svc.cluster.local/data
Expand Down
4 changes: 1 addition & 3 deletions examples/storage/minio/minio-distributed-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ spec:
value: "minio"
- name: MINIO_SECRET_KEY
value: "minio123"
image: minio/minio
command:
- minio
image: minio/minio:latest
args:
- server
- http://minio-0.minio.default.svc.cluster.local/data
Expand Down
4 changes: 1 addition & 3 deletions examples/storage/minio/minio-standalone-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ spec:
containers:
- name: minio
# Pulls the default Minio image from Docker Hub
image: minio/minio
command:
- minio
image: minio/minio:latest
args:
- server
- /storage
Expand Down

0 comments on commit cef6be8

Please sign in to comment.