diff --git a/infrastructures/metallb/env/k3s-cluster/config.json b/infrastructures/metallb/env/k3s-cluster/config.json new file mode 100644 index 0000000..1083b3b --- /dev/null +++ b/infrastructures/metallb/env/k3s-cluster/config.json @@ -0,0 +1,12 @@ +{ + "appName": "metallb", + "userGivenName": "metallb", + "namespace": "metallb", + "destNamespace": "metallb", + "destServer": "https://kubernetes.default.svc", + "srcPath": "infrastructures/metallb/env/k3s-cluster", + "srcRepoURL": "https://github.com/3dwardch3ng/home-cluster-ops.git", + "srcTargetRevision": "", + "labels": null, + "annotations": null +} \ No newline at end of file diff --git a/infrastructures/metallb/env/k3s-cluster/kustomization.yaml b/infrastructures/metallb/env/k3s-cluster/kustomization.yaml new file mode 100644 index 0000000..a75e522 --- /dev/null +++ b/infrastructures/metallb/env/k3s-cluster/kustomization.yaml @@ -0,0 +1,8 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +helmCharts: + - name: metallb + repo: oci://registry-1.docker.io/bitnamicharts + version: 6.3.10 + releaseName: metallb + valuesFile: values.yaml \ No newline at end of file diff --git a/infrastructures/metallb/env/k3s-cluster/values.yaml b/infrastructures/metallb/env/k3s-cluster/values.yaml new file mode 100644 index 0000000..728094a --- /dev/null +++ b/infrastructures/metallb/env/k3s-cluster/values.yaml @@ -0,0 +1,7 @@ +namespaceOverride: "metallb" +controller: + podSecurityContext: + fsGroup: 1000 + containerSecurityContext: + runAsUser: 1000 + runAsGroup: 1000