...

Source file src/edge-infra.dev/pkg/k8s/rbac/subjects.go

Documentation: edge-infra.dev/pkg/k8s/rbac

     1  package rbac
     2  
     3  // Constants for default groups that exist in K8s
     4  // https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-binding-examples
     5  const (
     6  	AllServiceAccounts = "system:serviceaccounts"
     7  	AllAuthenticated   = "system:authenticated"
     8  	AllUnauthenticated = "system:unauthenticated"
     9  )
    10  

View as plain text