Make the service-mesh and tls options true by default

This commit is contained in:
M. Mert Yildiran 2022-12-22 20:46:52 +03:00
parent e68766a2e3
commit 0f870bf614
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461

View File

@ -47,8 +47,8 @@ type DeployConfig struct {
DryRun bool `yaml:"dry-run" default:"false"`
HubResources models.Resources `yaml:"hub-resources"`
WorkerResources models.Resources `yaml:"worker-resources"`
ServiceMesh bool `yaml:"service-mesh" default:"false"`
Tls bool `yaml:"tls" default:"false"`
ServiceMesh bool `yaml:"service-mesh" default:"true"`
Tls bool `yaml:"tls" default:"true"`
PacketCapture string `yaml:"packet-capture" default:"libpcap"`
Profiler bool `yaml:"profiler" default:"false"`
}