From 75dbd2a7e495208fc97ed9c48fb2644d277b2a06 Mon Sep 17 00:00:00 2001 From: Robert Moucha Date: Mon, 5 Aug 2019 08:39:24 +0200 Subject: [PATCH] Fix typo in helm chart (#4875) ### Motivation Incorrect value is being used in Pulsar Helm template `autorecovery-deployment.yaml` ### Modifications Proper variable name set. ### Verifying this change Fixed variable name is already set in `values.yaml` and `values-mini.yaml`. This change is a trivial rework / code cleanup without any test coverage. ### Documentation None needed. (cherry picked from commit 2b52ccb24d607019d71a759bd8c7206c8f64c49f) --- .../helm/pulsar/templates/autorecovery-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/kubernetes/helm/pulsar/templates/autorecovery-deployment.yaml b/deployment/kubernetes/helm/pulsar/templates/autorecovery-deployment.yaml index fe1dd08bfe3..f5b2f16a1e5 100644 --- a/deployment/kubernetes/helm/pulsar/templates/autorecovery-deployment.yaml +++ b/deployment/kubernetes/helm/pulsar/templates/autorecovery-deployment.yaml @@ -73,7 +73,7 @@ spec: values: - {{ .Values.bookkeeper.component }} topologyKey: "kubernetes.io/hostname" - terminationGracePeriodSeconds: {{ .Values.dashboard.gracePeriod }} + terminationGracePeriodSeconds: {{ .Values.autoRecovery.gracePeriod }} initContainers: # This init container will wait for zookeeper to be ready before # deploying the bookies -- GitLab