From 2de514c837cb93d3915935e3219f662d7256ca27 Mon Sep 17 00:00:00 2001 From: sujiba Date: Sun, 11 May 2025 18:06:52 +0200 Subject: [PATCH] chore: changed command order --- talos/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/talos/README.md b/talos/README.md index 8ed401c..6f370d0 100644 --- a/talos/README.md +++ b/talos/README.md @@ -136,16 +136,16 @@ cilium hubble disable ``` ## ArgoCD -Create argocd namespace and install the application +Create argocd namespace and install the application. ```bash kubectl create ns argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml ``` -Port forward the web interface of argocd and get the initial login password +Get the initial admin login password and port forward the web interface of argocd. ```bash -kubectl port-forward svc/argocd-server -n argocd 8080:443 kubectl get secret argocd-initial-admin-secret -n argocd -o jsonpath='{.data}' +kubectl port-forward svc/argocd-server -n argocd 8080:443 ``` Open your browser and go to `https://localhost:8080`. Log in with `admin` and the `argocd-initial-admin-secret`. Click on User-Info -> Update Password and change the password. You can then delete the secret.