From 9fa2114500d7951b01d73734a17d02aaaf5d44e9 Mon Sep 17 00:00:00 2001 From: Marvin Gajek Date: Wed, 3 Apr 2024 20:52:31 +0200 Subject: [PATCH] update value for namespace input arg --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d1c8c4e..116ffbe 100644 --- a/README.md +++ b/README.md @@ -49,14 +49,14 @@ kubectl port-forward -n : When checking for example the ArgoCD Web UI, you would run: ```sh -kubectl port-forward -n default 8080:8080 +kubectl port-forward -n gitops-ftw 8080:8080 ``` and visit in a browser of choice `localhost:8080`. You would need to authenticate with admin credentials. ![argocd-web-ui.PNG](./images/argocd-web-ui.PNG) -The default username is `admin`. The default password can be obtained trough: `kubectl -n argocd get secret argocd-initial-admin-secret -n default -o jsonpath="{.data.password}" | base64 -d`. +The default username is `admin`. The default password can be obtained trough: `kubectl -n argocd get secret argocd-initial-admin-secret -n gitops-ftw -o jsonpath="{.data.password}" | base64 -d`. ### Showcase GitOps @@ -66,7 +66,7 @@ The default username is `admin`. The default password can be obtained trough: `k ```sh # Port forward in terminal process A -kubectl port-forward -n default 8080:8080 +kubectl port-forward -n gitops-ftw 8080:8080 # In terminal process B - Login argocd login localhost:8080