Legacy authorization (ABAC) should be disabled

이 페이지는 아직 한국어로 제공되지 않으며 번역 작업 중입니다. 번역에 관한 질문이나 의견이 있으시면 언제든지 저희에게 연락해 주십시오.

Description

Legacy Authorization, also known as Attribute-Based Access Control (ABAC) has been superseded by Role-Based Access Control (RBAC) and is not under active development. RBAC is the recommended way to manage permissions in Kubernetes.

Remediation

From the console

  1. Go to the Kubernetes Engine
  2. Select Kubernetes clusters for which Legacy Authorization is enabled
  3. Click EDIT
  4. Set Legacy Authorization to Disabled
  5. Click SAVE.

From the commandline

  1. To disable Legacy Authorization for an existing cluster, run the following command:
    gcloud container clusters update <cluster_name> --zone <compute_zone> --no-
    enable-legacy-authorization
    

References