-
Notifications
You must be signed in to change notification settings - Fork 263
Closed
Labels
Description
Currently there's no way to configure resources for trident-operator, e.g. cpuLimit of 20m seems to be too low and is causing cpu throttling.
Proposed solution is to update values.yaml and templates/deployment.yaml
helm/trident-operator/templates/deployment.yaml:
resources:
{{- .Values.operatorResources | toYaml | nindent 10 }}helm/trident-operator/values.yaml:
# operatorResources allows configurable trident-operator resources
operatorResources:
requests:
cpu: "10m"
memory: "40Mi"
limits:
cpu: "20m"
memory: "80Mi"clementnuss, dtrouillet, oscarr-ntap, jk-mob, Cajga and 5 more