Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions helm/trident-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,7 @@ spec:
name: trident-operator
resources:
requests:
cpu: "10m"
memory: "40Mi"
limits:
cpu: "20m"
memory: "80Mi"
{{ toYaml .Values.resources | indent 10 }}
{{- if and (eq .Values.cloudProvider "Azure") (eq .Values.cloudIdentity "") }}
volumes:
- name: azure-cred
Expand Down
9 changes: 9 additions & 0 deletions helm/trident-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ deploymentAnnotations: {}
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []

resources:
requests:
cpu: "10m"
memory: "40Mi"
limits:
cpu: "20m"
memory: "80Mi"


## Affinity for pod assignment
## The following affinity configuration ensures that the Trident operator will only be scheduled on nodes with the specified architecture and OS, Hence, do not modify this section. To add custom affinity rules, please append your content to this configuration as needed
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
Expand Down