Remove E2E_CLUSTER_NAME, E2E_NETWORK, and KUBE_GCE_INSTANCE_PREFIX from jobs that don't need them, because they are in their own project, and add defaults
Fail on leaked resources by default
Kill E2E_SET_CLUSTER_API_VERSION
Rely on defaults for E2E_UP, E2E_TEST, E2E_DOWN
Only PUBLISH_GREEN_VERSION for kubernetes-e2e-gce
Directly export ZONE vars rather than chaining and setting locals
Collapse E2E_CLUSTER_NAME, E2E_NETWORK, and KUBE_GCE_INSTANCE_PREFIX into E2E_NAME (always take the shortest of the three, to avoid name length problems
Factor out soak vars
Remove incorrect feature enablement ENV vars
export GINKGO_TEST_ARGS directly, rather than looping through export at the bottom
Directly export E2E Control Variables
Export KUBEMARK ENV vars directly
export KUBERNETES_PROVIDER directly
Export JENKINS_PUBLISHED_VERSION directly, and don't use it where unnecessary; remove old CURRENT_RELEASE_PUBLISHED_VERSION
export PROJECT and NETWORK_PROVIDER directly
export node ENV vars directly
export other shared cluster ENV vars directly
Directly export CLOUDSDK ENV vars
export GCE and AWS ENVs directly
Various cleanup, including refactoring upgrades
Fixup: no PERFORMANCE env for AWS
Address comment
Fixes for comments up to cebf501
Address comments through 81f39b8
Fix: default E2E_UP, E2E_TEST, E2E_DOWN
Use JENKINS_FORCE_GET_TARS for upgrade jobs; fixes through 140ea2b
Fix ubernetes-lite config
Address rebased 2 comments
Remove tab
m3.large for > 150 nodes.
t2.micro often runs out of memory. The t2 class has very
difficult-to-understand behaviour when it runs out of CPU. The
m3.medium is reasonably affordable, and avoids these problems.
Fix#21151
Issue #18975
Otherwise we risk services coming up on the master before the backing
volume is ready.
If we then see the master-pd is already mounted, don't try to remount
it.
Issue #21155
In commit 07d7cfd3, people add ${DEBUG} == "true" in file
cluster/saltbase/salt/generate-cert/make-ca-cert.sh
But the default value for DEBUG is not set. In that commit, it set the value
of DEBUG in cluster/ubuntu/util.sh where it call this script. When using this
script in saltstack to bring up cluster in other cloud platforms, it will fail
to generate the cert since we set set -o nounset in make-ca-cert.sh and var DEBUG
does not set. Set a default value for DEBUG here will fix this problem.