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"
Currently there's no way to configure resources for trident-operator, e.g.
cpuLimitof20mseems to be too low and is causing cpu throttling.Proposed solution is to update
values.yamlandtemplates/deployment.yamlhelm/trident-operator/templates/deployment.yaml:
helm/trident-operator/values.yaml: