olivejp commented on issue #38137: URL: https://github.com/apache/superset/issues/38137#issuecomment-3941856218
Hi everyone 👋🏽 , Follow this tutorial to install Superset on a Minikube cluster : https://superset.apache.org/docs/installation/kubernetes/ With the default values.yaml that could be found on : https://github.com/apache/superset/blob/master/helm/superset/values.yaml Led to these error : <img width="1151" height="97" alt="Image" src="https://github.com/user-attachments/assets/a0a8d954-e13a-49d2-b48b-efe3a60fec5a" /> <img width="1185" height="64" alt="Image" src="https://github.com/user-attachments/assets/5e2800df-5d20-4378-bc24-2050396f899d" /> <img width="1185" height="64" alt="Image" src="https://github.com/user-attachments/assets/d17038a3-6954-4aad-b615-dd4a07a8a856" /> After some searches on DockerHub, found out that those images don't exist anymore. Then I have to override Postgresql and Redis images on the values.yaml file. ```yaml postgresql: ## Image configuration image: registry: docker.io repository: bitnamilegacy/postgresql tag: 14.17.0-debian-12-r3 pullPolicy: IfNotPresent ``` ```yaml redis: ## Image configuration image: registry: docker.io repository: bitnamilegacy/redis tag: 7.0.10-debian-11-r4 pullPolicy: IfNotPresent ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
