Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for Authz (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				ClusterId:         testC,
    				Locality: &workloadapi.Locality{
    					Region: "region",
    					Zone:   "zone",
    				},
    			},
    		},
    		{
    			name: "pod with authz",
    			inputs: []any{
    				model.WorkloadAuthorization{
    					LabelSelector: model.NewSelector(map[string]string{"app": "foo"}),
    					Authorization: &security.Authorization{Name: "wrong-ns", Namespace: "not-ns"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	s.assertEvent(t, s.wleXdsName("name1"), s.wleXdsName("name2"))
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].GetWorkload().GetAuthorizationPolicies(),
    		[]string{"ns1/selector"})
    
    	s.authz.Delete("selector", "ns1")
    	s.assertEvent(t, s.wleXdsName("name1"), s.wleXdsName("name2"))
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].GetWorkload().GetAuthorizationPolicies(),
    		nil)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types.go

    	//
    	// More details are available at https://k8s.io/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signers
    	//
    	// Custom signerNames can also be specified. The signer defines:
    	//  1. Trust distribution: how trust (CA bundles) are distributed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    type fakeCELMatcher struct {
    	error   error
    	matches bool
    }
    
    func (f *fakeCELMatcher) Match(ctx context.Context, versionedAttr *admission.VersionedAttributes, versionedParams runtime.Object, authz authorizer.Authorizer) matchconditions.MatchResult {
    	return matchconditions.MatchResult{Matches: f.matches, FailedConditionName: "placeholder", Error: f.error}
    }
    
    func TestValidate(t *testing.T) {
    	ignore := v1.Ignore
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/graph.go

    		graph:    simple.NewDirectedAcyclicGraph(0, 0),
    
    		destinationEdgeIndex: map[int]*intSet{},
    		// experimentally determined to be the point at which iteration adds an order of magnitude to the authz check.
    		// since maintaining indexes costs time/memory while processing graph changes, we don't want to make this too low.
    		destinationEdgeThreshold: 200,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. build/lib/release.sh

      cp "${src_dir}/kube-scheduler.manifest" "${dst_dir}"
      cp "${src_dir}/kube-apiserver.manifest" "${dst_dir}"
      cp "${src_dir}/konnectivity-server.yaml" "${dst_dir}"
      cp "${src_dir}/abac-authz-policy.jsonl" "${dst_dir}"
      cp "${src_dir}/cloud-controller-manager.manifest" "${dst_dir}"
      cp "${src_dir}/kube-controller-manager.manifest" "${dst_dir}"
      cp "${src_dir}/kube-addon-manager.yaml" "${dst_dir}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tracing.go

    	telemetrypb "istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	authz_model "istio.io/istio/pilot/pkg/security/authz/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/pkg/xds/requestidextension"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/wellknown"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admissionregistration/v1beta1/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
    - 22.6K bytes
    - Viewed (0)
  9. Makefile.core.mk

    	@PATH="${PATH}":/tmp/bin go generate ./...
    
    refresh-goldens:
    	@REFRESH_GOLDEN=true go test ${GOBUILDFLAGS} ./operator/... \
    		./pkg/bootstrap/... \
    		./pkg/kube/inject/... \
    		./pilot/pkg/security/authz/builder/... \
    		./cni/pkg/plugin/...
    
    update-golden: refresh-goldens
    
    # Keep dummy target since some build pipelines depend on this
    gen-charts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
Back to top