Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for ResourceNames (0.18 sec)

  1. staging/src/k8s.io/api/rbac/v1beta1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/clusterrole.yaml

      resources: ["pods","nodes","namespaces"]
      verbs: ["get", "list", "watch"]
    {{- if (eq .Values.platform "openshift") }}
    - apiGroups: ["security.openshift.io"]
      resources: ["securitycontextconstraints"]
      resourceNames: ["privileged"]
      verbs: ["use"]
    {{- end }}
    ---
    {{- if .Values.cni.repair.enabled }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: {{ template "name" . }}-repair-role
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. istioctl/pkg/internaldebug/internal-debug.go

    	writer io.Writer,
    	istioNamespace string,
    ) (map[string]*discovery.DiscoveryResponse, error) {
    	var namespace, serviceAccount string
    	xdsRequest := discovery.DiscoveryRequest{
    		ResourceNames: []string{"list"},
    		Node: &core.Node{
    			Id: "debug~0.0.0.0~istioctl~cluster.local",
    		},
    		TypeUrl: v3.DebugType,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/rds.go

    	if !rdsNeedsPush(req) {
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    	resources, logDetails := c.ConfigGenerator.BuildHTTPRoutes(proxy, req, w.ResourceNames)
    	return resources, logDetails, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    	}
    	return result
    }
    
    func toApplyPolicyRule(rule rbacv1.PolicyRule) *rbacv1ac.PolicyRuleApplyConfiguration {
    	result := rbacv1ac.PolicyRule()
    	result.Resources = rule.Resources
    	result.ResourceNames = rule.ResourceNames
    	result.APIGroups = rule.APIGroups
    	result.NonResourceURLs = rule.NonResourceURLs
    	result.Verbs = rule.Verbs
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/xdsgen.go

    	var logFiltered string
    	if !req.Delta.IsEmpty() && !con.proxy.IsProxylessGrpc() {
    		logFiltered = " filtered:" + strconv.Itoa(len(w.ResourceNames)-len(req.Delta.Subscribed))
    		w = &model.WatchedResource{
    			TypeUrl:       w.TypeUrl,
    			ResourceNames: req.Delta.Subscribed.UnsortedList(),
    		}
    	}
    	res, logdata, err := gen.Generate(con.proxy, w, req)
    	info := ""
    	if len(logdata.AdditionalInfo) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/rds_test.go

    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			ads := s.ConnectADS().WithType(v3.RouteType).WithID(tt.node)
    			ads.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: tt.routes})
    		})
    	}
    }
    
    const (
    	app3Ip    = "10.2.0.1"
    	gatewayIP = "10.3.0.1"
    )
    
    // Common code for the xds testing.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/rbac/v1/generated.proto

      // +optional
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +optional
      repeated string resourceNames = 4;
    
      // NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. istioctl/pkg/multixds/gather.go

    				break
    			}
    		}
    	} else {
    		// If there is a specific pod name in ResourceName, use the agent in the pod.
    		if len(dr.ResourceNames) != 1 {
    			return nil, fmt.Errorf("`ResourceNames` must have one element when `all` flag is turned on")
    		}
    		slice := strings.SplitN(dr.ResourceNames[0], ".", 2)
    		if len(slice) != 2 {
    			return nil, fmt.Errorf("invalid resource name format: %v", slice)
    		}
    		podName := slice[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top