Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for NodeSelector (0.94 sec)

  1. pkg/controller/daemon/util/daemonset_util_test.go

    		expected *v1.Affinity
    	}{
    		{
    			affinity: nil,
    			hostname: "host_1",
    			expected: &v1.Affinity{
    				NodeAffinity: &v1.NodeAffinity{
    					RequiredDuringSchedulingIgnoredDuringExecution: &v1.NodeSelector{
    						NodeSelectorTerms: []v1.NodeSelectorTerm{
    							{
    								MatchFields: []v1.NodeSelectorRequirement{
    									{
    										Key:      metav1.ObjectNameField,
    										Operator: v1.NodeSelectorOpIn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1/types.go

    // RuntimeClass.
    type Scheduling struct {
    	// nodeSelector lists labels that must be present on nodes that support this
    	// RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
    	// node matched by this selector. The RuntimeClass nodeSelector is merged
    	// with a pod's existing nodeSelector. Any conflicts will cause the pod to
    	// be rejected in admission.
    	// +optional
    	// +mapType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    )
    
    var zero int64
    
    // NodeSelectorWrapper wraps a NodeSelector inside.
    type NodeSelectorWrapper struct{ v1.NodeSelector }
    
    // MakeNodeSelector creates a NodeSelector wrapper.
    func MakeNodeSelector() *NodeSelectorWrapper {
    	return &NodeSelectorWrapper{v1.NodeSelector{}}
    }
    
    // In injects a matchExpression (with an operator IN) as a selectorTerm
    // to the inner nodeSelector.
    // NOTE: appended selecterTerms are ORed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/daemonset.yaml

          annotations:
            sidecar.istio.io/inject: "false"
    {{ with .Values.podAnnotations -}}{{ toYaml . | indent 8 }}{{ end }}
        spec:
          nodeSelector:
            kubernetes.io/os: linux
    {{- if .Values.nodeSelector }}
    {{ toYaml .Values.nodeSelector | indent 8 }}
    {{- end }}
    {{- if .Values.affinity }}
          affinity:
    {{ toYaml .Values.affinity | trim | indent 8 }}
    {{- end }}
          serviceAccountName: ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. manifests/charts/gateway/templates/deployment.yaml

                {{- toYaml .Values.resources | nindent 12 }}
              {{- with .Values.volumeMounts }}
              volumeMounts:
                {{ toYaml . | nindent 12 }}
              {{- end }}
          {{- with .Values.nodeSelector }}
          nodeSelector:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- with .Values.affinity }}
          affinity:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- with .Values.tolerations }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. pkg/volume/util/util_test.go

    			pv: &v1.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: v1.PersistentVolumeSpec{
    					NodeAffinity: &v1.VolumeNodeAffinity{
    						Required: &v1.NodeSelector{
    							NodeSelectorTerms: []v1.NodeSelectorTerm{},
    						},
    					},
    				},
    			},
    			expectedNodeNames: []string{},
    		},
    		{
    			name: "PV node affinity required zero selector terms",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/node.k8s.io.v1alpha1.RuntimeClass.json

          }
        ]
      },
      "spec": {
        "runtimeHandler": "runtimeHandlerValue",
        "overhead": {
          "podFixed": {
            "podFixedKey": "0"
          }
        },
        "scheduling": {
          "nodeSelector": {
            "nodeSelectorKey": "nodeSelectorValue"
          },
          "tolerations": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "value": "valueValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/node.k8s.io.v1alpha1.RuntimeClass.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      overhead:
        podFixed:
          podFixedKey: "0"
      runtimeHandler: runtimeHandlerValue
      scheduling:
        nodeSelector:
          nodeSelectorKey: nodeSelectorValue
        tolerations:
        - effect: effectValue
          key: keyValue
          operator: operatorValue
          tolerationSeconds: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

            {{- if .Values.pilot.podAnnotations }}
    {{ toYaml .Values.pilot.podAnnotations | indent 8 }}
            {{- end }}
        spec:
    {{- if .Values.pilot.nodeSelector }}
          nodeSelector:
    {{ toYaml .Values.pilot.nodeSelector | indent 8 }}
    {{- end }}
    {{- with .Values.pilot.affinity }}
          affinity:
    {{- toYaml . | nindent 8 }}
    {{- end }}
          tolerations:
            - key: cni.istio.io/not-ready
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/node.k8s.io.v1.RuntimeClass.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    overhead:
      podFixed:
        podFixedKey: "0"
    scheduling:
      nodeSelector:
        nodeSelectorKey: nodeSelectorValue
      tolerations:
      - effect: effectValue
        key: keyValue
        operator: operatorValue
        tolerationSeconds: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top