Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 148 for NodeSelector (0.2 sec)

  1. manifests/charts/istio-cni/templates/daemonset.yaml

            {{- if .Values.cni.podAnnotations }}
    {{ toYaml .Values.cni.podAnnotations | indent 8 }}
            {{- end }}
        spec:
          {{if .Values.cni.ambient.enabled }}hostNetwork: true{{ end }}
          nodeSelector:
            kubernetes.io/os: linux
          # Can be configured to allow for excluding istio-cni from being scheduled on specified nodes
          {{- with .Values.cni.affinity }}
          affinity:
            {{- toYaml . | nindent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. helm-releases/minio-5.2.0.tgz

    if .Values.postJob.podAnnotations }} annotations: {{- toYaml .Values.postJob.podAnnotations | nindent 8 }} {{- end }} spec: restartPolicy: OnFailure {{- include "minio.imagePullSecrets" . | indent 6 }} {{- if .Values.nodeSelector }} nodeSelector: {{- toYaml .Values.postJob.nodeSelector | nindent 8 }} {{- end }} {{- with .Values.postJob.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.postJob.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }} {{- if .Val...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      map<string, string> labels = 9;
    
      string name = 25;
    
      // K8s node selector.
      //
      // See https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
      google.protobuf.Struct nodeSelector = 10 [deprecated = true];
    
      // K8s annotations for pods.
      //
      // See: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. helm/minio/values.yaml

      tls: []
      #  - secretName: chart-example-tls
      #    hosts:
      #      - chart-example.local
    
    ## Node labels for pod assignment
    ## Ref: https://kubernetes.io/docs/user-guide/node-selection/
    ##
    nodeSelector: {}
    tolerations: []
    affinity: {}
    topologySpreadConstraints: []
    
    ## Add stateful containers to have security context, if enabled MinIO will run as this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    	}{
    		{
    			name: "empty",
    		},
    		{
    			name: "valid added affinity",
    			args: config.NodeAffinityArgs{
    				AddedAffinity: &v1.NodeAffinity{
    					RequiredDuringSchedulingIgnoredDuringExecution: &v1.NodeSelector{
    						NodeSelectorTerms: []v1.NodeSelectorTerm{
    							{
    								MatchExpressions: []v1.NodeSelectorRequirement{
    									{
    										Key:      "label-1",
    										Operator: v1.NodeSelectorOpIn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		switch {
    		case claim.Status.Allocation != nil:
    			if nodeSelector := state.informationsForClaim[index].availableOnNode; nodeSelector != nil {
    				if !nodeSelector.Match(node) {
    					logger.V(5).Info("AvailableOnNodes does not match", "pod", klog.KObj(pod), "node", klog.KObj(node), "resourceclaim", klog.KObj(claim))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    			},
    			new: core.Pod{
    				Spec: core.PodSpec{
    					NodeSelector: map[string]string{
    						"foo": "bar",
    					},
    					SchedulingGates: []core.PodSchedulingGate{{Name: "baz"}},
    				},
    			},
    			test: "adding node selector is allowed for gated pods",
    		}, {
    			old: core.Pod{
    				Spec: core.PodSpec{
    					NodeSelector: map[string]string{
    						"foo": "bar",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.SuitableNodes = &core.NodeSelector{
    					// Must not be empty.
    				}
    				return class
    			}(),
    		},
    	}
    
    	for name, scenario := range scenarios {
    		t.Run(name, func(t *testing.T) {
    			errs := ValidateClass(scenario.class)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    				ActiveDeadlineSeconds:         &activeDeadlineSeconds,
    				NodeSelector:                  map[string]string{},
    				ServiceAccountName:            "demo-sa",
    			},
    		}
    		pod.Name = fmt.Sprintf("object-%d", index)
    		data := make([]byte, 1024*2, 1024*2) // 2k labels
    		rand.Read(data)
    		pod.Spec.NodeSelector["key"] = string(data)
    		return pod
    	}
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // the ResourceClaim.
      //
      // Setting this field is optional. If null, the resource is available
      // everywhere.
      // +optional
      optional .k8s.io.api.core.v1.NodeSelector availableOnNodes = 2;
    
      // Shareable determines whether the resource supports more
      // than one consumer at a time.
      // +optional
      optional bool shareable = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top