Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sas (0.04 sec)

  1. pkg/apis/rbac/helpers.go

    func SubjectsStrings(subjects []Subject) ([]string, []string, []string, []string) {
    	users := []string{}
    	groups := []string{}
    	sas := []string{}
    	others := []string{}
    
    	for _, subject := range subjects {
    		switch subject.Kind {
    		case ServiceAccountKind:
    			sas = append(sas, fmt.Sprintf("%s/%s", subject.Namespace, subject.Name))
    
    		case UserKind:
    			users = append(users, subject.Name)
    
    		case GroupKind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    	// This includes the issuer URL, which is already present in the SA token JWT.  Similarly, SAs can
    	// already gain this same info via introspection of their own token.  Since this discovery endpoint
    	// points to what issued all service account tokens, it seems fitting for SAs to have this access.
    	// Defer to the cluster admin with regard to binding directly to all authenticated and/or
    	// unauthenticated users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. pkg/registry/rbac/validation/rule.go

    		return has(user.GetGroups(), subject.Name)
    
    	case rbacv1.ServiceAccountKind:
    		// default the namespace to namespace we're working in if its available.  This allows rolebindings that reference
    		// SAs in th local namespace to avoid having to qualify them.
    		saNamespace := namespace
    		if len(subject.Namespace) > 0 {
    			saNamespace = subject.Namespace
    		}
    		if len(saNamespace) == 0 {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    		}
    	}
    
    	*controllerRoles = append(*controllerRoles, role)
    	addClusterRoleLabel(*controllerRoles)
    
    	*controllerRoleBindings = append(*controllerRoleBindings,
    		rbacv1helpers.NewClusterBinding(role.Name).SAs("kube-system", role.Name[len(saRolePrefix):]).BindingOrDie())
    	addClusterRoleBindingLabel(*controllerRoleBindings)
    }
    
    func eventsRule() rbacv1.PolicyRule {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    sano.tochigi.jp sanofi sanok.pl santabarbara.museum santacruz.museum santafe.museum santamaria.br santoandre.br sanuki.kagawa.jp saobernardo.br saogonca.br saotome.st sap sar.it sardegna.it sardinia.it sarl saroma.hokkaido.jp sarpsborg.no sarufutsu.hokkaido.jp sas sasaguri.fukuoka.jp sasayama.hyogo.jp sasebo.nagasaki.jp saskatchewan.museum sassari.it satosho.okayama.jp satsumasendai.kagoshima.jp satte.saitama.jp satx.museum sauda.no sauherad.no savannahga.museum save saves-the-whales.com savona.it saxo sayama.osaka.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top