Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for Authz (0.14 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
      //   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
      // 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
      //   request resource.
      // Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	allErrs = append(allErrs, errs...)
    
    	return allErrs
    }
    
    // ValidateAndCompileMatchConditions validates a given webhook's matchConditions.
    // This is exported for use in authz package.
    func ValidateAndCompileMatchConditions(matchConditions []api.WebhookMatchCondition) (*authorizationcel.CELMatcher, field.ErrorList) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. pkg/workloadapi/security/authorization.pb.go

    type Group struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Rules are OR-ed (e.g. ANY rule can match)
    	// This is a generic form of the authz policy's to, from and when
    	Rules []*Rules `protobuf:"bytes,1,rep,name=rules,proto3" json:"rules,omitempty"`
    }
    
    func (x *Group) Reset() {
    	*x = Group{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation_test.go

    				Name: "default",
    				Provider: &meshconfig.MeshConfig_ExtensionProvider_EnvoyExtAuthzHttp{
    					EnvoyExtAuthzHttp: &meshconfig.MeshConfig_ExtensionProvider_EnvoyExternalAuthorizationHttpProvider{
    						Service: "foo/ext-authz",
    						Port:    999999,
    					},
    				},
    			},
    		},
    		MeshMTLS: &meshconfig.MeshConfig_TLSConfig{
    			EcdhCurves: []string{"P-256"},
    		},
    		TlsDefaults: &meshconfig.MeshConfig_TLSConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/controllermanager.go

    	}
    	healthzHandler := controllerhealthz.NewMutableHealthzHandler(checks...)
    
    	// Start the controller manager HTTP server
    	// unsecuredMux is the handler for these controller *after* authn/authz filters have been applied
    	var unsecuredMux *mux.PathRecorderMux
    	if c.SecureServing != nil {
    		unsecuredMux = genericcontrollermanager.NewBaseHandler(&c.ComponentConfig.Generic.Debugging, healthzHandler)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    	est := &CostEstimator{SizeEstimator: &testCostEstimator{}}
    	env, err := cel.NewEnv(
    		ext.Strings(ext.StringsVersion(2)),
    		URLs(),
    		Regex(),
    		Lists(),
    		Authz(),
    		Quantity(),
    		ext.Sets(),
    		IP(),
    		CIDR(),
    		Format(),
    		cel.OptionalTypes(),
    		// cel-go v0.17.7 introduced CostEstimatorOptions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway.go

    // To handle this, we generate a filter chain per upstream cluster
    func builtAutoPassthroughFilterChains(push *model.PushContext, proxy *model.Proxy, hosts []string) []*filterChainOpts {
    	// We do not want any authz here, so build a new LB without it set
    	lb := &ListenerBuilder{
    		node: proxy,
    		push: push,
    	}
    	filterChains := make([]*filterChainOpts, 0)
    	for _, service := range proxy.SidecarScope.Services() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top