Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for zone2 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/time/zoneinfo_test.go

    		z, err := time.LoadLocation(test.zone)
    		if err != nil {
    			t.Fatal(err)
    		}
    		s := time.Unix(test.unix, 0).In(z).Format(format)
    		if s != test.want1 {
    			t.Errorf("for %s %d got %q want %q", test.zone, test.unix, s, test.want1)
    		}
    		s = time.Unix(test.unix+1, 0).In(z).Format(format)
    		if s != test.want2 {
    			t.Errorf("for %s %d got %q want %q", test.zone, test.unix, s, test.want2)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation_test.go

    		name       string
    		localities []string
    		valid      bool
    	}{
    		{
    			name:       "multi wildcard locality",
    			localities: []string{"*/zone/*"},
    			valid:      false,
    		},
    		{
    			name:       "wildcard not in suffix",
    			localities: []string{"*/zone"},
    			valid:      false,
    		},
    		{
    			name:       "explicit wildcard region overlap",
    			localities: []string{"*", "a/b/c"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. cluster/log-dump/log-dump.sh

          gcloud compute instances get-serial-port-output --project "${PROJECT}" --zone "${ZONE}" --port 1 "${node}" > "${dir}/serial-1.log" || true
          source_file_args=()
          for single_file in "${files[@]}"; do
            source_file_args+=( "${node}:${single_file}" )
          done
          gcloud compute scp --recurse --project "${PROJECT}" --zone "${ZONE}" "${source_file_args[@]}" "${dir}" > /dev/null || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. pkg/registry/discovery/endpointslice/strategy_test.go

    							ForZones: []discovery.ForZone{{Name: "zone-a"}},
    						},
    					},
    					{
    						Hints: &discovery.EndpointHints{
    							ForZones: []discovery.ForZone{{Name: "zone-b"}},
    						},
    					},
    				},
    			},
    			expectedEPS: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{
    						Hints: &discovery.EndpointHints{
    							ForZones: []discovery.ForZone{{Name: "zone-a"}},
    						},
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  9. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"timeZone":                   "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 database by the API server during CronJob validation and the controller manager during execution. If no system-wide...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top