Uploaded image for project: 'OpenShift Bugs'
  1. OpenShift Bugs
  2. OCPBUGS-14632

NetworkPolicy not working as expected when allowing inbound traffic from any namespace

    XMLWordPrintable

Details

    Description

      Description of problem:

      NetworkPolicy do not work as expected when allowing inbound traffic from any namespace

      Version-Release number of selected component (if applicable):

      4.13.0

      How reproducible:

      100%

      Steps to Reproduce:

      1. Create a new project 
         # oc new-project ingress-test
      
      2. Deploy application pods
         # oc new-app  --image  quay.io/redhattraining/hello-world-nginx
      
      3. Exposed the service
         # oc expose svc hello-world-nginx
      
      4. Create a NetworkPolicy object using below manifest
      ~~~
      kind: NetworkPolicy
      apiVersion: networking.k8s.io/v1
      metadata:
        name: allow-from-every-namespace
      spec:
        podSelector:
          matchLabels:
            deployment: hello-world-nginx
        ingress:
          - ports:
              - protocol: TCP
                port: 8080
            from:
              - namespaceSelector: {}
        policyTypes:
          - Ingress
      ~~~
      
      5. Try to hit the route
         # curl -sI `oc get route hello-world-nginx -ojsonpath='{.spec.host}'`

      Actual results:

      The application is not accessible over the route. If we add the below block to the existing networkpolicy object it then start working.
      ~~~
          - ports:
              - protocol: TCP
                port: 8080
            from:
              - namespaceSelector:
                  matchLabels:
                    policy-group.network.openshift.io/ingress: ''
      ~~~

      Expected results:

      The access to the application via route should work, as the same networkpolicy definition works with OCP version 4.10,4.11 and 4.12

      Additional info:

       

      Attachments

        Issue Links

          Activity

            People

              npinaeva@redhat.com Nadia Pinaeva
              rhn-support-dpateriy Divyam Pateriya
              Arti Sood Arti Sood
              Votes:
              0 Vote for this issue
              Watchers:
              7 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: