Commit da74b86b authored by Kris's avatar Kris

Fix the ETCD env vars for downgrade

parent 723d301b
...@@ -66,9 +66,9 @@ func masterUpgradeGCE(rawV string) error { ...@@ -66,9 +66,9 @@ func masterUpgradeGCE(rawV string) error {
// TODO: Remove these variables when they're no longer needed for downgrades. // TODO: Remove these variables when they're no longer needed for downgrades.
if TestContext.EtcdUpgradeVersion != "" && TestContext.EtcdUpgradeStorage != "" { if TestContext.EtcdUpgradeVersion != "" && TestContext.EtcdUpgradeStorage != "" {
env = append(env, env = append(env,
"TEST_ETCD_VERSION="+TestContext.EtcdUpgradeVersion, "ETCD_VERSION="+TestContext.EtcdUpgradeVersion,
"STORAGE_BACKEND="+TestContext.EtcdUpgradeStorage, "STORAGE_BACKEND="+TestContext.EtcdUpgradeStorage,
"TEST_ETCD_IMAGE=3.0.17") "ETCD_IMAGE=3.0.17")
} }
v := "v" + rawV v := "v" + rawV
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment