Skip to content

Commit

Permalink
fixed minor typo in docs (argoproj#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
jecho authored and jessesuen committed Feb 9, 2019
1 parent c49e8da commit bc38c06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Follow the [ingress documentation](ingress.md) on how to configure Argo CD with
Kubectl port-forwarding can also be used to connect to the API server without exposing the service.

```bash
kubectl port-forward svc/argocd-server 8080:443
kubectl port-forward svc/argocd-server -n argocd 8080:443
```
The API server can then be accessed using the localhost:8080

Expand Down
2 changes: 1 addition & 1 deletion docs/sso.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ inputted into the Argo CD configmap.

Edit the argocd-cm configmap:
```
kubectl edit configmap argocd-cm
kubectl edit configmap argocd-cm -n argocd
```

* In the `url` key, input the base URL of Argo CD. In this example, it is https://argocd.example.com
Expand Down
2 changes: 1 addition & 1 deletion docs/webhook.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ webhook secret configured in step 1.

Edit the Argo CD kubernetes secret:
```
kubectl edit secret argocd-secret
kubectl edit secret argocd-secret -n argocd
```

TIP: for ease of entering secrets, kubernetes supports inputting secrets in the `stringData` field,
Expand Down

0 comments on commit bc38c06

Please sign in to comment.