commit d90161a651e38bd5f846bd21774025501e2c22cc parent 627389c9a7cfedb8989cb67a51c11273066e30b2 Author: MTRNord <mtrnord1@gmail.com> Date: Tue, 7 Jan 2025 11:21:16 +0100 Add hubble ui Diffstat:
| A | infrastructure/controllers/hubble_ui.yaml | | | 47 | +++++++++++++++++++++++++++++++++++++++++++++++ |
| M | infrastructure/controllers/kustomization.yaml | | | 1 | + |
2 files changed, 48 insertions(+), 0 deletions(-)
diff --git a/infrastructure/controllers/hubble_ui.yaml b/infrastructure/controllers/hubble_ui.yaml @@ -0,0 +1,47 @@ +--- +apiVersion: source.toolkit.fluxcd.io/v1beta2 +kind: HelmRepository +metadata: + name: cilium + namespace: kube-system +spec: + interval: 24h + url: https://helm.cilium.io +--- +apiVersion: helm.toolkit.fluxcd.io/v2beta2 +kind: HelmRelease +metadata: + name: cilium + namespace: kube-system +spec: + interval: 30m + chart: + spec: + chart: cilium + sourceRef: + kind: HelmRepository + name: cilium + namespace: kube-system + interval: 12h + values: + agent: false + + operator: + enabled: false + + cni: + install: false + + hubble: + enabled: false + + relay: + enabled: false + + ui: + # enable Hubble UI + enabled: true + + standalone: + # enable Hubble UI standalone deployment + enabled: true diff --git a/infrastructure/controllers/kustomization.yaml b/infrastructure/controllers/kustomization.yaml @@ -8,3 +8,4 @@ resources: - rook.yaml - csi-driver-smb.yaml - ./cloudnative-pg-operator + - hubble_ui.yaml