Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(kgo): Allow custom requests and limits #1026

Merged
merged 1 commit into from
Mar 8, 2024
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
12 changes: 12 additions & 0 deletions charts/gateway-operator/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
dependencies:
- name: kic-crds
repository: ""
version: 3.1.1
- name: gwapi-standard-crds
repository: ""
version: 1.0.0
- name: gwapi-experimental-crds
repository: ""
version: 1.0.0
digest: sha256:4e473789e45e892dc6f136e6f22928250c20ae790442e4b588adb847394e3f54
generated: "2024-03-08T07:52:46.825908393Z"
7 changes: 1 addition & 6 deletions charts/gateway-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,7 @@ spec:
initialDelaySeconds: 5
periodSeconds: 10
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 10m
memory: 128Mi
{{ toYaml .Values.resources | indent 10 }}
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
Expand Down
9 changes: 9 additions & 0 deletions charts/gateway-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,12 @@ gwapi-standard-crds:
# Install Gateway API experimental CRDs
gwapi-experimental-crds:
enabled: false

# Use this section to customize the requests and limits of gateway-operator
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 10m
memory: 128Mi
Loading