From 959124edaf4d2df4fd0cd45f2809a56c8cfc8b33 Mon Sep 17 00:00:00 2001 From: chainchad <96362174+chainchad@users.noreply.github.com> Date: Thu, 11 Jan 2024 15:23:24 -0500 Subject: [PATCH] Change chainlink helm chart node deployment to use 'recreate' rollouts --- .../chainlink-cluster/templates/chainlink-node-deployment.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/chainlink-cluster/templates/chainlink-node-deployment.yaml b/charts/chainlink-cluster/templates/chainlink-node-deployment.yaml index a08c31c2c42..16156ef4ffc 100644 --- a/charts/chainlink-cluster/templates/chainlink-node-deployment.yaml +++ b/charts/chainlink-cluster/templates/chainlink-node-deployment.yaml @@ -4,6 +4,9 @@ kind: Deployment metadata: name: {{ $.Release.Name }}-{{ $cfg.name }} spec: + strategy: + # Need to recreate the pod to deal with lease lock held by old pod. + type: Recreate selector: matchLabels: app: {{ $.Release.Name }}