Extensions/v1beta1 deprecated in v1.19?

Hi KodeKloud Team,

I am currently studying for the CKAD exam and I have noticed that there have been some recent changes to the Kubernetes documentation.

When looking up how to create an Ingress Controller, I can see that apiVersion: extensions/v1beta1 has been replaced with apiVersion:extensions/v1beta1.

I have also notice a change in the syntax/structure of creating an Ingress resource:

http:
      paths:
      - path: /testpath
        backend:
          serviceName: test
          servicePort: 80

…has been changed to:

- http:
      paths:
      - path: /testpath
        pathType: Prefix
        backend:
          service:
            name: test
            port:
              number: 80

Which format should I expect to encounter if I were to take the exam in the next couple of months?

Thanks:-)

Hello, @juliettet
You need to follow the new pattern of the Ingress resource. Labs will upgrade soon to the end of this month.

1 Like

Thank you for the heads up @Tej-Singh-Rana. :smiley: