From 7b9c362d38bb25c70f29773c8cc994ebdac51f6c Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 21 May 2025 11:55:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(tilt)=20update=20certificate=20pat?= =?UTF-8?q?h=20for=20Python=203.13=20upgrade?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix certificate directory reference that still pointed to Python 3.12 folder after upgrading to Python 3.13. Resolves certificate verification errors in tilt stack caused by incorrect certificate location. --- src/helm/env.d/dev/values.impress.yaml.gotmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helm/env.d/dev/values.impress.yaml.gotmpl b/src/helm/env.d/dev/values.impress.yaml.gotmpl index c34da6cb..e788f40f 100644 --- a/src/helm/env.d/dev/values.impress.yaml.gotmpl +++ b/src/helm/env.d/dev/values.impress.yaml.gotmpl @@ -96,7 +96,7 @@ backend: # Extra volume mounts to manage our local custom CA and avoid to set ssl_verify: false extraVolumeMounts: - name: certs - mountPath: /usr/local/lib/python3.12/site-packages/certifi/cacert.pem + mountPath: /usr/local/lib/python3.13/site-packages/certifi/cacert.pem subPath: cacert.pem # Extra volumes to manage our local custom CA and avoid to set ssl_verify: false