Skip to content

Commit 47090c3

Browse files
authored
feat: add requests and limits to registry containers (#1158)
**What problem does this PR solve?**: Set requests and limits for the registry containers. The addon can be enabled in every cluster so we want to have control over the resources. These numbers were collected by pushing a 12GB bundle to the registry. <img width="831" alt="image" src="https://github.com/user-attachments/assets/11a84a43-1caa-4e26-8fbe-492a1cd0b5d6" /> **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent 1c534f0 commit 47090c3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

charts/cluster-api-runtime-extensions-nutanix/addons/registry/cncf-distribution/values-template.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,22 @@ service:
66
type: ClusterIP
77
clusterIP: {{ .ServiceIP }}
88
port: 443
9+
resources:
10+
requests:
11+
cpu: 100m
12+
memory: 256Mi
13+
limits:
14+
cpu: 250m
15+
memory: 384Mi
916
statefulSet:
1017
enabled: true
1118
syncer:
1219
interval: 2m
20+
resources:
21+
requests:
22+
cpu: 25m
23+
memory: 50Mi
24+
limits:
25+
cpu: 100m
26+
memory: 75Mi
1327
tlsSecretName: {{ .TLSSecretName }}

0 commit comments

Comments
 (0)