kodekloudhub/certified-kubernetes-administrator-course

Mistake in LAB Labels and Selectors Question#4

usmangt opened this issue · 1 comments

Question#4

Identify the POD which is part of the prod environment, the finance BU and of frontend tier?

The BU in UPPERCASE is wrong in the question as it should be in lowercase as otherwise the CLI do not find anything:

controlplane ~ ➜  kubectl get all --selector env=prod,BU=finance,tier=frontend
No resources found in default namespace.

While when it is in lowercaps

controlplane ~ ➜  kubectl get all --selector env=prod,bu=finance,tier=frontend
NAME              READY   STATUS    RESTARTS   AGE
pod/app-1-zzxdf   1/1     Running   0          3m58s

It is also mentioned in lowercaps in the Hints tab

Please fix it.

closing as opened in the wrong repo. (was meant for CKAD course)