Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 67 of 67 for Authz (0.04 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n  See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n  request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// - '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.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  6. 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)
  7. 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