Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: Add instructions to remove previous applied network policy. #2725

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/content/en/docs/getting-started/enforcement.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ export SERVICECIDR=$(kubectl describe pod -n kube-system kube-apiserver-kind-con
{{< /tab >}}
{{< /tabpane >}}

Then we can apply the egress cluster enforcement policy
If you have previously applied the network policy in the last section, first remove it:
```shell
envsubst < network_egress_cluster.yaml | kubectl delete -f -
```

Then we can apply the egress cluster enforcement policy:

```shell
wget https://raw.githubusercontent.com/cilium/tetragon/main/examples/quickstart/network_egress_cluster_enforce.yaml
Expand Down
Loading