this repo has no description
0
fork

Configure Feed

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

feat(platform): Flux-based Istio install

Khue Doan 4ec4cd98 de0524dd

+87
+86
platform/production/istio.yaml
··· 1 + apiVersion: source.toolkit.fluxcd.io/v1 2 + kind: HelmRepository 3 + metadata: 4 + name: istio 5 + namespace: flux-system 6 + spec: 7 + interval: 1h 8 + url: https://istio-release.storage.googleapis.com/charts 9 + --- 10 + apiVersion: helm.toolkit.fluxcd.io/v2 11 + kind: HelmRelease 12 + metadata: 13 + name: istio-base 14 + namespace: flux-system 15 + spec: 16 + interval: 30m 17 + chart: 18 + spec: 19 + chart: base 20 + version: 1.25.1 21 + sourceRef: 22 + kind: HelmRepository 23 + name: istio 24 + releaseName: istio-base 25 + targetNamespace: istio-system 26 + install: 27 + createNamespace: true 28 + --- 29 + apiVersion: helm.toolkit.fluxcd.io/v2 30 + kind: HelmRelease 31 + metadata: 32 + name: istio-cni 33 + namespace: flux-system 34 + spec: 35 + interval: 30m 36 + chart: 37 + spec: 38 + chart: cni 39 + version: 1.25.1 40 + sourceRef: 41 + kind: HelmRepository 42 + name: istio 43 + releaseName: istio-cni 44 + targetNamespace: istio-system 45 + values: 46 + global: 47 + platform: k3s 48 + profile: ambient 49 + --- 50 + apiVersion: helm.toolkit.fluxcd.io/v2 51 + kind: HelmRelease 52 + metadata: 53 + name: ztunnel 54 + namespace: flux-system 55 + spec: 56 + interval: 30m 57 + chart: 58 + spec: 59 + chart: ztunnel 60 + version: 1.25.1 61 + sourceRef: 62 + kind: HelmRepository 63 + name: istio 64 + releaseName: ztunnel 65 + targetNamespace: istio-system 66 + values: 67 + profile: ambient 68 + --- 69 + apiVersion: helm.toolkit.fluxcd.io/v2 70 + kind: HelmRelease 71 + metadata: 72 + name: istiod 73 + namespace: flux-system 74 + spec: 75 + interval: 30m 76 + chart: 77 + spec: 78 + chart: istiod 79 + version: 1.25.1 80 + sourceRef: 81 + kind: HelmRepository 82 + name: istio 83 + releaseName: istiod 84 + targetNamespace: istio-system 85 + values: 86 + profile: ambient
+1
platform/production/kustomization.yaml
··· 3 3 4 4 resources: 5 5 - ingress-nginx.yaml 6 + - istio.yaml