From c1c6cb8300acba58302159226c9cf5dd9f8439e7 Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Fri, 18 Jun 2021 19:14:55 -0500 Subject: [PATCH] Modify default probe timings This change modifies the keystone probe timings to be less aggressive. This should prevent the probes from restarting any keystone-api pods that are under a high volume of traffic as well as reduce the amount of log spam. Change-Id: Icce06bf2247591a7b603aa32ded254ce7b6cc67a --- keystone/Chart.yaml | 2 +- keystone/values.yaml | 7 ++++--- releasenotes/notes/keystone.yaml | 1 + 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/keystone/Chart.yaml b/keystone/Chart.yaml index e93f5ceb7e..54427ce405 100644 --- a/keystone/Chart.yaml +++ b/keystone/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Keystone name: keystone -version: 0.2.5 +version: 0.2.6 home: https://docs.openstack.org/keystone/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png sources: diff --git a/keystone/values.yaml b/keystone/values.yaml index 3af080cc3e..92e97b3d3f 100644 --- a/keystone/values.yaml +++ b/keystone/values.yaml @@ -405,13 +405,14 @@ pod: enabled: true params: initialDelaySeconds: 15 - periodSeconds: 10 + periodSeconds: 60 + timeoutSeconds: 15 liveness: enabled: true params: initialDelaySeconds: 50 - periodSeconds: 20 - timeoutSeconds: 5 + periodSeconds: 60 + timeoutSeconds: 15 jobs: fernet_setup: user: keystone diff --git a/releasenotes/notes/keystone.yaml b/releasenotes/notes/keystone.yaml index 51518e5aa3..68146aadf3 100644 --- a/releasenotes/notes/keystone.yaml +++ b/releasenotes/notes/keystone.yaml @@ -21,4 +21,5 @@ keystone: - 0.2.3 Adding rabbitmq TLS logic - 0.2.4 Use policies in yaml format - 0.2.5 Mount rabbitmq TLS secret + - 0.2.6 Modify default probe timings ...