We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps:
kubectl apply -f - kind: ClusterRole apiVersion: rbac.authorization.k8s.io/v1 metadata: namespace: default name: can-read-pods rules: - apiGroups: [""] resources: ["pods"] verbs: ["get", "watch", "list"] --- kind: ClusterRoleBinding apiVersion: rbac.authorization.k8s.io/v1 metadata: name: read-pods namespace: default subjects: - kind: User name: user1 apiGroup: rbac.authorization.k8s.io roleRef: kind: ClusterRole name: can-read-pods apiGroup: rbac.authorization.k8s.io
openssl req -new -key user1.key -out user1.csr -subj "/CN=user1/O=group1" openssl x509 -req -in user1.csr -CA ~/.minikube/ca.crt -CAkey ~/.minikube/ca.key -CAcreateserial -out user1.crt -days 500 kubectl config set-credentials user1 --client-certificate=user1.crt --client-key=user1.key kubectl config set-context user1-context --cluster=minikube --user=user1 kubectl config use-context user1-context
Result: Resource tree erroneously shows "default" as current namespaces and "Missing namespace" at the same time.
The text was updated successfully, but these errors were encountered:
sbouchet
No branches or pull requests
Steps:
Result:
Resource tree erroneously shows "default" as current namespaces and "Missing namespace" at the same time.
The text was updated successfully, but these errors were encountered: