2023-12-11 22:46:18 +00:00
|
|
|
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
|
2024-06-07 07:59:03 +00:00
|
|
|
image: minio/minio:latest@sha256:c97dbb0238dbd650ebe3f57dda68984993f466abad70d36c6e3ca306ceec3f58
|
2023-12-11 22:46:18 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
|