I am trying to Grant the `dev-user` permissions to create deployments in the ` . . .

Gunaseelan Ganesan:
I am trying to Grant the dev-user permissions to create deployments in the blue namespace. in the RBAC

Mohamed Ayman:
Try to use kubectl apply -f filename.yaml

Mohamed Ayman:
But remove the old one before applying

Pradeep:
Always use imperative commands rather than declarative files. It will make you quicker

Pradeep:

k create role dev-user-role --verb=create --resource=deployments --user=dev-user --namespace=blue

Gunaseelan Ganesan:
thank you