this repo has no description
0
fork

Configure Feed

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

feat(platform): install cert-manager with Flux

Khue Doan ff8c8fbf 4ec4cd98

+34
+33
platform/production/cert-manager.yaml
··· 1 + apiVersion: source.toolkit.fluxcd.io/v1 2 + kind: HelmRepository 3 + metadata: 4 + name: jetstack 5 + namespace: flux-system 6 + spec: 7 + interval: 1h 8 + url: https://charts.jetstack.io 9 + --- 10 + apiVersion: helm.toolkit.fluxcd.io/v2 11 + kind: HelmRelease 12 + metadata: 13 + name: cert-manager 14 + namespace: flux-system 15 + spec: 16 + interval: 30m 17 + chart: 18 + spec: 19 + chart: cert-manager 20 + version: 1.18.2 21 + sourceRef: 22 + kind: HelmRepository 23 + name: jetstack 24 + releaseName: cert-manager 25 + targetNamespace: cert-manager 26 + install: 27 + createNamespace: true 28 + values: 29 + config: 30 + featureGates: 31 + ACMEHTTP01IngressPathTypeExact: false 32 + crds: 33 + enabled: true
+1
platform/production/kustomization.yaml
··· 4 4 resources: 5 5 - ingress-nginx.yaml 6 6 - istio.yaml 7 + - cert-manager.yaml