Hi, cc; @Tej_Singh_Rana, @unnivkn Not sure why this is marked as complete or if . . .

R Banerjee:
Hi,
cc; @Tej_Singh_Rana, @unnivkn
Not sure why this is marked as complete or if the solution is correct or not

Question 10: https://kodekloud.com/topic/practice-test-role-based-access-controls-2/?utm_source=udemy&utm_medium=labs&utm_campaign=kubernetes

Grant the dev-user permissions to create deployments in the blue namespace.
Remember to add both groups "apps" and "extensions".

The issue is, I just added a new rule to the existing “developer” role, since I didn’t feel its necessary to create it.
My question though , is that the solution to the question requires me to add both apps and extensions apiGroups. However, with the below rule, the answer was completed and Marked as Green. So my question is,
• Do we need extensions in this case to create deployments in the Blue namespace?
• If yes, is the current process of marking the below answer RIGHT is incorrect?

- apiGroups:
  - "apps"
  resources:
  - deployments
  verbs:
  - create

unnivkn:
@R Banerjee previous versions both apps & extension needed to work the deployment, however now extension is deprecated. That’s why with only apps its working for you. https://stackoverflow.com/questions/57821065/which-api-group-in-k8s/57854939

R Banerjee:
yeah, thats what I thought, and wanted to be sure. I saw extensions having some deprecation in 1.16, but wasn’t sure if they are completely deprecated. Thanks for the heads up and help :slightly_smiling_face: