diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-08-25 23:22:53 +0200 |
---|---|---|
committer | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-09-02 14:07:53 +0000 |
commit | f5ee1c5aa533c47f93b091eafb366c4185b4ab49 (patch) | |
tree | 82ac960df3bc0eb94e6d65bb50cbc84c2c0d55e4 /kubernetes/onap/values.yaml | |
parent | 23e0d7989ce7a9dad916742f36deddb9160cd394 (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
Diffstat (limited to 'kubernetes/onap/values.yaml')
-rwxr-xr-x | kubernetes/onap/values.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/onap/values.yaml b/kubernetes/onap/values.yaml index dd80323216..e1a999aa3d 100755 --- a/kubernetes/onap/values.yaml +++ b/kubernetes/onap/values.yaml @@ -90,6 +90,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 + # configuration to set log level to all components (the one that are using # "common.log.level" to set this) # can be overrided per components by setting logConfiguration.logLevelOverride |