Skip to content

Commit 2f60128

Browse files
committed
Updated the template
1 parent 4733318 commit 2f60128

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

templates/cluster-template-ipv6.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,24 @@ spec:
4141
name: '{{ ds.meta_data.local_hostname }}'
4242
kubeletExtraArgs:
4343
cloud-provider: aws
44+
node-ip: '::'
4445
clusterConfiguration:
4546
apiServer:
4647
extraArgs:
4748
cloud-provider: aws
49+
bind-address: '::'
4850
controllerManager:
4951
extraArgs:
5052
cloud-provider: aws
53+
bind-address: '::'
54+
scheduler:
55+
extraArgs:
56+
bind-address: '::'
5157
joinConfiguration:
5258
nodeRegistration:
5359
name: '{{ ds.meta_data.local_hostname }}'
5460
kubeletExtraArgs:
61+
node-ip: '::'
5562
cloud-provider: aws
5663
version: "${KUBERNETES_VERSION}"
5764
---

test/e2e/suites/managed/eks_ipv6_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var _ = ginkgo.Describe("[managed] [general] [ipv6] EKS cluster tests", func() {
5858
clusterName = fmt.Sprintf("%s-%s", specName, util.RandomString(6))
5959

6060
ginkgo.By("default iam role should exist")
61-
verifyRoleExistsAndOwned(ekscontrolplanev1.DefaultEKSControlPlaneRole, clusterName, false, e2eCtx.BootstrapUserAWSSession)
61+
VerifyRoleExistsAndOwned(ekscontrolplanev1.DefaultEKSControlPlaneRole, clusterName, false, e2eCtx.BootstrapUserAWSSession)
6262

6363
ginkgo.By("should create an EKS control plane")
6464
ManagedClusterSpec(ctx, func() ManagedClusterSpecInput {

0 commit comments

Comments
 (0)