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:-)