36 lines
691 B
YAML
36 lines
691 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: minio
|
||
|
namespace: mlflow
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: minio
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: minio
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: minio
|
||
|
image: quay.io/minio/minio:RELEASE.2023-12-09T18-17-51Z
|
||
|
command:
|
||
|
- /bin/bash
|
||
|
- -c
|
||
|
args:
|
||
|
- minio server /data --console-address :9001
|
||
|
volumeMounts:
|
||
|
- mountPath: /data
|
||
|
name: minio-data
|
||
|
envFrom:
|
||
|
- secretRef:
|
||
|
name: minio-admin-secret
|
||
|
volumes:
|
||
|
- name: minio-data
|
||
|
persistentVolumeClaim:
|
||
|
claimName: minio-data
|
||
|
|
||
|
|