🐛(backend) fix certificates volume mount path for Python 3.13

After upgrading Python to 3.13, not all development environments were
updated accordingly. This fixes the incorrect volume mount path
introduced by that upgrade.
This commit is contained in:
lebaudantoine
2026-01-05 17:16:29 +01:00
committed by aleb_the_flash
parent 5be7595533
commit cadc186c62

View File

@@ -99,7 +99,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