Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for projected (0.1 sec)

  1. cluster/gce/gci/configure-helper.sh

    container-api-endpoint = ${CONTAINER_API_ENDPOINT}
    EOF
      fi
      if [[ -n "${PROJECT_ID:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    project-id = ${PROJECT_ID}
    EOF
      fi
      if [[ -n "${NETWORK_PROJECT_ID:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    network-project-id = ${NETWORK_PROJECT_ID}
    EOF
      fi
      if [[ -n "${STACK_TYPE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    }
    
    # Use the gcloud defaults to find the project.  If it is already set in the
    # environment then go with that.
    #
    # Vars set:
    #   PROJECT
    #   NETWORK_PROJECT
    #   PROJECT_REPORTED
    function detect-project() {
      if [[ -z "${PROJECT-}" ]]; then
        PROJECT=$(gcloud config list project --format 'value(core.project)')
      fi
    
      NETWORK_PROJECT=${NETWORK_PROJECT:-${PROJECT}}
    
      if [[ -z "${PROJECT-}" ]]; then
    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