Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for ResourceNames (0.2 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	}
    	pathsToIgnore := openapiutil.NewTrie(s.openAPIV3Config.IgnorePrefixes)
    	resourceNames := make([]string, 0)
    	for _, apiGroupInfo := range apiGroupInfos {
    		groupResources, err := getResourceNamesForGroup(apiPrefix, apiGroupInfo, pathsToIgnore)
    		if err != nil {
    			return nil, err
    		}
    		resourceNames = append(resourceNames, groupResources...)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. samples/addons/kiali.yaml

      - routes
      verbs:
      - get
    - apiGroups: ["authentication.k8s.io"]
      resources:
      - tokenreviews
      verbs:
      - create
    - apiGroups: ["oauth.openshift.io"]
      resources:
      - oauthclients
      resourceNames:
      - kiali-istio-system
      verbs:
      - get
    ...
    ---
    # Source: kiali-server/templates/rolebinding.yaml
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds.go

    		edsUpdatedServices = model.ConfigNamesOfKind(req.ConfigsUpdated, kind.ServiceEntry)
    	}
    	var resources model.Resources
    	empty := 0
    	cached := 0
    	regenerated := 0
    	for _, clusterName := range w.ResourceNames {
    		if edsUpdatedServices != nil {
    			if _, ok := edsUpdatedServices[model.ParseSubsetKeyHostname(clusterName)]; !ok {
    				// Cluster was not updated, skip recomputing. This happens when we get an incremental update for a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

          - "certificatesigningrequests/status"
        verbs: ["update", "create", "get", "delete", "watch"]
      - apiGroups: ["certificates.k8s.io"]
        resources:
          - "signers"
        resourceNames:
    {{- range .Values.global.certSigners }}
        - {{ . | quote }}
    {{- end }}
        verbs: ["approve"]
    {{- end}}
    
      # Used by Istiod to verify the JWT tokens
      - apiGroups: ["authentication.k8s.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/bench_test.go

    		}
    		return &model.WatchedResource{ResourceNames: watchedResources}
    	case v3.RouteType:
    		l := s.ConfigGen.BuildListeners(proxy, s.PushContext())
    		routeNames := xdstest.ExtractRoutesFromListeners(l)
    		return &model.WatchedResource{ResourceNames: routeNames}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/clusterrole.yaml

          - "certificatesigningrequests/status"
        verbs: ["update", "create", "get", "delete", "watch"]
      - apiGroups: ["certificates.k8s.io"]
        resources:
          - "signers"
        resourceNames:
    {{- range .Values.global.certSigners }}
        - {{ . | quote }}
    {{- end }}
        verbs: ["approve"]
    {{- end}}
    
      # Used by Istiod to verify the JWT tokens
      - apiGroups: ["authentication.k8s.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	resourceNames := sets.NewString()
    	for i, rName := range n.ResourceNames {
    		for _, msg := range path.ValidatePathSegmentName(rName, false) {
    			allErrors = append(allErrors, field.Invalid(fldPath.Child("resourceNames").Index(i), rName, msg))
    		}
    		if resourceNames.Has(rName) {
    			allErrors = append(allErrors, field.Duplicate(fldPath.Child("resourceNames").Index(i), rName))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    	if strings.HasPrefix(req.TypeUrl, v3.DebugType) {
    		return s.pushXds(con,
    			&model.WatchedResource{TypeUrl: req.TypeUrl, ResourceNames: req.ResourceNames},
    			&model.PushRequest{Full: true, Push: con.proxy.LastPushContext})
    	}
    
    	if s.StatusReporter != nil {
    		s.StatusReporter.RegisterEvent(con.ID(), req.TypeUrl, req.ResponseNonce)
    	}
    
    	shouldRespond, delta := xds.ShouldRespond(con.proxy, con.ID(), req)
    	if !shouldRespond {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/deltatest.go

    		return
    	}
    	newByName := slices.GroupUnique(sotwRes, (*discovery.Resource).GetName)
    	curByName := slices.GroupUnique(current, (*discovery.Resource).GetName)
    
    	watched := sets.New(w.ResourceNames...)
    
    	details := fmt.Sprintf("last:%v sotw:%v delta:%v-%v", len(current), len(sotwRes), len(deltaRes), len(deleted))
    	wantDeleted := sets.New[string]()
    	wantChanged := sets.New[string]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top