Skip to content

Commit 00521c4

Browse files
committed
Allow specifying network name to use in docker provisioner
1 parent 2f3daba commit 00521c4

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

pkg/apis/config/v1alpha3/types.go

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ type Cluster struct {
3232

3333
/* Advanced fields */
3434

35+
// Network contains docker network to use in all containers
36+
Network string `yaml:"network,omitempty" json:"network,omitempty"`
37+
3538
// Networking contains cluster wide network settings
3639
Networking Networking `yaml:"networking,omitempty" json:"networking,omitempty"`
3740

pkg/internal/apis/config/convert.go

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ func Convertv1alpha3(in *v1alpha3.Cluster) *Cluster {
2424
in = in.DeepCopy() // deep copy first to avoid touching the original
2525
out := &Cluster{
2626
Nodes: make([]Node, len(in.Nodes)),
27+
Network: in.Network,
2728
KubeadmConfigPatches: in.KubeadmConfigPatches,
2829
KubeadmConfigPatchesJSON6902: make([]PatchJSON6902, len(in.KubeadmConfigPatchesJSON6902)),
2930
}

pkg/internal/apis/config/types.go

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ type Cluster struct {
3030

3131
/* Advanced fields */
3232

33+
// Network contains docker network to use in all containers
34+
Network string
35+
3336
// Networking contains cluster wide network settings
3437
Networking Networking
3538

pkg/internal/cluster/providers/docker/provision.go

+6
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,17 @@ func clusterHasImplicitLoadBalancer(cfg *config.Cluster) bool {
116116
// commonArgs computes static arguments that apply to all containers
117117
func commonArgs(cluster string, cfg *config.Cluster) ([]string, error) {
118118
// standard arguments all nodes containers need, computed once
119+
network := cfg.Network
120+
if network == "" {
121+
network = "bridge"
122+
}
123+
119124
args := []string{
120125
"--detach", // run the container detached
121126
"--tty", // allocate a tty for entrypoint logs
122127
// label the node with the cluster ID
123128
"--label", fmt.Sprintf("%s=%s", constants.ClusterLabelKey, cluster),
129+
"--network", network,
124130
}
125131

126132
// enable IPv6 if necessary

0 commit comments

Comments
 (0)