wip: more or less working argo and cilium helmfile setup

This commit is contained in:
2025-05-16 15:30:01 +02:00
parent ddc95aad80
commit 223149ecdd
37 changed files with 582 additions and 100 deletions
+13 -6
View File
@@ -5,12 +5,15 @@ repositories:
- name: argo
url: https://argoproj.github.io/argo-helm
commonLabels:
tier: system
releases:
- name: argocd
namespace: argocd
chart: argo/argo-cd
version: 7.5.2
condition: install.argo.argocd.enabled
condition: argo.enabled
values:
- ../values/argo/values/argocd.yaml.gotmpl
- ../values/argo/values/argocd-{{ .Environment.Name }}.yaml.gotmpl
@@ -22,7 +25,7 @@ releases:
namespace: argocd
chart: argo/argocd-apps
version: 0.0.1
condition: install.argo.apps.enabled
condition: argo.apps.enabled
values:
- ../values/argo/values/apps.yaml.gotmpl
missingFileHandler: Info
@@ -30,7 +33,7 @@ releases:
namespace: argocd
chart: argo/argo-rollouts
version: 2.35.2
condition: install.argo.rollouts.enabled
condition: argo.rollouts.enabled
values:
- ../values/argo/values/rollouts.yaml.gotmpl
missingFileHandler: Info
@@ -38,13 +41,17 @@ releases:
namespace: argocd
chart: argo/argo-workflows
version: 0.45.0
condition: install.argo.workflows.enabled
values:
- ../values/argo/values/workflows.yaml.gotmpl
condition: argo.workflows.enabled
missingFileHandler: Info
- name: argo-manifests
namespace: argocd
chart: _argo
condition: argo.enabled
values:
- ../values/values-{{ requiredEnv "CLUSTER_NAME" }}.yaml
- ../values/argo/values.yaml.gotmpl
- ../values/argo/values-{{ requiredEnv "CLUSTER_NAME" }}.yaml.gotmpl
missingFileHandler: Info
hooks:
- events: [ prepare, cleanup ]
showlogs: true