Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for NodeSelector (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			update: func(claim *resource.ResourceClaim) *resource.ResourceClaim {
    				claim.Status.DriverName = "valid"
    				claim.Status.Allocation = &resource.AllocationResult{
    					AvailableOnNodes: &core.NodeSelector{
    						// Must not be empty.
    					},
    				}
    				return claim
    			},
    		},
    		"add-reservation": {
    			oldClaim: validAllocatedClaim,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    	pods := []*v1.Pod{
    		podWithUIDNameNsSpec("123456789", "podA", "foo", v1.PodSpec{NodeSelector: map[string]string{"key": "A"}}),
    		podWithUIDNameNsSpec("987654321", "podB", "foo", v1.PodSpec{NodeSelector: map[string]string{"key": "B"}}),
    	}
    	// The first pod should be rejected.
    	notfittingPod := pods[0]
    	fittingPod := pods[1]
    
    	kl.HandlePodAdditions(pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		{Name: "Available", Type: "integer", Description: extensionsv1beta1.DaemonSetStatus{}.SwaggerDoc()["numberAvailable"]},
    		{Name: "Node Selector", Type: "string", Description: apiv1.PodSpec{}.SwaggerDoc()["nodeSelector"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    		{Name: "Containers", Type: "string", Priority: 1, Description: "Names of each container in the template."},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    					if i%(tc.totalObjectNum/tc.expectObjectNum) == 0 {
    						fakePods[i].Spec.NodeName = "node-0"
    					}
    					data := make([]byte, 1024*2, 1024*2) // 2k labels
    					rand.Read(data)
    					fakePods[i].Spec.NodeSelector = map[string]string{
    						"key": string(data),
    					}
    				}
    
    				// build test cacher
    				cacher, _, err := newTestCacher(newObjectStorage(fakePods))
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top