Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for rbacv1 (0.31 sec)

  1. pkg/controlplane/apiserver/aggregator.go

    		{Group: "certificates.k8s.io", Version: "v1"}:                {Group: 17300, Version: 15},
    		{Group: "certificates.k8s.io", Version: "v1alpha1"}:          {Group: 17300, Version: 1},
    		{Group: "rbac.authorization.k8s.io", Version: "v1"}:          {Group: 17000, Version: 15},
    		{Group: "apiextensions.k8s.io", Version: "v1"}:               {Group: 16700, Version: 15},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/values.yaml

          # Note the pod will be crashlooping, so this may take a few minutes to become fully functional based on when the retry occurs.
          # This requires no RBAC privilege, but does require `securityContext.privileged/CAP_SYS_ADMIN`.
          repairPods: true
    
          initContainerName: "istio-validation"
    
          brokenPodLabelKey: "cni.istio.io/uninitialized"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. cni/README.md

        - [RBAC](https://docs.projectcalico.org/v3.2/getting-started/kubernetes/installation/rbac.yaml) - this creates the service account the CNI plugin is configured to use to access the kube-api-server...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/apis.go

    	corerest "k8s.io/kubernetes/pkg/registry/core/rest"
    	eventsrest "k8s.io/kubernetes/pkg/registry/events/rest"
    	flowcontrolrest "k8s.io/kubernetes/pkg/registry/flowcontrol/rest"
    	rbacrest "k8s.io/kubernetes/pkg/registry/rbac/rest"
    )
    
    // RESTStorageProvider is a factory type for REST storage.
    type RESTStorageProvider interface {
    	GroupName() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    				return
    			}
    			// Ensure we don't get stuck on old connections with old RBAC rules. This causes 45s test times
    			// due to draining.
    			opt.NewConnectionPerRequest = true
    
    			overrideCheck := func(_ echo.Instance, dst echo.Instance, opt *echo.CallOptions) {
    				if !dst.Config().HasProxyCapabilities() {
    					// No destination means no RBAC to apply. Make sure we do not accidentally reject
    					opt.Check = check.OK()
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    	tests := []struct {
    		binding  rbac.RoleBinding
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		// Basic role binding
    		{
    			binding: rbac.RoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "binding1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Subjects: []rbac.Subject{
    					{
    						Kind: "User",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. tools/packaging/common/envoy_bootstrap.json

            "tag_name": "tag"
          },
          {
            "regex": "(wasm_filter\\.(.+?)\\.)",
            "tag_name": "wasm_filter"
          },
          {
            "tag_name": "authz_enforce_result",
            "regex": "rbac(\\.(allowed|denied))"
          },
          {
            "tag_name": "authz_dry_run_action",
            "regex": "(\\.istio_dry_run_(allow|deny)_)"
          },
          {
            "tag_name": "authz_dry_run_result",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. architecture/ambient/ztunnel.md

    This is fairly straightforward.
    
    First, we need to check that this traffic is allowed.
    Traffic may be denied by RBAC policies (especially from a `STRICT` mode enforcement, which denies plaintext traffic).
    
    If it is allowed, we will forward to the target destination.
    
    #### Hairpin
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

    ---
    # Source: calico/templates/calico-node-rbac.yaml
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: calico-node
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: calico-node
    subjects:
    - kind: ServiceAccount
      name: calico-node
      namespace: kube-system
    ---
    # Source: calico/templates/calico-node-rbac.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. pkg/bootstrap/config.go

    	// required stats are used by readiness checks.
    	requiredEnvoyStatsMatcherInclusionPrefixes = "cluster_manager,listener_manager,server,cluster.xds-grpc,wasm"
    
    	rbacEnvoyStatsMatcherInclusionSuffix = "rbac.allowed,rbac.denied,shadow_allowed,shadow_denied"
    
    	requiredEnvoyStatsMatcherInclusionSuffixes = rbacEnvoyStatsMatcherInclusionSuffix + ",downstream_cx_active" // Needed for draining.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top