Skip to content

Commit

Permalink
chore(ac): gke autopilot requires limits and requests
Browse files Browse the repository at this point in the history
  • Loading branch information
paologallinaharbur committed Mar 5, 2025
1 parent 874e03a commit c0c41ef
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
6 changes: 3 additions & 3 deletions charts/agent-control/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ dependencies:
version: 2.14.1
- name: agent-control-deployment
repository: ""
version: 0.0.42-beta
version: 0.0.43-beta
- name: common-library
repository: https://helm-charts.newrelic.com
version: 1.3.1
digest: sha256:af3a56b5b32d661139441f50887c99a69ad3cf4c32e393b1cec71e38c257fcdf
generated: "2025-02-27T12:26:06.411355+01:00"
digest: sha256:c48931832ecebf5cf8572616cdb15580df0f0b1c11b008d4ec741a4f35dcc83c
generated: "2025-03-05T16:37:35.732903+01:00"
4 changes: 2 additions & 2 deletions charts/agent-control/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ name: agent-control
description: Bootstraps New Relic' Agent Control

type: application
version: 0.0.52-beta
version: 0.0.53-beta

dependencies:
- name: flux2
repository: https://fluxcd-community.github.io/helm-charts
version: 2.14.1
condition: flux2.enabled
- name: agent-control-deployment
version: 0.0.42-beta
version: 0.0.43-beta
condition: agent-control-deployment.enabled
# The following dependency is needed as sub-dependency of agent-control-deployment
- name: common-library
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Helm chart to install New Relic Agent Control on Kubernetes

type: application

version: 0.0.42-beta
version: 0.0.43-beta

keywords:
- newrelic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ spec:
- name: register-system-identity
image: "{{ (.Values.systemIdentityRegistration.image).repository | default "newrelic/agent-control-system-identity-registration" }}:{{ (.Values.systemIdentityRegistration.image).tag | default "latest" }}"
imagePullPolicy: {{ .Values.systemIdentityRegistration.image.pullPolicy }}
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 50m
memory: 64Mi
env:
{{- if or (include "newrelic.common.userKey._customSecretName" .) (include "newrelic.common.userKey._userKey" .) }}
- name: USER_KEY
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ spec:
containers:
- name: delete-managed-resources
image: bitnami/kubectl # TODO: Pin version to the latest that we support.
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 50m
memory: 64Mi
command:
- bash
args:
Expand Down

0 comments on commit c0c41ef

Please sign in to comment.