Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for zone2 (0.06 sec)

  1. pkg/bootstrap/instance_test.go

    			replacement: []byte(`"path": "/tmp/XDS"`),
    		},
    	}
    	if excludeLocality {
    		// zone and region can vary based on the environment, so it shouldn't be considered in the diff.
    		replacements = append(replacements,
    			regexReplacement{
    				pattern:     regexp.MustCompile(`"zone": ".+"`),
    				replacement: []byte("\"zone\": \"\""),
    			},
    			regexReplacement{
    				pattern:     regexp.MustCompile(`"region": ".+"`),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    					withLabel("topology.kubernetes.io/zone", "zone-b").Node,
    				makeNode("zone-b-node-b").
    					withLabel("topology.kubernetes.io/region", "region-b").
    					withLabel("topology.kubernetes.io/zone", "zone-b").Node,
    				makeNode("zone-c-node-a").
    					withLabel("topology.kubernetes.io/region", "region-c").
    					withLabel("topology.kubernetes.io/zone", "zone-c").Node,
    				makeNode("zone-c-node-b").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    						"topology.kubernetes.io/zone":   "zone1",
    						"topology.istio.io/subzone":     "subzone1",
    						"topology.istio.io/network":     "network1",
    						"topology.istio.io/cluster":     clusterID,
    					},
    					Address: "1.1.1.1",
    					Network: "network1",
    					Locality: model.Locality{
    						Label:     "region1/zone1/subzone1",
    						ClusterID: cluster.ID(clusterID),
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      optional string schedule = 1;
    
      // The time zone name for the given schedule, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.
      // If not specified, this will default to the time zone of the kube-controller-manager process.
      // The set of valid time zone names and the time zone offset is loaded from the system-wide time zone
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    				},
    			},
    			wantFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable, ErrReasonConflict),
    		},
    		{
    			name: "pv with zone and region, node with only zone",
    			Pod:  createPodWithVolume("pod_1", "PVC_Stable_3"),
    			Node: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "host1",
    					Labels: map[string]string{
    						v1.LabelTopologyZone: "us-west1-a",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  6. src/time/example_test.go

    	// in the desired layout; it has no time zone present.
    	// Note: without explicit zone, returns time in UTC.
    	const shortForm = "2006-Jan-02"
    	t, _ = time.Parse(shortForm, "2013-Feb-03")
    	fmt.Println(t)
    
    	// Some valid layouts are invalid time values, due to format specifiers
    	// such as _ for space padding and Z for zone information.
    	// For example the RFC3339 layout 2006-01-02T15:04:05Z07:00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

        timeout_arg="--test-timeout=${TIMEOUT}"
      fi
    
      # Get the compute zone
      zone=${ZONE:-"$(gcloud info --format='value(config.properties.compute.zone.value)')"}
      if [[ ${zone} == "" ]]; then
        echo "Could not find gcloud compute/zone when running: \`gcloud info --format='value(config.properties.compute.zone.value)'\`"
        exit 1
      fi
    
      # Get the compute project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. README.md

    ```sh
    firewall-cmd --get-active-zones
    ```
    
    This command gets the active zone(s). Now, apply port rules to the relevant zones returned above. For example if the zone is `public`, use
    
    ```sh
    firewall-cmd --zone=public --add-port=9000/tcp --permanent
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

    #
    # Assumed vars:
    #   PROJECT
    #   ZONE
    function get-node-os() {
      gcloud compute ssh "$1" \
        --project "${PROJECT}" \
        --zone "${ZONE}" \
        --command \
        "cat /etc/os-release | grep \"^ID=.*\" | cut -c 4-"
    }
    
    # Assumed vars:
    #   KUBE_VERSION
    #   NODE_SCOPES
    #   NODE_INSTANCE_PREFIX
    #   PROJECT
    #   ZONE
    #
    # Vars set:
    #   KUBE_PROXY_TOKEN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumezone/volume_zone.go

    //
    // It evaluates if a pod can fit due to the volumes it requests, given
    // that some volumes may have zone scheduling constraints.  The requirement is that any
    // volume zone-labels must match the equivalent zone-labels on the node.  It is OK for
    // the node to have more zone-label constraints (for example, a hypothetical replicated
    // volume might allow region-wide access)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top