Skip to content
Merged
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
8 changes: 4 additions & 4 deletions bundle/manifests/amd-gpu-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1660,11 +1660,11 @@ spec:
periodSeconds: 10
resources:
limits:
cpu: 500m
memory: 384Mi
cpu: "1"
memory: 1Gi
requests:
cpu: 10m
memory: 64Mi
cpu: 100m
memory: 256Mi
securityContext:
allowPrivilegeEscalation: false
volumeMounts:
Expand Down
14 changes: 8 additions & 6 deletions config/manager-base/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,17 @@ spec:
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
# TODO(user): Configure the resources accordingly based on the project requirements.
# More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
# Keep in sync with the Helm chart controller-manager resources
# (helm-charts-k8s/values.yaml). The previous 384Mi limit was the
# kubebuilder scaffold default and caused intermittent OOMKilled
# events on OpenShift under load.
resources:
limits:
cpu: 500m
memory: 384Mi
cpu: 1000m
memory: 1Gi
requests:
cpu: 10m
memory: 64Mi
cpu: 100m
memory: 256Mi
serviceAccountName: controller-manager
terminationGracePeriodSeconds: 10
tolerations:
Expand Down
Loading