mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 05:27:21 +00:00
Merge pull request #36356 from jszczepkowski/exp-flag
Automatic merge from submit-queue Removed EXPERIMENTAL from KUBE_REPLICATE_EXISTING_MASTER flag.
This commit is contained in:
commit
4ef95cd720
@ -614,7 +614,7 @@ function kube-up() {
|
|||||||
if [[ ${KUBE_USE_EXISTING_MASTER:-} == "true" ]]; then
|
if [[ ${KUBE_USE_EXISTING_MASTER:-} == "true" ]]; then
|
||||||
parse-master-env
|
parse-master-env
|
||||||
create-nodes
|
create-nodes
|
||||||
elif [[ ${KUBE_EXPERIMENTAL_REPLICATE_EXISTING_MASTER:-} == "true" ]]; then
|
elif [[ ${KUBE_REPLICATE_EXISTING_MASTER:-} == "true" ]]; then
|
||||||
if [[ "${MASTER_OS_DISTRIBUTION}" != "gci" && "${MASTER_OS_DISTRIBUTION}" != "debian" ]]; then
|
if [[ "${MASTER_OS_DISTRIBUTION}" != "gci" && "${MASTER_OS_DISTRIBUTION}" != "debian" ]]; then
|
||||||
echo "Master replication supported only for gci and debian"
|
echo "Master replication supported only for gci and debian"
|
||||||
return 1
|
return 1
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
|
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
|
||||||
|
|
||||||
export KUBE_EXPERIMENTAL_REPLICATE_EXISTING_MASTER=true
|
export KUBE_REPLICATE_EXISTING_MASTER=true
|
||||||
|
|
||||||
source "${KUBE_ROOT}/hack/e2e-internal/e2e-up.sh"
|
source "${KUBE_ROOT}/hack/e2e-internal/e2e-up.sh"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user