Configure Network Policies and Egress Firewalls for a ROSA Cluster
This content is authored by Red Hat experts, but has not yet been tested on every supported configuration.
It’s common to want to restrict network access between namespaces, as well as restricting where traffic can go outside of the cluster. OpenShift achieves this with the Network Policy and Egress Firewall resources.
It’s common to use these methods to restrict network traffic alongside Egress IP and other OpenShift and OVN-Kubernetes resources.
Prerequisites
- ROSA Cluster 4.14
- openshift-cli (
oc) - rosa-cli (
rosa) - jq
Project Template
The first thing to do is create a Project Template that containes Network Policys and Egress Firewalls with default deny rules
Create and Apply a Project template with default deny rules
NOTE This template will ensure that any new projects have a default deny rule for egress, and a network policy that only allows traffic to come from an Ingress Controller
Patch the project configuration to use the newly created Project Template
Create a new Project to verify the policies
Check for EgressFirewall
you should see
Check for NetworkPolicy
you should see
Test the Network Policy
Create a debug pod in the default namespace to use later
Create a debug pod in the restricted namespace to use later
Deploy a web service and expose it
See if you can access the application via its Route (you should be able to)
You should see
See if you can access the application via its Route from the default namespace. (again you should be able to)
You should see
Now try to access the application via its local service from within the same pod (this should succeed due to the Network Policy)
output
Now try to access the application via its local service (this should fail due to the Network Policy)
NOTE: To avoid waiting for a long timeout feel free to hit CTRL-C.
output
Test the Egress Firewall
Verify you can access an external website from the default namespace debug pod (this should work)
output
Verify that you cannot access an external website from the restricted namespace (this should fail)
output