Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 420 for NodeSelector (0.21 sec)

  1. cluster/log-dump/logexporter-daemonset.yaml

            - mountPath: /workspace/etc
              name: hostetc
              readOnly: true
            resources:
              requests:
                cpu: 10m
                memory: 10Mi
          nodeSelector:
            {{.NodeSelector}}
          volumes:
          - name: service
            secret:
              secretName: google-service-account
          - name: varlog
            hostPath:
              path: /var/log
          - name: hostetc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 25 13:45:49 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/api/node/v1beta1/generated.proto

    // RuntimeClass.
    message Scheduling {
      // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/apis/node/v1alpha1/zz_generated.conversion.go

    }
    
    func autoConvert_v1alpha1_Scheduling_To_node_Scheduling(in *v1alpha1.Scheduling, out *node.Scheduling, s conversion.Scope) error {
    	out.NodeSelector = *(*map[string]string)(unsafe.Pointer(&in.NodeSelector))
    	out.Tolerations = *(*[]core.Toleration)(unsafe.Pointer(&in.Tolerations))
    	return nil
    }
    
    // Convert_v1alpha1_Scheduling_To_node_Scheduling is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.9K bytes
    - Viewed (0)
  5. plugin/pkg/admission/podnodeselector/admission.go

    		return errors.NewForbidden(resource, pod.Name, fmt.Errorf("pod node label selector conflicts with its namespace node label selector"))
    	}
    
    	// Merge pod node selector = namespace node selector + current pod node selector
    	// second selector wins
    	podNodeSelectorLabels := labels.Merge(namespaceNodeSelector, pod.Spec.NodeSelector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/node/v1alpha1/generated.proto

    // RuntimeClass.
    message Scheduling {
      // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"":             "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
    	"nodeSelector": "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1beta1/types_swagger_doc_generated.go

    	"":             "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
    	"nodeSelector": "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. cluster/addons/metadata-agent/stackdriver/metadata-agent.yaml

            app: metadata-agent
        spec:
          securityContext:
            seccompProfile:
              type: RuntimeDefault
          serviceAccountName: metadata-agent
          priorityClassName: system-node-critical
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - image: gcr.io/stackdriver-agents/stackdriver-metadata-agent:0.2-0.0.21-1
            imagePullPolicy: IfNotPresent
            name: metadata-agent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 07:45:36 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  10. 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)
Back to top