Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MakeNamespaceGroupName (0.74 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    func MakeGroupNames(namespace string) []string {
    	return []string{
    		AllServiceAccountsGroup,
    		MakeNamespaceGroupName(namespace),
    	}
    }
    
    // MakeNamespaceGroupName returns the name of the group all service accounts in the namespace are included in
    func MakeNamespaceGroupName(namespace string) string {
    	return ServiceAccountGroupPrefix + namespace
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top