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: minio/minio:latest@sha256:c97dbb0238dbd650ebe3f57dda68984993f466abad70d36c6e3ca306ceec3f58 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