From abd04e6f5a0aeea0b449fcafd2463b3d4f7617f1 Mon Sep 17 00:00:00 2001
From: Oleksii Kliukin <oleksii.kliukin@zalando.de>
Date: Fri, 12 May 2017 17:44:51 +0200
Subject: [PATCH] Avoid abbreviations in user-facing parameters.

---
 cmd/main.go               | 8 ++++----
 pkg/util/config/config.go | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/cmd/main.go b/cmd/main.go
index 697058a0..b1e7f7e7 100644
--- a/cmd/main.go
+++ b/cmd/main.go
@@ -20,14 +20,14 @@ var (
 	configMapName  spec.NamespacedName
 	OutOfCluster   bool
 	noTeamsAPI bool
-	noDBAccess bool
+	noDatabaseAccess bool
 	version        string
 )
 
 func init() {
 	flag.StringVar(&KubeConfigFile, "kubeconfig", "", "Path to kubeconfig file with authorization and master location information.")
 	flag.BoolVar(&OutOfCluster, "outofcluster", false, "Whether the operator runs in- our outside of the Kubernetes cluster.")
-	flag.BoolVar(&noDBAccess, "nodatabaseaccess", false, "Disable all access to the database from the operator side.")
+	flag.BoolVar(&noDatabaseAccess, "nodatabaseaccess", false, "Disable all access to the database from the operator side.")
 	flag.BoolVar(&noTeamsAPI, "noteamsapi", false, "Disable all access to the teams API")
 	flag.Parse()
 
@@ -91,8 +91,8 @@ func main() {
 	if configMapData["namespace"] == "" { // Namespace in ConfigMap has priority over env var
 		configMapData["namespace"] = podNamespace
 	}
-	if noDBAccess {
-		configMapData["enable_db_access"] = "false"
+	if noDatabaseAccess {
+		configMapData["enable_database_access"] = "false"
 	}
 	if noTeamsAPI {
 		configMapData["enable_teams_api"] = "false"
diff --git a/pkg/util/config/config.go b/pkg/util/config/config.go
index 96b9ff65..77e5b636 100644
--- a/pkg/util/config/config.go
+++ b/pkg/util/config/config.go
@@ -52,7 +52,7 @@ type Config struct {
 	WALES3Bucket       string `name:"wal_s3_bucket"`
 	KubeIAMRole        string `name:"kube_iam_role"`
 	DebugLogging       bool   `name:"debug_logging" default:"false"`
-	EnableDBAccess	   bool   `name:"enable_db_access" default:"true"`
+	EnableDBAccess	   bool   `name:"enable_database_access" default:"true"`
 	EnableTeamsAPI     bool   `name:"enable_teams_api" default:"true"`
 	DNSNameFormat      string `name:"dns_name_format" default:"%s.%s.%s"`
 	Workers            uint32 `name:"workers" default:"4"`
-- 
GitLab