Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setup_gcloud_credentials (0.18 sec)

  1. prow/lib.sh

      log "Command '${1}' complete in ${elapsed}s"
      # Write to YAML file as well for easy reading by tooling
      echo "'${1}': $elapsed" >> "${ARTIFACTS}/trace.yaml"
      { set -x; } 2>/dev/null
    }
    
    function setup_gcloud_credentials() {
      if [[ $(command -v gcloud) ]]; then
        gcloud auth configure-docker us-docker.pkg.dev -q
      elif [[ $(command -v docker-credential-gcr) ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. prow/release-commit.sh

    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -eux
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    
    setup_gcloud_credentials
    
    # Old prow image does not set this, so needed explicitly here as this is not called through make
    export GO111MODULE=on
    
    DOCKER_HUB=${DOCKER_HUB:-gcr.io/istio-testing}
    GCS_BUCKET=${GCS_BUCKET:-istio-build/dev}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top