Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
a8949212
Commit
a8949212
authored
Nov 20, 2023
by
Manuel Buil
Committed by
Brad Davidson
Dec 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix overlapping address range
Signed-off-by:
Manuel Buil
<
mbuil@suse.com
>
parent
aa66de38
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Vagrantfile
tests/e2e/dualstack/Vagrantfile
+4
-4
dualstack_int_test.go
tests/integration/dualstack/dualstack_int_test.go
+2
-2
No files found.
tests/e2e/dualstack/Vagrantfile
View file @
a8949212
...
...
@@ -45,8 +45,8 @@ def provision(vm, role, role_num, node_num)
node-ip:
#{
node_ip4
}
,
#{
node_ip6
}
cluster-init: true
token: vagrant
cluster-cidr: 10.42.0.0/16,2001:cafe:42:
0:
:/56
service-cidr: 10.43.0.0/16,2001:cafe:4
2:1
::/112
cluster-cidr: 10.42.0.0/16,2001:cafe:42::/56
service-cidr: 10.43.0.0/16,2001:cafe:4
3
::/112
bind-address:
#{
NETWORK4_PREFIX
}
.100
flannel-iface: eth1
kubelet-arg: "--node-ip=0.0.0.0" # Workaround for https://github.com/kubernetes/kubernetes/issues/111695
...
...
@@ -62,8 +62,8 @@ def provision(vm, role, role_num, node_num)
node-ip:
#{
node_ip4
}
,
#{
node_ip6
}
server: https://
#{
NETWORK4_PREFIX
}
.100:6443
token: vagrant
cluster-cidr: 10.42.0.0/16,2001:cafe:42:
0:
:/56
service-cidr: 10.43.0.0/16,2001:cafe:4
2:1
::/112
cluster-cidr: 10.42.0.0/16,2001:cafe:42::/56
service-cidr: 10.43.0.0/16,2001:cafe:4
3
::/112
flannel-iface: eth1
kubelet-arg: "--node-ip=0.0.0.0" # Workaround for https://github.com/kubernetes/kubernetes/issues/111695
YAML
...
...
tests/integration/dualstack/dualstack_int_test.go
View file @
a8949212
...
...
@@ -13,8 +13,8 @@ import (
var
dualStackServer
*
testutil
.
K3sServer
var
dualStackServerArgs
=
[]
string
{
"--cluster-init"
,
"--cluster-cidr"
,
"10.42.0.0/16,2001:cafe:42:
0:
:/56"
,
"--service-cidr"
,
"10.43.0.0/16,2001:cafe:4
2:1
::/112"
,
"--cluster-cidr"
,
"10.42.0.0/16,2001:cafe:42::/56"
,
"--service-cidr"
,
"10.43.0.0/16,2001:cafe:4
3
::/112"
,
"--disable-network-policy"
,
}
var
testLock
int
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment