Skip to content

Commit

Permalink
fixup: set namespace in a kubectl port-forward command
Browse files Browse the repository at this point in the history
  • Loading branch information
guicassolato committed Oct 25, 2023
1 parent 010e1ec commit 361fb65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ kubectl -n internal apply -f https://raw.githubusercontent.com/kuadrant/authorin
The command above creates an `Ingress` with host name `talker-api.127.0.0.1.nip.io`. If you are using a local Kubernetes cluster created with Kind, forward requests from your local port 8000 to the Envoy service running inside the cluster:

```sh
kubectl port-forward deployment/envoy 8000:8000 2>&1 >/dev/null &
kubectl -n internal port-forward deployment/envoy 8000:8000 2>&1 >/dev/null &
```

### Create the `AuthConfig`
Expand Down

0 comments on commit 361fb65

Please sign in to comment.