Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Minio example #45444

Merged
merged 1 commit into from
May 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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