diff --git a/argo-test/argo-cd-values.yaml b/argo-test/argo-cd-values.yaml new file mode 100644 index 0000000000..26d7cfcdfd --- /dev/null +++ b/argo-test/argo-cd-values.yaml @@ -0,0 +1,6 @@ +dex: + enabled: false +configs: + params: + server.insecure: true +createClusterRoles: false diff --git a/argo-test/install.sh b/argo-test/install.sh new file mode 100644 index 0000000000..d263412972 --- /dev/null +++ b/argo-test/install.sh @@ -0,0 +1,8 @@ +helm repo add argo https://argoproj.github.io/argo-helm +helm repo update +helm install -f argo-cd-values.yaml argo-cd argo/argo-cd + +# To access the UI +# Switch to the namespace where argo cd was installed +# kubectl port-forward service/argo-cd-argocd-server 9090:443 +# kubectl get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d