From a83a9fe09f33984fc9c686de22d660bcc6b1880a Mon Sep 17 00:00:00 2001 From: Alex Groom Date: Thu, 29 Apr 2021 16:49:30 +0100 Subject: [PATCH 1/2] Update spring-petclinic-rolebinding.yaml --- cluster/namespace/spring-petclinic-rolebinding.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/namespace/spring-petclinic-rolebinding.yaml b/cluster/namespace/spring-petclinic-rolebinding.yaml index 4b27829..8f7a625 100644 --- a/cluster/namespace/spring-petclinic-rolebinding.yaml +++ b/cluster/namespace/spring-petclinic-rolebinding.yaml @@ -9,5 +9,5 @@ roleRef: name: admin subjects: - kind: ServiceAccount - name: argocd-cluster-argocd-application-controller - namespace: openshift-gitops \ No newline at end of file + name: openshift-gitops-argocd-application-controller + namespace: openshift-gitops From 8600fcdea011318e0fcbd1ac39dc3b979042e664 Mon Sep 17 00:00:00 2001 From: Alex Groom Date: Thu, 29 Apr 2021 18:03:26 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7892c5e..d73fac3 100644 --- a/README.md +++ b/README.md @@ -174,9 +174,9 @@ Click on the **Topology** to view the Argo CD instance deployed in your namespac Click on the Argo CD URL to open the Argo CD dashboard. -As described previously, Argo CD upon installation generates an initial admin password which is stored in a Kubernetes secret called `[argocd-name]-cluster`. Run the following command to decrypt the `admin` password and log into Argo CD dashboard: +As described previously, Argo CD upon installation generates an initial admin password which is stored in a Kubernetes secret called `argocd-cluster`. Run the following command to decrypt the `admin` password and log into Argo CD dashboard: ``` -oc get secret myargocd-cluster -n myargocd -ojsonpath='{.data.admin\.password}' | base64 -d +oc get secret argocd-cluster -n myargocd -ojsonpath='{.data.admin\.password}' | base64 -d ```