mirror of
https://github.com/autistic-symposium/ml-quantum-tensorflow-py.git
synced 2025-05-01 22:36:05 -04:00
30 lines
636 B
YAML
30 lines
636 B
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: minio
|
|
spec:
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: minio
|
|
args:
|
|
- server
|
|
- /data
|
|
env:
|
|
- name: MINIO_ACCESS_KEY
|
|
value: minio
|
|
- name: MINIO_SECRET_KEY
|
|
value: minio123
|
|
image: minio/minio:RELEASE.2018-02-09T22-40-05Z
|
|
ports:
|
|
- containerPort: 9000
|
|
volumeMounts:
|
|
- mountPath: /data
|
|
name: data
|
|
subPath: minio
|
|
volumes:
|
|
- name: data
|
|
persistentVolumeClaim:
|
|
claimName: $(minioPvcName)
|