Skip to content

Commit 9f85d59

Browse files
authored
Merge pull request #1101 from rackerlabs/PUC-1081-20250724
feat(openstack-helm): Enable resource limits for OpenStack components in helm values
2 parents d5bcce1 + 2b9343a commit 9f85d59

File tree

9 files changed

+21
-1
lines changed

9 files changed

+21
-1
lines changed

components/cinder/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ pod:
7676
# this should be set to no more than (pod.replicas.server - 1)
7777
# usually set on per-deployment basis.
7878
min_available: 0
79+
resources:
80+
enabled: true
81+
7982
dependencies:
8083
dynamic:
8184
common:

components/horizon/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ pod:
7676
# this should be set to no more than (pod.replicas.horizon - 1)
7777
# usually set on per-deployment basis.
7878
min_available: 0
79+
resources:
80+
enabled: true
7981

8082
annotations:
8183
# we need to modify the annotations on OpenStack Helm

components/ironic/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,8 @@ pod:
219219
# this should be set to no more than (pod.replicas.api - 1)
220220
# usually set on per-deployment basis.
221221
min_available: 0
222+
resources:
223+
enabled: true
222224

223225
annotations:
224226
# we need to modify the annotations on OpenStack Helm

components/keystone/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies:
3333

3434
pod:
3535
resources:
36-
enabled: false
36+
enabled: true
3737
api:
3838
requests:
3939
memory: "64Mi"

components/neutron/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ pod:
138138
- name: undersync-token
139139
secret:
140140
secretName: undersync-token
141+
resources:
142+
enabled: true
143+
141144
# (nicholas.kuechler) updating the jobs list to remove the 'neutron-rabbit-init' job.
142145
dependencies:
143146
dynamic:

components/nova/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ pod:
154154
# this should be set to no more than (pod.replicas.osapi - 1)
155155
# usually set on per-deployment basis.
156156
min_available: 0
157+
resources:
158+
enabled: true
157159

158160
manifests:
159161
job_db_init: false

components/octavia/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ dependencies:
8282
db_sync:
8383
jobs:
8484

85+
pod:
86+
resources:
87+
enabled: true
88+
8589
manifests:
8690
job_db_init: false
8791
job_rabbit_init: false

components/placement/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ pod:
3030
# this should be set to no more than (pod.replicas.api - 1)
3131
# usually set on per-deployment basis.
3232
min_available: 0
33+
resources:
34+
enabled: true
3335

3436
endpoints:
3537
placement:

components/skyline/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ pod:
4343
# this should be set to no more than (pod.replicas.skyline - 1)
4444
# usually set on per-deployment basis.
4545
min_available: 0
46+
resources:
47+
enabled: true
4648

4749
annotations:
4850
# we need to modify the annotations on OpenStack Helm

0 commit comments

Comments
 (0)