Network Policy

Network Policy


k get -n <namespace> all --show-labels


Example scenario:


apiVersion: networking.k8s.io/v1

kind: NetworkPolicy

metadata:

  name: mtdoom-np

  namespace: mordor

spec:

  podSelector:

    matchLabels:

      app: mordor

  policyTypes:

    - Ingress

  ingress:

  - from:

    - namespaceSelector:

        matchLabels:

          app: frodo

    - podSelector:

        matchLabels:

          app: sam

      namespaceSelector: {}

    ports:

    - protocol: TCP

      port: 80

Verify the Network policy



Syntax:

kubectl run <new pod name> --image=<image-name> -- ping <Network-policy-Pod-ip-address>


Example:

kubectl run test-pod --image=alpine -- ping 192.168.194.81


kubectl logs test-pod

PING 192.168.194.81 (192.168.194.81): 56 data bytes

64 bytes from 192.168.194.81: seq=0 ttl=63 time=0.271 ms

64 bytes from 192.168.194.81: seq=1 ttl=63 time=0.109 ms

64 bytes from 192.168.194.81: seq=2 ttl=63 time=0.077 ms

64 bytes from 192.168.194.81: seq=3 ttl=63 time=0.161 ms

64 bytes from 192.168.194.81: seq=4 ttl=63 time=0.080 ms

64 bytes from 192.168.194.81: seq=5 ttl=63 time=0.082 ms

Additional reference