# MinIO credentials for rclone output sync in training jobs. # No longer needed as a standalone secret — training jobs now use minio-credentials # (deployed via infra/k8s/minio/minio.yaml). # # If you need to recreate manually: # kubectl -n foxhunt create secret generic minio-credentials \ # --from-literal=access-key= \ # --from-literal=secret-key= \ # --from-literal=root-user= \ # --from-literal=root-password= apiVersion: v1 kind: Secret metadata: name: minio-credentials namespace: foxhunt labels: app.kubernetes.io/name: minio-credentials app.kubernetes.io/part-of: foxhunt type: Opaque stringData: access-key: REPLACE_ME secret-key: REPLACE_ME root-user: REPLACE_ME root-password: REPLACE_ME