fix download issues when using scale

This commit is contained in:
2024-12-14 18:56:34 +03:00
parent 1c366bdb6b
commit be9c8a28fd
11 changed files with 457 additions and 64 deletions

View File

@@ -35,6 +35,16 @@ type Orchestrator struct {
Plugin string `yaml:"plugin" env-default:"calico"`
ServiceAddresses string `yaml:"service_addresses" env-default:"10.233.0.0/18"`
PodsSubnet string `yaml:"pods_subnet" env-default:"10.233.64.0/18"`
Calico struct {
EnableBpf bool `yaml:"enable_bpf"`
} `yaml:"calico"`
Cilium struct {
EnableBpf bool `yaml:"enable_bpf"`
Hubble struct {
Install bool `yaml:"install"`
EnableMetrics bool `yaml:"enable_metrics"`
} `yaml:"hubble"`
} `yaml:"cilium"`
} `yaml:"network"`
RegistryMirrors []RegistryMirror `yaml:"registry_mirrors"`
}