Skip to content

Commit

Permalink
run 1-21 + 1-22 arm kops cluster as ipv6 (#770)
Browse files Browse the repository at this point in the history
* run 1-21 + 1-22 arm kops cluster as ipv6

* Update set_environment.sh
  • Loading branch information
jaxesn authored Mar 9, 2022
1 parent 840841b commit 15eb0c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ kops-prow-arm: kops-prereqs
$(eval MINOR_VERSION=$(subst 1-,,$(RELEASE_BRANCH)))
if [[ $(MINOR_VERSION) -ge 21 ]]; then \
sleep 5m; \
RELEASE=$(RELEASE) development/kops/prow.sh; \
IPV6=true RELEASE=$(RELEASE) development/kops/prow.sh; \
fi;

.PHONY: kops-prow-amd
Expand Down
2 changes: 1 addition & 1 deletion development/kops/create_values_yaml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ controlPlaneInstanceProfileArn: $CONTROL_PLANE_INSTANCE_PROFILE
nodeInstanceProfileArn: $NODE_INSTANCE_PROFILE
instanceType: $NODE_INSTANCE_TYPE
architecture: $NODE_ARCHITECTURE
ipv6: false
ipv6: $IPV6
pause:
$(get_container_yaml kubernetes/pause $RELEASE)
kube_apiserver:
Expand Down
1 change: 1 addition & 0 deletions development/kops/set_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export RELEASE=${RELEASE:-${DEFAULT_RELEASE}}
export ARTIFACT_BASE_URL="https://distro.eks.amazonaws.com"
export NODE_INSTANCE_TYPE=${NODE_INSTANCE_TYPE:-t3.medium}
export NODE_ARCHITECTURE=${NODE_ARCHITECTURE:-amd64}
export IPV6=${IPV6:-false}

if [ -n "$ARTIFACT_BUCKET" ]; then
export ARTIFACT_BASE_URL="https://$ARTIFACT_BUCKET.s3.amazonaws.com"
Expand Down

0 comments on commit 15eb0c1

Please sign in to comment.