Kubernetes cluster role admin not able to get deployment status
up vote
0
down vote
favorite
I have the following role: roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: admin When I do a kubectl proxy --port 8080 and then try doing http://127.0.0.1:8080/apis/extensions/v1beta1/namespaces/cdp/deployments/{deploymentname} I get a 200 and everything works fine. However when I do: http://127.0.0.1:8080/apis/extensions/v1beta1/namespaces/cdp/deployments/{deploymentname}/status I get forbidden and a 403 status back . I also am able to do get , create , list , watch on deployments with my admin role . Any idea as to why /status would give forbidden when I clearly have all the necessary permission as admin for my namespace.
authentication kubernetes amazon-eks
...