Created
October 21, 2019 18:46
-
-
Save codyde/222ad38e6331181aac41ef7df643d6bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
# This name uniquely identifies the Deployment | |
name: minio-deployment | |
spec: | |
selector: | |
matchLabels: | |
app: minio | |
strategy: | |
type: Recreate | |
template: | |
metadata: | |
labels: | |
# Label is used as selector in the service. | |
app: minio | |
spec: | |
# Refer to the PVC created earlier | |
containers: | |
- name: minio | |
# Pulls the default Minio image from Docker Hub | |
image: minio/minio:latest | |
args: | |
- server | |
- /storage | |
env: | |
# Minio access key and secret key | |
- name: MINIO_ACCESS_KEY | |
value: "minio" | |
- name: MINIO_SECRET_KEY | |
value: "minio123" | |
ports: | |
- containerPort: 9000 | |
hostPort: 9000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment