Home > Mobile >  How do I terminate a Kubernetes namespace?
How do I terminate a Kubernetes namespace?

Time:09-17

I am trying to terminate the namespace argo in Kubernetes. In the past, I have succesfully followed the directions found here Kubernetes Namespaces stuck in Terminating status

this time, however, I am getting the following error message. What does it mean and how can I work around this?

{
  "kind": "Status",
  "apiVersion": "v1",
  "metadata": {

  },
  "status": "Failure",
  "message": "namespaces \"argo\" is forbidden: User \"system:anonymous\" cannot update resource \"namespaces/finalize\" in API group \"\" in the namespace \"argo\"",
  "reason": "Forbidden",
  "details": {
    "name": "argo",
    "kind": "namespaces"
  },
  "code": 403
}

CodePudding user response:

You need to use an authenticated user that has permissions for the subresource (or more often, for *).

  • Related