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
d34550fb
Commit
d34550fb
authored
Nov 20, 2023
by
Manuel Buil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix overlapping address range
Signed-off-by:
Manuel Buil
<
mbuil@suse.com
>
parent
6ba6c1b6
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 @
d34550fb
...
@@ -46,8 +46,8 @@ def provision(vm, role, role_num, node_num)
...
@@ -46,8 +46,8 @@ def provision(vm, role, role_num, node_num)
node-ip:
#{
node_ip4
}
,
#{
node_ip6
}
node-ip:
#{
node_ip4
}
,
#{
node_ip6
}
cluster-init: true
cluster-init: true
token: vagrant
token: vagrant
cluster-cidr: 10.42.0.0/16,2001:cafe:42:
0:
:/56
cluster-cidr: 10.42.0.0/16,2001:cafe:42::/56
service-cidr: 10.43.0.0/16,2001:cafe:4
2:1
::/112
service-cidr: 10.43.0.0/16,2001:cafe:4
3
::/112
bind-address:
#{
NETWORK4_PREFIX
}
.100
bind-address:
#{
NETWORK4_PREFIX
}
.100
flannel-iface: eth1
flannel-iface: eth1
YAML
YAML
...
@@ -62,8 +62,8 @@ def provision(vm, role, role_num, node_num)
...
@@ -62,8 +62,8 @@ def provision(vm, role, role_num, node_num)
node-ip:
#{
node_ip4
}
,
#{
node_ip6
}
node-ip:
#{
node_ip4
}
,
#{
node_ip6
}
server: https://
#{
NETWORK4_PREFIX
}
.100:6443
server: https://
#{
NETWORK4_PREFIX
}
.100:6443
token: vagrant
token: vagrant
cluster-cidr: 10.42.0.0/16,2001:cafe:42:
0:
:/56
cluster-cidr: 10.42.0.0/16,2001:cafe:42::/56
service-cidr: 10.43.0.0/16,2001:cafe:4
2:1
::/112
service-cidr: 10.43.0.0/16,2001:cafe:4
3
::/112
flannel-iface: eth1
flannel-iface: eth1
YAML
YAML
k3s
.
env
=
[
"K3S_KUBECONFIG_MODE=0644"
,
install_type
]
k3s
.
env
=
[
"K3S_KUBECONFIG_MODE=0644"
,
install_type
]
...
...
tests/integration/dualstack/dualstack_int_test.go
View file @
d34550fb
...
@@ -13,8 +13,8 @@ import (
...
@@ -13,8 +13,8 @@ import (
var
dualStackServer
*
testutil
.
K3sServer
var
dualStackServer
*
testutil
.
K3sServer
var
dualStackServerArgs
=
[]
string
{
var
dualStackServerArgs
=
[]
string
{
"--cluster-init"
,
"--cluster-init"
,
"--cluster-cidr"
,
"10.42.0.0/16,2001:cafe:42:
0:
:/56"
,
"--cluster-cidr"
,
"10.42.0.0/16,2001:cafe:42::/56"
,
"--service-cidr"
,
"10.43.0.0/16,2001:cafe:4
2:1
::/112"
,
"--service-cidr"
,
"10.43.0.0/16,2001:cafe:4
3
::/112"
,
"--disable-network-policy"
,
"--disable-network-policy"
,
}
}
var
testLock
int
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