From 0bd101bb884210e5aefe7873659bf68f6625d3eb Mon Sep 17 00:00:00 2001 From: gurudeen-kori Date: Fri, 17 Jul 2026 23:11:43 +0530 Subject: [PATCH] fix: resolve ErrImagePull for MySQL helm deployment ## Summary Updated the Helm installation command to override the default MySQL image repository. ## Changes - Added image.repository=bitnamilegacy/mysql - Added image.tag=9.4.0-debian-12-r1 ## Reason The default image (bitnami/mysql:9.4.0-debian-12-r1) returned `ImagePullBackOff` because the image was no longer available in the default Bitnami repository. Switching to the legacy Bitnami repository resolved the issue and allowed the MySQL Pod to start successfully. ## Result - MySQL Pod is running successfully. - Helm deployment completed without image pull errors. --- 2026/day-78/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/2026/day-78/README.md b/2026/day-78/README.md index 4ed52c42b3..7acb91a523 100644 --- a/2026/day-78/README.md +++ b/2026/day-78/README.md @@ -107,6 +107,8 @@ helm search repo bitnami/mysql **Deploy MySQL with the same config the AI-BankApp expects:** ```bash helm install bankapp-mysql bitnami/mysql \ + --set image.repository=bitnamilegacy/mysql \ + --set image.tag=9.4.0-debian-12-r1 \ --set auth.rootPassword=Test@123 \ --set auth.database=bankappdb \ --set primary.resources.requests.memory=256Mi \