Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 148 for NodeSelector (0.15 sec)

  1. cluster/gce/windows/smoke-test.sh

          app: $linux_webserver_pod_label
      template:
        metadata:
          labels:
            app: $linux_webserver_pod_label
        spec:
          containers:
          - name: nginx
            image: nginx:1.7.9
          nodeSelector:
            kubernetes.io/os: linux
    EOF
    
      if ! ${kubectl} create -f $linux_webserver_deployment.yaml; then
        echo "kubectl create -f $linux_webserver_deployment.yaml failed"
        exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

            configMap:
              name: {{ .configMapName | quote }}
              optional: true
          {{- end }}
          affinity:
    {{ include "nodeaffinity" (dict "global" .Values.global "nodeSelector" $gateway.nodeSelector) | trim | indent 8 }}
          {{- include "podAntiAffinity" $gateway | indent 6 }}
    {{- if $gateway.tolerations }}
          tolerations:
    {{ toYaml $gateway.tolerations | indent 6 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/templates/deployment.yaml

            configMap:
              name: {{ .configMapName | quote }}
              optional: true
          {{- end }}
          affinity:
    {{ include "nodeaffinity" (dict "global" .Values.global "nodeSelector" $gateway.nodeSelector) | trim | indent 8 }}
          {{- include "podAntiAffinity" $gateway | indent 6 }}
    {{- if $gateway.tolerations }}
          tolerations:
    {{ toYaml $gateway.tolerations | indent 6 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. prow/config/metrics/metrics.yaml

              runAsNonRoot: true
              runAsUser: 1000
              seccompProfile:
                type: RuntimeDefault
            volumeMounts:
            - mountPath: /tmp
              name: tmp-dir
          nodeSelector:
            kubernetes.io/os: linux
          priorityClassName: system-cluster-critical
          serviceAccountName: metrics-server
          volumes:
          - emptyDir: {}
            name: tmp-dir
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. manifests/charts/gateway/values.yaml

        autoscaleBehavior: {}
    
      # Pod environment variables
      env: {}
    
      # Labels to apply to all resources
      labels: {}
    
      # Annotations to apply to all resources
      annotations: {}
    
      nodeSelector: {}
    
      tolerations: []
    
      topologySpreadConstraints: []
    
      affinity: {}
    
      # If specified, the gateway will act as a network gateway for the given network.
      networkGateway: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. cluster/addons/dns/kube-dns/kube-dns.yaml.base

          tolerations:
          - key: "CriticalAddonsOnly"
            operator: "Exists"
          volumes:
          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: kubedns
            image: registry.k8s.io/dns/k8s-dns-kube-dns:1.23.1
            resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

          tolerations:
          - key: "CriticalAddonsOnly"
            operator: "Exists"
          volumes:
          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: kubedns
            image: registry.k8s.io/dns/k8s-dns-kube-dns:1.23.1
            resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. cluster/addons/dns/kube-dns/kube-dns.yaml.in

          tolerations:
          - key: "CriticalAddonsOnly"
            operator: "Exists"
          volumes:
          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: kubedns
            image: registry.k8s.io/dns/k8s-dns-kube-dns:1.23.1
            resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    	if len(svcs) == 0 {
    		return false
    	}
    	for _, svc := range svcs {
    		c.RLock()
    		nodeSelector := c.nodeSelectorsForServices[svc.Hostname]
    		c.RUnlock()
    		// update external address
    		var nodeAddresses []string
    		for _, n := range c.nodeInfoMap {
    			if nodeSelector.SubsetOf(n.labels) {
    				nodeAddresses = append(nodeAddresses, n.address)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pkg/api/persistentvolume/util_test.go

    					Annotations: map[string]string{
    						api.BetaStorageClassAnnotation: "",
    					},
    				},
    				Spec: api.PersistentVolumeSpec{
    					NodeAffinity: &api.VolumeNodeAffinity{
    						Required: &api.NodeSelector{
    							NodeSelectorTerms: []api.NodeSelectorTerm{
    								{
    									MatchExpressions: []api.NodeSelectorRequirement{
    										{
    											Key:      "beta.kubernetes.io/os",
    											Operator: "Equal",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top