From 259e8762948abfe1292feafffbedbd26866f63e5 Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Fri, 11 Mar 2022 15:15:36 +0000 Subject: [OOM][OOF-HAS] Use basic password strength to avoid dollar sign OOF HAS controller uses Python oslo library to manage config files. In Python configuration files dollar sign ($) is used to reference other values. If that sign is in generated password container can't parse configuration file and exits with error. Basic password strength means it will use only alphanumberic characters. Issue-ID: OPTFRA-1028 Signed-off-by: Michal Jagiello Change-Id: Id31d6f21f22dab93386ea36e2aa026f70367c2e0 --- kubernetes/oof/components/oof-has/values.yaml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'kubernetes/oof/components/oof-has/values.yaml') diff --git a/kubernetes/oof/components/oof-has/values.yaml b/kubernetes/oof/components/oof-has/values.yaml index 248d3afd57..bc129beb3e 100755 --- a/kubernetes/oof/components/oof-has/values.yaml +++ b/kubernetes/oof/components/oof-has/values.yaml @@ -155,3 +155,6 @@ etcd-init: keyPrefix: conductor flavor: *etcd-flavor resources: *etcd-resources + +# Python doesn't support well dollar sign in password +passwordStrengthOverride: basic \ No newline at end of file -- cgit 1.2.3-korg