Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
update value for namespace input arg
Browse files Browse the repository at this point in the history
  • Loading branch information
MGTheTrain committed Apr 3, 2024
1 parent 16f2967 commit 9fa2114
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ kubectl port-forward -n <namespace> <pod-name> <local-port>:<server-port>
When checking for example the ArgoCD Web UI, you would run:

```sh
kubectl port-forward -n default <argocd-server-pod> 8080:8080
kubectl port-forward -n gitops-ftw <argocd-server-pod> 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

Expand All @@ -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 <argocd-server-pod> 8080:8080
kubectl port-forward -n gitops-ftw <argocd-server-pod> 8080:8080

# In terminal process B - Login
argocd login localhost:8080
Expand Down

0 comments on commit 9fa2114

Please sign in to comment.