Skip to content

Commit e40af9e

Browse files
authored
Merge pull request #4998 from nawazkh/drop_local_only
drop Local only env var
2 parents f2976c0 + 851b93d commit e40af9e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

scripts/ci-conformance.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ source "${REPO_ROOT}/hack/util.sh"
4040
# Verify the required Environment Variables are present.
4141
capz::util::ensure_azure_envs
4242

43-
export LOCAL_ONLY=${LOCAL_ONLY:-"true"}
44-
export USE_LOCAL_KIND_REGISTRY=${USE_LOCAL_KIND_REGISTRY:-${LOCAL_ONLY}}
43+
export USE_LOCAL_KIND_REGISTRY=${USE_LOCAL_KIND_REGISTRY:-"true"}
4544

4645
if [[ "${USE_LOCAL_KIND_REGISTRY}" == "true" ]]; then
4746
export REGISTRY="localhost:5000/ci-e2e"

scripts/ci-e2e.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ source "${REPO_ROOT}/hack/util.sh"
3939
# Verify the required Environment Variables are present.
4040
capz::util::ensure_azure_envs
4141

42-
export LOCAL_ONLY=${LOCAL_ONLY:-"true"}
43-
export USE_LOCAL_KIND_REGISTRY=${USE_LOCAL_KIND_REGISTRY:-${LOCAL_ONLY}}
42+
export USE_LOCAL_KIND_REGISTRY=${USE_LOCAL_KIND_REGISTRY:-"true"}
4443
export BUILD_MANAGER_IMAGE=${BUILD_MANAGER_IMAGE:-"true"}
4544

4645
if [[ "${USE_LOCAL_KIND_REGISTRY}" == "false" ]]; then

0 commit comments

Comments
 (0)