Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IP_ALIAS_SUBNETWORK (0.15 sec)

  1. cluster/gce/upgrade-aliases.sh

        echo "Subnet ${IP_ALIAS_SUBNETWORK}'s allowSubnetCidrRoutesOverlap is already set as $1"
        return
      fi
    
      echo "Setting subnet \"${IP_ALIAS_SUBNETWORK}\" allowSubnetCidrRoutesOverlap to $1"
      local fingerprint
      fingerprint=$(gcloud compute networks subnets describe \
        "${IP_ALIAS_SUBNETWORK}" --project="${PROJECT}" --region="${REGION}" \
        --format='value(fingerprint)')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

      IP_ALIAS_SUBNETWORK=${KUBE_GCE_IP_ALIAS_SUBNETWORK:-${INSTANCE_PREFIX}-subnet-default}
      # If we're using custom network, use the subnet we already create for it as the one for ip-alias.
      # Note that this means SUBNETWORK would override KUBE_GCE_IP_ALIAS_SUBNETWORK in case of custom network.
      if [[ "${CREATE_CUSTOM_NETWORK}" = true ]]; then
        IP_ALIAS_SUBNETWORK=${SUBNETWORK}
      fi
      export IP_ALIAS_SIZE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. cluster/gce/config-default.sh

      export IP_ALIAS_SIZE
      IP_ALIAS_SUBNETWORK=${KUBE_GCE_IP_ALIAS_SUBNETWORK:-${INSTANCE_PREFIX}-subnet-default}
      # If we're using custom network, use the subnet we already create for it as the one for ip-alias.
      # Note that this means SUBNETWORK would override KUBE_GCE_IP_ALIAS_SUBNETWORK in case of custom network.
      if [[ "${CREATE_CUSTOM_NETWORK}" == true ]]; then
        export IP_ALIAS_SUBNETWORK="${SUBNETWORK}"
      fi
    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/util.sh

        --project "${NETWORK_PROJECT}" \
        --region "${REGION}" \
        "${IP_ALIAS_SUBNETWORK}" 2>/dev/null || true)
      if [[ -z "${subnet}" ]]; then
        echo "Creating subnet ${NETWORK}:${IP_ALIAS_SUBNETWORK}"
        gcloud compute networks subnets create \
          "${IP_ALIAS_SUBNETWORK}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top