Skip to content

Commit

Permalink
fix(engine): fix cluster CIDR to be an array
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklasfrahm committed Jun 22, 2022
1 parent 3508bc8 commit 5f3ad75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/engine/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type Server struct {
AdvertisePort int `yaml:"advertise-port,omitempty"`
TLSSAN []string `yaml:"tls-san,omitempty"`
DataDir string `yaml:"data-dir,omitempty"`
ClusterCIDR string `yaml:"cluster-cidr,omitempty"`
ClusterCIDR []string `yaml:"cluster-cidr,omitempty"`
ServiceCIDR []string `yaml:"service-cidr,omitempty"`
ServiceNodePortRange string `yaml:"service-node-port-range,omitempty"`
ClusterDNS []string `yaml:"cluster-dns,omitempty"`
Expand Down

0 comments on commit 5f3ad75

Please sign in to comment.