Skip to content
Merged
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
8 changes: 5 additions & 3 deletions site-src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ doc for details on the supportability matrix.

**2. Install the Network Policy API CRDs**

We don't have a released version of the `ClusterNetworkPolicy` API yet, but you can try out
the latest version from the `main` branch by applying the following manifest:
To install the latest released version of the `ClusterNetworkPolicy` API, which is `v0.2.0`, use the following command:

```bash
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/network-policy-api/refs/heads/main/config/crd/standard/policy.networking.k8s.io_clusternetworkpolicies.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/network-policy-api/refs/tags/v0.2.0/config/crd/standard/policy.networking.k8s.io_clusternetworkpolicies.yaml
```

The latest released version of the `AdminNetworkPolicy` and `BaselineAdminNetworkPolicy` is `v0.1.7`.
Expand All @@ -23,6 +22,9 @@ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/network-polic
-f https://raw.githubusercontent.com/kubernetes-sigs/network-policy-api/refs/tags/v0.1.7/config/crd/standard/policy.networking.k8s.io_baselineadminnetworkpolicies.yaml
```

We are also going to preserve and maintain the [release-0.1](https://github.com/kubernetes-sigs/network-policy-api/tree/release-0.1)
Copy link
Copy Markdown
Contributor

@tssurya tssurya May 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, makes sense

once you have so may be worth just updating it all in one PR we can merge this I guess

branch for the `v1alpha1` APIs, including potential updates and bug fixes until further notice.

**3. Try out one of the sample yamls for specific user stories**

- [Deny traffic at a cluster level](reference/examples.md#sample-spec-for-story-1-deny-traffic-at-a-cluster-level)
Expand Down
Loading