From 8cc8c1bdebae7ef7d71be103dfd43a670e0c5c5f Mon Sep 17 00:00:00 2001 From: sHa Date: Thu, 23 Apr 2026 16:02:05 +0300 Subject: [PATCH] feat: add argo-cd Helm chart with initial configuration and default values --- argo-cd/Chart.yaml | 13 +++++++++++++ argo-cd/templates/.gitkeep | 0 argo-cd/values.yaml | 5 +++++ 3 files changed, 18 insertions(+) create mode 100644 argo-cd/Chart.yaml create mode 100644 argo-cd/templates/.gitkeep create mode 100644 argo-cd/values.yaml diff --git a/argo-cd/Chart.yaml b/argo-cd/Chart.yaml new file mode 100644 index 0000000..8cc4a8f --- /dev/null +++ b/argo-cd/Chart.yaml @@ -0,0 +1,13 @@ +apiVersion: v2 +name: argo-cd +description: Argo CD umbrella chart wrapping the upstream argoproj/argo-helm chart +type: application +version: 0.1.0 +appVersion: "3.3.8" +annotations: + version-source: github-release:argoproj/argo-helm + version-pattern: "s|^argo-cd-||" +dependencies: + - name: argo-cd + version: 9.5.4 + repository: https://argoproj.github.io/argo-helm diff --git a/argo-cd/templates/.gitkeep b/argo-cd/templates/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/argo-cd/values.yaml b/argo-cd/values.yaml new file mode 100644 index 0000000..6ff0b0d --- /dev/null +++ b/argo-cd/values.yaml @@ -0,0 +1,5 @@ +# Default values for the argo-cd umbrella chart. +# All overrides are forwarded to the upstream argoproj/argo-cd chart under the +# top-level `argo-cd:` key. See https://github.com/argoproj/argo-helm for the +# full list of configurable values. +argo-cd: {}