From 0f858411a17e6945a4cf2867420b48915279fd63 Mon Sep 17 00:00:00 2001 From: lukepatrick Date: Wed, 6 Sep 2017 14:38:41 -0600 Subject: [PATCH] Fix keystone-credential-rotate CrashLoopBackOff Keystone Credential Rotate bug has a string where a number is expected in fernet-manage.py Change-Id: I8a5099777a6c16c6b3d56dbf387a3281a4d4a6aa --- keystone/templates/bin/_fernet-manage.py.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keystone/templates/bin/_fernet-manage.py.tpl b/keystone/templates/bin/_fernet-manage.py.tpl index da05164dff..5d122c7802 100644 --- a/keystone/templates/bin/_fernet-manage.py.tpl +++ b/keystone/templates/bin/_fernet-manage.py.tpl @@ -175,7 +175,7 @@ def main(): # time to make sure k8s reloads the secrets in all pods and then # execute `credential_migrate`. - migrate_wait = os.environ['KEYSTONE_CREDENTIAL_MIGRATE_WAIT'] + migrate_wait = int(os.getenv('KEYSTONE_CREDENTIAL_MIGRATE_WAIT', "60")) LOG.info("Waiting %d seconds to execute `credential_migrate`.", migrate_wait) time.sleep(migrate_wait)