Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 100GB (0.04 sec)

  1. cluster/gce/config-common.sh

    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-master-root-disk-size() {
      local suggested_master_root_disk_size="20GB"
      if [[ "$(get-num-nodes)" -gt "500" ]]; then
        suggested_master_root_disk_size="100GB"
      fi
      if [[ "$(get-num-nodes)" -gt "3000" ]]; then
        suggested_master_root_disk_size="500GB"
      fi
      echo "${suggested_master_root_disk_size}"
    }
    
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/runtime/string_test.go

    		{"0KB", 0, false},
    		{"0MB", 0, false},
    		{"0GB", 0, false},
    		{"0TB", 0, false},
    		{"1KB", 0, false},
    		{"05KB", 0, false},
    		{"1MB", 0, false},
    		{"10MB", 0, false},
    		{"1GB", 0, false},
    		{"100GB", 0, false},
    		{"1TB", 0, false},
    		{"99TB", 0, false},
    		{"1K", 0, false},
    		{"05K", 0, false},
    		{"10M", 0, false},
    		{"100G", 0, false},
    		{"99T", 0, false},
    		{"99999999999999999999KB", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  3. cluster/gce/config-default.sh

    MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-$(get-master-disk-size)}
    MASTER_ROOT_DISK_SIZE=${MASTER_ROOT_DISK_SIZE:-$(get-master-root-disk-size)}
    NODE_DISK_TYPE=${NODE_DISK_TYPE:-pd-standard}
    NODE_DISK_SIZE=${NODE_DISK_SIZE:-100GB}
    NODE_LOCAL_SSDS=${NODE_LOCAL_SSDS:-0}
    NODE_LABELS="${KUBE_NODE_LABELS:-}"
    WINDOWS_NODE_LABELS="${WINDOWS_NODE_LABELS:-}"
    NODE_LOCAL_SSDS_EPHEMERAL=${NODE_LOCAL_SSDS_EPHEMERAL:-}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-$(get-master-disk-size)}
    MASTER_ROOT_DISK_SIZE=${MASTER_ROOT_DISK_SIZE:-$(get-master-root-disk-size)}
    NODE_DISK_TYPE=${NODE_DISK_TYPE:-pd-standard}
    NODE_DISK_SIZE=${NODE_DISK_SIZE:-100GB}
    NODE_LOCAL_SSDS=${NODE_LOCAL_SSDS:-0}
    NODE_LABELS=${KUBE_NODE_LABELS:-}
    WINDOWS_NODE_LABELS=${WINDOWS_NODE_LABELS:-}
    NODE_LOCAL_SSDS_EPHEMERAL=${NODE_LOCAL_SSDS_EPHEMERAL:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/metrics.go

    		{10 * 1024 * 1024 * 1024, "10GB-20GB"},
    		{20 * 1024 * 1024 * 1024, "20GB-30GB"},
    		{30 * 1024 * 1024 * 1024, "30GB-40GB"},
    		{40 * 1024 * 1024 * 1024, "40GB-60GB"},
    		{60 * 1024 * 1024 * 1024, "60GB-100GB"},
    		{100 * 1024 * 1024 * 1024, "GT100GB"},
    	}
    )
    
    var (
    	// NodeName is a Gauge that tracks the ode's name. The count is always 1.
    	NodeName = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    - When dynamically provisioning Azure File volumes for a premium account, the requested size will be set to 100GB if the request is initially lower than this value to accommodate Azure File requirements. ([#99122](https://github.com/kubernetes/kubernetes/pull/99122), [@huffmanca](https://github.com/huffmanca)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top