Skip to content

Commit 25a04ff

Browse files
committed
replaced kubectl with oc
1 parent d4fb2cf commit 25a04ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Once OpenShift GitOps is installed, an instance of Argo CD is automatically inst
3131
Argo CD upon installation generates an initial admin password which is stored in a Kubernetes secret. In order to retrieve this password, run the following command to decrypt the admin password:
3232

3333
```
34-
kubectl get secret argocd-cluster-cluster -n openshift-gitops -ojsonpath='{.data.admin\.password}' | base64 -d
34+
oc get secret argocd-cluster-cluster -n openshift-gitops -ojsonpath='{.data.admin\.password}' | base64 -d
3535
```
3636

3737
Click on Argo CD from the OpenShift Web Console application launcher and then log into Argo CD with `admin` username and the password retrieved from the previous step.
@@ -177,6 +177,6 @@ Click on the Argo CD URL to open the Argo CD dashboard.
177177
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:
178178
179179
```
180-
kubectl get secret myargocd-cluster -n myargocd -ojsonpath='{.data.admin\.password}' | base64 -d
180+
oc get secret myargocd-cluster -n myargocd -ojsonpath='{.data.admin\.password}' | base64 -d
181181
```
182182

cluster/console/console-link.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
href: 'https://developers.redhat.com/topics/kubernetes'
77
location: ApplicationMenu
8-
text: Red Hat Developer Blog - Kubernetes
8+
text: Red Hat Developer Blog
99
applicationMenu:
1010
section: Kubernetes Blogs
1111
imageURL: https://i.ibb.co/pZ0Lxdb/Logo-Red-Hat-Hat-Color-RGB.png

0 commit comments

Comments
 (0)