this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(platform)!: switching to Flux

Khue Doan 30d4cc26 bb468405

+37
+32
platform/production/ingress-nginx.yaml
··· 1 + apiVersion: source.toolkit.fluxcd.io/v1beta2 # TODO v1 2 + kind: OCIRepository 3 + metadata: 4 + name: ingress-nginx 5 + namespace: flux-system 6 + spec: 7 + interval: 4h 8 + url: oci://registry.registry.svc.cluster.local:5000/vendor/helm/ingress-nginx 9 + insecure: true 10 + ref: 11 + tag: 4.13.2 12 + --- 13 + apiVersion: helm.toolkit.fluxcd.io/v2 14 + kind: HelmRelease 15 + metadata: 16 + name: ingress-nginx 17 + namespace: flux-system 18 + spec: 19 + interval: 30m 20 + chartRef: 21 + kind: OCIRepository 22 + name: ingress-nginx 23 + releaseName: ingress-nginx 24 + targetNamespace: ingress-nginx 25 + install: 26 + createNamespace: true 27 + values: 28 + controller: 29 + podLabels: 30 + istio.io/dataplane-mode: ambient 31 + admissionWebhooks: 32 + timeoutSeconds: 30
+5
platform/production/kustomization.yaml
··· 1 + apiVersion: kustomize.config.k8s.io/v1beta1 2 + kind: Kustomization 3 + 4 + resources: 5 + - ingress-nginx.yaml