summaryrefslogtreecommitdiffstats
path: root/kubernetes/onap
diff options
context:
space:
mode:
authorKrzysztof Opasiak <k.opasiak@samsung.com>2020-08-25 23:22:53 +0200
committerKrzysztof Opasiak <k.opasiak@samsung.com>2020-09-11 19:49:03 +0000
commiteff1c9cd4bf1b32bd44d664daef8318befb21a67 (patch)
tree738174f49b2be0c6aa6a3de8bbf33c4fb0a0646e /kubernetes/onap
parentf8ca3c0897267b323ba080be04569b26579c68b1 (diff)
[COMMON] Allow to set default password complexity
With the introduction of common secret template many of ONAP passwords started being automatically generated. The algorithm that we use for this purpose allows to choose the complexity of generated password. By default we use "long" which contains special characters. Unfortunately this turns out to often cause some issue. To make our deployment more stable and user friendly lets allow the deployer to choose the desired password complexity. Issue-ID: OOM-2328 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Change-Id: Ib7a412e19f6b44f20c8ac388393936cf5d967d4e (cherry picked from commit f5ee1c5aa533c47f93b091eafb366c4185b4ab49)
Diffstat (limited to 'kubernetes/onap')
-rwxr-xr-xkubernetes/onap/values.yaml5
1 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/onap/values.yaml b/kubernetes/onap/values.yaml
index 1723ad5d39..cfe04d95a2 100755
--- a/kubernetes/onap/values.yaml
+++ b/kubernetes/onap/values.yaml
@@ -75,6 +75,11 @@ global:
# flag to enable debugging - application support required
debugEnabled: false
+ # default password complexity
+ # available options: phrase, name, pin, basic, short, medium, long, maximum security
+ # More datails: https://masterpassword.app/masterpassword-algorithm.pdf
+ passwordStrength: long
+
#Global ingress configuration
ingress:
enabled: false