re-add apps for PV fixes

This commit is contained in:
2024-07-26 01:44:42 +10:00
parent 21c57dc6fe
commit 088bb0c04a
22 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{
"appName": "minio",
"userGivenName": "minio",
"namespace": "minio",
"destNamespace": "minio",
"destServer": "https://kubernetes.default.svc",
"srcPath": "infrastructures/minio/env/k3s-cluster",
"srcRepoURL": "https://github.com/3dwardch3ng/home-cluster-ops.git",
"srcTargetRevision": "",
"labels": null,
"annotations": null
}

View File

@@ -0,0 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
helmCharts:
- name: minio
repo: oci://registry-1.docker.io/bitnamicharts
version: 14.6.24
releaseName: minio
valuesFile: values.yaml

View File

@@ -0,0 +1,27 @@
namespaceOverride: "minio"
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"
persistence:
existingClaim: "minio-pvc"
containerSecurityContext:
runAsUser: 1000
runAsGroup: 1000
podSecurityContext:
fsGroup: 1000