diff options
Diffstat (limited to '')
-rw-r--r-- | .gitignore | 3 | ||||
-rwxr-xr-x | scripts/deploy-argocd | 9 | ||||
-rw-r--r-- | tools/argocd/Chart.yaml | 10 |
3 files changed, 14 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e080220 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.tgz +**/charts +**/Chart.lock diff --git a/scripts/deploy-argocd b/scripts/deploy-argocd index 2fdec58..aa0b3e5 100755 --- a/scripts/deploy-argocd +++ b/scripts/deploy-argocd @@ -2,11 +2,4 @@ set -e - -if kubectl get namespace argocd; then - echo "Namespace 'argocd' alreay exists. Doing nothing" -else - echo "Creating argocd namespace" - kubectl create namespace argocd -fi - +helm install argocd ./tools/argocd diff --git a/tools/argocd/Chart.yaml b/tools/argocd/Chart.yaml index e69de29..4cae20b 100644 --- a/tools/argocd/Chart.yaml +++ b/tools/argocd/Chart.yaml @@ -0,0 +1,10 @@ +apiVersion: v2 +name: argocd +description: A Helm chart for deploying ArgoCD with custom Ingress rules +version: 0.1.0 +appVersion: v2.1.7 + +dependencies: + - name: argo-cd + version: 4.5.2 + repository: https://argoproj.github.io/argo-helm |