Skip to content

Commit 7636c68

Browse files
fix: increase default resource requirements for NIC Config Operator (#1698)
since the last update the functionality of the operator grew and the current resource requirements are not sufficient, which may lead to OOM errors on some setups. Let's increase the default values
2 parents cd75bec + 2212b50 commit 7636c68

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

manifests/state-nic-configuration-operator/060-operator.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ spec:
113113
resources:
114114
limits:
115115
cpu: 500m
116-
memory: 128Mi
116+
memory: 256Mi
117117
requests:
118-
cpu: 10m
119-
memory: 64Mi
118+
cpu: 100m
119+
memory: 256Mi
120120
{{- end }}
121121
{{- if .CrSpec.NicFirmwareStorage }}
122122
volumeMounts:

manifests/state-nic-configuration-operator/070-config-daemon.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ spec:
6060
resources:
6161
limits:
6262
cpu: 500m
63-
memory: 128Mi
63+
memory: 512Mi
6464
requests:
65-
cpu: 10m
66-
memory: 64Mi
65+
cpu: 100m
66+
memory: 512Mi
6767
{{- end }}
6868
env:
6969
- name: NODE_NAME

0 commit comments

Comments
 (0)