Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MakeGroupNames (0.11 sec)

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

    	}
    	if len(apimachineryvalidation.ValidateServiceAccountName(name, false)) != 0 {
    		return "", "", invalidUsernameErr
    	}
    	return namespace, name, nil
    }
    
    // MakeGroupNames generates service account group names for the given namespace
    func MakeGroupNames(namespace string) []string {
    	return []string{
    		AllServiceAccountsGroup,
    		MakeNamespaceGroupName(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