This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
haven-ops/SETUP.md
2026-08-28 15:02:26 -03:00

426 B

Initial setup

# Create namespace
kubectl apply -f bootstrap/namespaces.yaml

# Install ArgoCD
kubectl apply -k bootstrap/argocd-install

# Apply root app
kubectl apply -f bootstrap/root-app.yaml

Access ArgoCD

  1. Get admin password
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
  1. Access ArgoCD and login with admin / password from above.