Last active
February 28, 2020 20:18
-
-
Save nitisht/d8a32eef314d8cb826c80ecab4ddc786 to your computer and use it in GitHub Desktop.
Create a standalone Minio deployment
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: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
# This name uniquely identifies the PVC. Will be used in deployment below. | |
name: minio-pv-claim | |
labels: | |
app: minio-storage-claim | |
spec: | |
# Read more about access modes here: http://kubernetes.io/docs/user-guide/persistent-volumes/#access-modes | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
# This is the request for storage. Should be available in the cluster. | |
requests: | |
storage: 10Gi | |
--- | |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
# This name uniquely identifies the Deployment | |
name: minio-deployment | |
spec: | |
strategy: | |
type: Recreate | |
template: | |
metadata: | |
labels: | |
# Label is used as selector in the service. | |
app: minio-server | |
spec: | |
# Refer to the PVC created earlier | |
volumes: | |
- name: storage | |
persistentVolumeClaim: | |
# Name of the PVC created earlier | |
claimName: minio-pv-claim | |
containers: | |
- name: minio | |
# Pulls the default Minio image from Docker Hub | |
image: minio/minio | |
command: ["minio"] | |
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 | |
# Mount the volume into the pod | |
volumeMounts: | |
- name: storage # must match the volume name, above | |
mountPath: "/storage" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment