Add metallb to argo, move manifests to their own dir

This commit is contained in:
Amarpreet Minhas 2023-07-08 15:41:16 -04:00
parent e5130147da
commit a00710a616
4 changed files with 10 additions and 21 deletions

View file

@ -1,12 +1,17 @@
---
helmApps:
- app: goldpinger
namespace: goldpinger
repoURL: https://okgolove.github.io/helm-charts
chart: goldpinger
revision: 5.5.0
- app: metallb
namespace: metallb-system
repoURL: https://metallb.github.io/metallb
chart: metallb
revision: 0.13.10
- app: prometheus
namespace: prometheus
repoURL: https://prometheus-community.github.io/helm-charts
chart: kube-prometheus-stack
revision: 47.4.0
- app: goldpinger
namespace: goldpinger
repoURL: https://okgolove.github.io/helm-charts
chart: goldpinger
revision: 5.5.0

View file

@ -1,12 +0,0 @@
#!/bin/bash
CHART_VERSION=0.13.7
helm repo add metallb https://metallb.github.io/metallb
helm repo update
helm upgrade --install \
metallb \
metallb/metallb \
-n metallb-system \
--version ${CHART_VERSION} \
--create-namespace \
--cleanup-on-fail

View file

@ -1,4 +0,0 @@
#!/bin/bash
helm uninstall metallb -n metallb-system
kubectl delete ns metallb-system