We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
cpuLimit
20m
Proposed solution is to update values.yaml and templates/deployment.yaml
values.yaml
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"
The text was updated successfully, but these errors were encountered:
permit specifying trident-operator resources
1e9b459
closes NetApp#927 Signed-off-by: Clément Nussbaumer <[email protected]>
4b090f7
b8d04d5
1f91b26
Successfully merging a pull request may close this issue.
Currently there's no way to configure resources for trident-operator, e.g.
cpuLimit
of20m
seems to be too low and is causing cpu throttling.Proposed solution is to update
values.yaml
andtemplates/deployment.yaml
helm/trident-operator/templates/deployment.yaml:
helm/trident-operator/values.yaml:
The text was updated successfully, but these errors were encountered: