File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 22
22
- id : govulncheck
23
23
uses : golang/govulncheck-action@v1
24
24
with :
25
- go-version-input : 1.21.4
25
+ go-version-input : 1.21.5
26
26
go-version-file : go.mod
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ MAKEFILE_PATH = $(dir $(realpath -s $(firstword $(MAKEFILE_LIST))))
4
4
# Image URL to use all building/pushing image targets
5
5
IMG ?= public.ecr.aws/eks/aws-load-balancer-controller:v2.6.1
6
6
# Image URL to use for builder stage in Docker build
7
- BUILD_IMAGE ?= public.ecr.aws/docker/library/golang:1.21.4
7
+ BUILD_IMAGE ?= public.ecr.aws/docker/library/golang:1.21.5
8
8
# Image URL to use for base layer in Docker build
9
9
BASE_IMAGE ?= public.ecr.aws/eks-distro-build-tooling/eks-distro-minimal-base-nonroot:2023-09-06-1694026927.2
10
10
IMG_PLATFORM ?= linux/amd64,linux/arm64
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ function toggle_windows_scheduling(){
28
28
done
29
29
}
30
30
31
- TEST_ID=$( date +%s)
31
+ TEST_ID=$( date +%s) - $(( RANDOM % 1000 ))
32
32
echo " TEST_ID: $TEST_ID "
33
33
ROLE_NAME=" aws-load-balancer-controller-$TEST_ID "
34
34
POLICY_NAME=" AWSLoadBalancerControllerIAMPolicy-$TEST_ID "
@@ -159,9 +159,12 @@ function install_controller_for_adc_regions() {
159
159
160
160
function enable_primary_ipv6_address() {
161
161
echo " enable primary ipv6 address for the ec2 instance"
162
- ENI_IDS=$( aws ec2 describe-instances --filters " Name=tag:aws:eks:cluster-name,Values=$CLUSTER_NAME " --query " Reservations[].Instances[].NetworkInterfaces[].NetworkInterfaceId" --output text)
162
+ ENI_IDS=$( aws ec2 describe-instances --region $REGION --filters " Name=tag:aws:eks:cluster-name,Values=$CLUSTER_NAME " --query " Reservations[].Instances[].NetworkInterfaces[].NetworkInterfaceId" --output text)
163
+ ENI_COUNT=$( echo " $ENI_IDS " | wc -w)
164
+ echo " found $ENI_COUNT ENIs: $ENI_IDS "
163
165
for ENI_ID in $ENI_IDS ; do
164
- aws ec2 modify-network-interface-attribute --network-interface-id $ENI_ID --enable-primary-ipv6 || true
166
+ echo " enable primary ipv6 address for ENI $ENI_ID "
167
+ aws ec2 modify-network-interface-attribute --region $REGION --network-interface-id $ENI_ID --enable-primary-ipv6
165
168
done
166
169
}
167
170
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ const (
13
13
// IngressReconcileTimeout is the timeout we expected the controller finishes reconcile for Ingresses.
14
14
IngressReconcileTimeout = 1 * time .Minute
15
15
// IngressDNSAvailableWaitTimeout is the timeout we expect the DNS records of ALB to be propagated.
16
- IngressDNSAvailableWaitTimeout = 3 * time .Minute
16
+ IngressDNSAvailableWaitTimeout = 5 * time .Minute
17
17
)
You can’t perform that action at this time.
0 commit comments