Closed Sai05091990 closed 2 years ago
instead of using values.yml file, i tried to pass parameters using --set then also the pod crashes.
helm upgrade --install -n ${KUBE_NAMESPACE} mediawiki bitnami/mediawiki --set mediawikiUser=admin,mediawikiPassword=password,mariadb.mariadbRootPassword=password,mediawikiHost=${APP_HOSTNAME},readinessProbe.failureThreshold=20
If i install using below command, then there is no crash in the pod, not sure how can i customize the parameters without values.yml or --set
option as these ways are giving crash errors.
helm upgrade --install -n ${KUBE_NAMESPACE} mediawiki bitnami/mediawiki
Hi @Sai05091990
I think the problem is that you're setting mediawikiPassword=password
which doesn't comply with the minimal length for Mediawiki password, see:
Could you try uninstalling your chart and installing it again with a longer password? Please don't forget to remove the existing PVC(s) to avoid the new installation to reuse the all data (find more info about this in our Troubleshooting Guideline).
Thanks Juan for the pointing that, i somehow missed that min length requirement and trying with normal password and doing deployments.
deployed again with minimum length password and boom it worked.
Appreciate your help.
Closing this issue now !!
Which chart:
Mediawiki version 12.4.4
Describe the bug
It was simple deployment of mediwiki/mariadb using helm chart, the deployment is configured using gitlab pipeline. Mariadb pod is up and running and ready for accepting connections as below but the Mediawiki pod is not working.
Mediawiki pod is going in to crashloopbackoff , due to below error from pod logs:
after a threshold, the pod log error shows with localsettings.php is not found and maybe the installation of mediawiki plugins are not happening with in time and goes in to crash, we have tried adding more timeout and it resolved but when we add extra params in the values.yml it doesn't work