From 0f870bf6140d4aae3fd1496d0bee5f0d0ab7fac0 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Thu, 22 Dec 2022 20:46:52 +0300 Subject: [PATCH] :zap: Make the `service-mesh` and `tls` options `true` by default --- config/configStructs/deployConfig.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/configStructs/deployConfig.go b/config/configStructs/deployConfig.go index 522b14599..264c73fe6 100644 --- a/config/configStructs/deployConfig.go +++ b/config/configStructs/deployConfig.go @@ -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"` }