From d7f2929808d296311d619521e42e0dae5873bc45 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Tue, 19 Dec 2023 14:57:18 +0800 Subject: [PATCH] add helmrepo.yaml for clusters/app --- clusters/app/helmrepo.yaml | 8 ++++++++ clusters/app/kustomization.yaml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 clusters/app/helmrepo.yaml diff --git a/clusters/app/helmrepo.yaml b/clusters/app/helmrepo.yaml new file mode 100644 index 0000000..1b83e6e --- /dev/null +++ b/clusters/app/helmrepo.yaml @@ -0,0 +1,8 @@ +apiVersion: source.toolkit.fluxcd.io/v1beta2 +kind: HelmRepository +metadata: + name: stable + namespace: monitoring +spec: + interval: 1m + url: https://charts.onwalk.net/ diff --git a/clusters/app/kustomization.yaml b/clusters/app/kustomization.yaml index d6af13a..eb56ed3 100644 --- a/clusters/app/kustomization.yaml +++ b/clusters/app/kustomization.yaml @@ -2,5 +2,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization namespace: kube-system resources: - - ../../repo/helm + - helmrepo.yaml - observability-agent.yaml