-
Notifications
You must be signed in to change notification settings - Fork 642
Description
What is the motivation or use case for the feature?
Crunchy Postgres Operator added a number of flags that allow clusters to set different resource requests for CPU and Memory for Crunchy Postgres components. The --enable-memory-limits and --cpu flags (from what I understand from container-resources.json) sets the limit = request sizes. For our use case we force the CPU/memory limits cluster wide to be so small that pods will be unable to run unless the resource/memory limits are configured, basically to ensure there are always some reasonable limits in place and a memory/cpu leak doesn't get missed. Because of this, each pod has different values for resource requests and limits. Additionally it would be useful to be able to set container resource values on pgBackRest jobs.
Describe the solution you'd like
It would be useful to keep the default limits to be set to what the resource request size is like Crunchy currently has, but having additional flags such as --memory-limit, --memory-request, --cpu-limit and --cpu-request would allow more fine grain tuning of resource usage of a Postgres Cluster.
Describe any alternatives you've considered
Currently our approach is hard coding the memory limit and disabling the cpu limit using sed before the installer/postgres-operator.yaml is run like so:
Please tell us about your environment:
- Operating System: RHEL7
- Where is this running ( Local , Cloud Provider): local
- Storage being used (NFS, Hostpath, Gluster, etc): etcd and localstorage
- Container Image Tag: centos latest
- PostgreSQL Version: latest
- Platform (Docker, Kubernetes, OpenShift): Openshift
- Platform Version: 3.11
Additional context
Add any other context or screenshots about the feature request here.
