Merge pull request #11920 from artemkozlenkov/patch-1

Update install.mdx; add port-forward missing namespace flag
This commit is contained in:
mrspanishviking 2021-12-28 12:18:20 -07:00 committed by GitHub
commit 58c31718e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ use `kubectl port-forward` to visit the UI.
If running with TLS disabled, the Consul UI will be accessible via http on port 8500:
```shell-session
$ kubectl port-forward service/consul-server 8500:8500
$ kubectl port-forward service/consul-server -n consul 8500:8500
...
```
@ -202,7 +202,7 @@ Once the port is forwarded navigate to [http://localhost:8500](http://localhost:
If running with TLS enabled, the Consul UI will be accessible via https on port 8501:
```shell-session
$ kubectl port-forward service/consul-server 8501:8501
$ kubectl port-forward service/consul-server -n consul 8501:8501
...
```