Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for scopeName (0.22 sec)

  1. istioctl/pkg/admin/istiodconfig.go

    	ch := make(chan struct {
    		err       error
    		scopeName string
    	}, len(scopes))
    	var wg sync.WaitGroup
    	for _, scope := range scopes {
    		wg.Add(1)
    		go func(si *ScopeInfo) {
    			defer wg.Done()
    			err := c.PutScope(si)
    			ch <- struct {
    				err       error
    				scopeName string
    			}{err: err, scopeName: si.Name}
    		}(scope)
    	}
    	wg.Wait()
    	close(ch)
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/resourcequota.yaml

    metadata:
      name: istio-cni-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Aug 18 18:15:44 GMT 2021
    - 374 bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

    // that relates the scope name and values.
    message ScopedResourceSelectorRequirement {
      // The name of the scope that the selector applies to.
      optional string scopeName = 1;
    
      // Represents a scope's relationship to a set of values.
      // Valid operators are In, NotIn, Exists, DoesNotExist.
      optional string operator = 2;
    
    Plain Text
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.cni.resourceQuotas.enabled }} apiVersion: v1 kind: ResourceQuota metadata: name: istio-cni-resource-quota namespace: {{ .Release.Namespace }} spec: hard: pods: {{ .Values.cni.resourceQuotas.pods | quote }} scopeSelector: matchExpressions: - operator: In scopeName: PriorityClass values: - system-node-critical {{- end }} manifests/charts/istio-cni/templates/network-attachment-definition.yaml {{- if eq .Values.cni.provider "multus" }} apiVersion: k8s.cni.cncf.io/v1 kind: NetworkAttachmentDef metadata: name:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top