[VOL-4674] Connecting directly to the BBSim POD instead than to the service as that might round-robin to the old instance before it's gone

Change-Id: I79558af733ff29f0c7ee204015f1f64a7895a51c
diff --git a/internal/utils/config.go b/internal/utils/config.go
index 303c22b..69b0ce4 100644
--- a/internal/utils/config.go
+++ b/internal/utils/config.go
@@ -37,9 +37,9 @@
 
 func NewConfigFlags() *ConfigFlags {
 	flags := &ConfigFlags{
-		LogLevel:   defaultLogLevel,
-		LogFormat:  defaultLogFormat,
-		Kubeconfig: "",
+		LogLevel:       defaultLogLevel,
+		LogFormat:      defaultLogFormat,
+		Kubeconfig:     "",
 		BBsimSadisPort: defaultBBsimSadisPort,
 	}
 	return flags