Deploy a PostgreSQL database via Helm #27
-
Hello Appuio Cloud community!
The installation was unfortunately not yet successful, I receive following message in the OpenShift console: If I check the default quotas this should actually be ok and valid or do I misunderstand something? Also I did not use the gluster-database storageClass as documented here: https://docs.appuio.ch/en/latest/app/helmcharts.html, I removed the storageClass confiugration because this is not available anymore on the new Appuio Cloud platform as far as I understand. But I'm also not sure if I need to configure some other storageClass like "ssd"? I have used the following values.yaml file for customizing the Helm chart:
Do you have any hints on how I can run a PostgreSQL database on the new Appuio Cloud platform? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi,
I had a quick look and realized that the cause for the error is that the Helm chart only sets resource requests. However, on APPUiO Cloud we require that users to also configure resource limits if they configure resource requests. If users don't explicitly configure limits, the platform injects limits of In your case, Kubernetes then rejects the configuration since the default requests configured in the Helm chart are larger than the default limits injected by APPUiO Cloud. I think you should be able to fix this error by adding the following to your
Yes, on APPUiO Cloud we're not offering Gluster volumes for persistent storage anymore. Instead, we offer a number of storageclasses (RWO and RWX) for different usecases, see https://docs.appuio.cloud/user/explanation/storage-classes.html#_cloudscale_ch for details. As you've noticed the |
Beta Was this translation helpful? Give feedback.
Hi,
I had a quick look and realized that the cause for the error is that the Helm chart only sets resource requests.
However, on APPUiO Cloud we require that users to also configure resource limits if they configure resour…