Files
home-cluster-ops/infrastructures/minio/env/k3s-cluster/values.yaml
2024-07-18 22:05:11 +10:00

34 lines
777 B
YAML

clusterDomain: minio.cluster.edward.sydney
auth:
existingSecret: "minio-secrets"
rootUserSecretKey: "root_user"
rootPasswordSecretKey: "root_password"
nodeSelector:
kubernetes.io/hostname: k3s-cluster-node-2
service:
ports:
api: 19000
console: 19001
ingress:
enabled: true
ingressClassName: "nginx"
hostname: "minio.cluster.edward.sydney"
apiIngress:
enabled: true
ingressClassName: "nginx"
hostname: "api.minio.cluster.edward.sydney"
extraVolumes:
- name: minio-data
hostPath:
path: /mnt/nfs/AppData/minio
type: Directory
extraVolumeMounts:
- name: minio-data
mountPath: /bitnami/minio/data
persistence:
storageClass: "-"
containerSecurityContext:
runAsUser: 1000
runAsGroup: 1000
podSecurityContext:
fsGroup: 1000