Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DelegatingAuthorizationOptions (0.37 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    func (s *DelegatingAuthorizationOptions) WithAlwaysAllowGroups(groups ...string) *DelegatingAuthorizationOptions {
    	s.AlwaysAllowGroups = append(s.AlwaysAllowGroups, groups...)
    	return s
    }
    
    // WithAlwaysAllowPaths appends the list of paths to AlwaysAllowPaths
    func (s *DelegatingAuthorizationOptions) WithAlwaysAllowPaths(paths ...string) *DelegatingAuthorizationOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    type RecommendedOptions struct {
    	Etcd           *EtcdOptions
    	SecureServing  *SecureServingOptionsWithLoopback
    	Authentication *DelegatingAuthenticationOptions
    	Authorization  *DelegatingAuthorizationOptions
    	Audit          *AuditOptions
    	Features       *FeatureOptions
    	CoreAPI        *CoreAPIOptions
    
    	// FeatureGate is a way to plumb feature gate through if you have them.
    	FeatureGate featuregate.FeatureGate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top