Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 469 for node2 (0.05 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    	tests := []struct {
    		name  string
    		nodes []*v1.Node
    		pods  []*v1.Pod
    	}{
    		{
    			name: "operate the node with one pod",
    			nodes: []*v1.Node{
    				&st.MakeNode().Name("test-node-1").Capacity(resourceList1).Taints(taints).Images(imageStatus1).Node,
    				&st.MakeNode().Name("test-node-2").Capacity(resourceList2).Taints(taints).Images(imageStatus2).Node,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	)
    
    	controller, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    
    	node := generateNode("node1", map[string]string{
    		NodeZoneLabel:              "zone1",
    		NodeRegionLabel:            "region1",
    		label.TopologySubzone.Name: "subzone1",
    	})
    	addNodes(t, controller, node)
    
    	pod := generatePod("128.0.0.1", "pod1", ns, "svcaccount", "node1",
    		map[string]string{"app": appName}, map[string]string{})
    	pods := []*corev1.Pod{pod}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    						columnType.Name(), columnType, v)
    				}
    				if v, ok := columnType.Comment(); !ok || v != "my code2" {
    					t.Fatalf("column code comment should be correct, name: %v, column: %#v", columnType.Name(),
    						columnType)
    				}
    			case "code2":
    				// Code2 string `gorm:"comment:my code2;default:hello"`
    				if v, ok := columnType.DefaultValue(); !ok || v != "hello" {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    	// not share the same nomenclature for nodes. For example, Kubernetes may
    	// refer to a given node as "node1", but the storage system may refer to
    	// the same node as "nodeA". When Kubernetes issues a command to the storage
    	// system to attach a volume to a specific node, it can use this field to
    	// refer to the node name using the ID that the storage system will
    	// understand, e.g. "nodeA" instead of "node1". This field is required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"name":         "name represents the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    		},
    		{
    			name:       "test ok 2",
    			nodeName:   "node02",
    			driverName: "driver02",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("pv01", 10, "driver02", "vol02"), false),
    		},
    		{
    			name:         "mismatch vol",
    			nodeName:     "node02",
    			driverName:   "driver02",
    			volumeName:   "vol01",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

    apiVersion: apps/v1
    metadata:
      name: calico-node
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: calico-node
    spec:
      selector:
        matchLabels:
          k8s-app: calico-node
      updateStrategy:
        type: RollingUpdate
      template:
        metadata:
          labels:
            k8s-app: calico-node
        spec:
          priorityClassName: system-node-critical
          nodeSelector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  8. hack/make-rules/test-e2e-node.sh

    focus=${FOCUS:-""}
    skip=${SKIP-"\[Flaky\]|\[Slow\]|\[Serial\]"}
    # The number of tests that can run in parallel depends on what tests
    # are running and on the size of the node. Too many, and tests will
    # fail due to resource contention. 8 is a reasonable default for a
    # e2-standard-2 node.
    # Currently, parallelism only affects when REMOTE=true. For local test,
    # ginkgo default parallelism (cores - 1) is used.
    parallelism=${PARALLELISM:-8}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top