mirror of https://github.com/knative/pkg.git
Auto-update dependencies (#690)
Produced via: `dep ensure -update knative.dev/test-infra` /assign mattmoor
This commit is contained in:
parent
5cdf30f51e
commit
4febcfe6ae
|
|
@ -1245,14 +1245,14 @@
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
digest = "1:615f3c6b974179c583edf50234fd87c5731d02ef941f314cbd4dd2766d3a619a"
|
digest = "1:964a4f9e12d5021b9d550e04c36cf23feb880e286ceede1b246d5c0e43b523b9"
|
||||||
name = "knative.dev/test-infra"
|
name = "knative.dev/test-infra"
|
||||||
packages = [
|
packages = [
|
||||||
"scripts",
|
"scripts",
|
||||||
"tools/dep-collector",
|
"tools/dep-collector",
|
||||||
]
|
]
|
||||||
pruneopts = "UT"
|
pruneopts = "UT"
|
||||||
revision = "816123d5e71fb88533d1564c331443387967e1dc"
|
revision = "efad44559f944cfc58dc5bca076eeb3ec20fb346"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:8730e0150dfb2b7e173890c8b9868e7a273082ef8e39f4940e3506a481cf895c"
|
digest = "1:8730e0150dfb2b7e173890c8b9868e7a273082ef8e39f4940e3506a481cf895c"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright 2019 The Knative Authors
|
# Copyright 2019 The Knative Authors
|
||||||
#
|
#
|
||||||
|
|
@ -226,7 +226,7 @@ function create_test_cluster() {
|
||||||
local test_wrapper="${kubedir}/e2e-test.sh"
|
local test_wrapper="${kubedir}/e2e-test.sh"
|
||||||
mkdir ${kubedir}/cluster
|
mkdir ${kubedir}/cluster
|
||||||
ln -s "$(which kubectl)" ${kubedir}/cluster/kubectl.sh
|
ln -s "$(which kubectl)" ${kubedir}/cluster/kubectl.sh
|
||||||
echo "#!/bin/bash" > ${test_wrapper}
|
echo "#!/usr/bin/env bash" > ${test_wrapper}
|
||||||
echo "cd $(pwd) && set -x" >> ${test_wrapper}
|
echo "cd $(pwd) && set -x" >> ${test_wrapper}
|
||||||
echo "${E2E_SCRIPT} ${test_cmd_args}" >> ${test_wrapper}
|
echo "${E2E_SCRIPT} ${test_cmd_args}" >> ${test_wrapper}
|
||||||
chmod +x ${test_wrapper}
|
chmod +x ${test_wrapper}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright 2018 The Knative Authors
|
# Copyright 2018 The Knative Authors
|
||||||
#
|
#
|
||||||
|
|
@ -283,9 +283,9 @@ function acquire_cluster_admin_role() {
|
||||||
local key=$(mktemp)
|
local key=$(mktemp)
|
||||||
echo "Certificate in ${cert}, key in ${key}"
|
echo "Certificate in ${cert}, key in ${key}"
|
||||||
gcloud --format="value(masterAuth.clientCertificate)" \
|
gcloud --format="value(masterAuth.clientCertificate)" \
|
||||||
container clusters describe $2 ${geoflag} | base64 -d > ${cert}
|
container clusters describe $2 ${geoflag} | base64 --decode > ${cert}
|
||||||
gcloud --format="value(masterAuth.clientKey)" \
|
gcloud --format="value(masterAuth.clientKey)" \
|
||||||
container clusters describe $2 ${geoflag} | base64 -d > ${key}
|
container clusters describe $2 ${geoflag} | base64 --decode > ${key}
|
||||||
kubectl config set-credentials cluster-admin \
|
kubectl config set-credentials cluster-admin \
|
||||||
--client-certificate=${cert} --client-key=${key}
|
--client-certificate=${cert} --client-key=${key}
|
||||||
fi
|
fi
|
||||||
|
|
@ -584,5 +584,5 @@ readonly REPO_NAME_FORMATTED="Knative $(capitalize ${REPO_NAME//-/ })"
|
||||||
|
|
||||||
# Public latest nightly or release yaml files.
|
# Public latest nightly or release yaml files.
|
||||||
readonly KNATIVE_SERVING_RELEASE="$(get_latest_knative_yaml_source "serving" "serving")"
|
readonly KNATIVE_SERVING_RELEASE="$(get_latest_knative_yaml_source "serving" "serving")"
|
||||||
readonly KNATIVE_BUILD_RELEASE="$(get_latest_knative_yaml_source "build" "build")"
|
|
||||||
readonly KNATIVE_EVENTING_RELEASE="$(get_latest_knative_yaml_source "eventing" "release")"
|
readonly KNATIVE_EVENTING_RELEASE="$(get_latest_knative_yaml_source "eventing" "release")"
|
||||||
|
readonly KNATIVE_MONITORING_RELEASE="$(get_latest_knative_yaml_source "serving" "monitoring")"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright 2018 The Knative Authors
|
# Copyright 2018 The Knative Authors
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright 2018 The Knative Authors
|
# Copyright 2018 The Knative Authors
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue