Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions argo-test/argo-cd-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dex:
enabled: false
configs:
params:
server.insecure: true
createClusterRoles: false
8 changes: 8 additions & 0 deletions argo-test/install.sh
Original file line number Diff line number Diff line change
@@ -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
Loading