You can configure ABAC ( http://kubernetes.io/docs/admin/authorization/ ) and restrict users to a namespace:
In the policy file, you will have something like this if your user was bob
and you wanted to limit it to the projectCaribou
namespace:
{ "apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": { "namespace": "projectCaribou", "readonly": true, "resource": "pods", "user": "bob" } }
source share