You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!--
Thank you for contributing to New Relic's Helm charts. Before you submit
this PR we'd like to
make sure you are aware of our technical requirements:
*
https://github.com/newrelic-experimental/helm-charts/blob/master/CONTRIBUTING.md#technical-requirements
For a quick overview across what we will look at reviewing your PR,
please read
our review guidelines:
*
https://github.com/newrelic-experimental/helm-charts/blob/master/REVIEW_GUIDELINES.md
Following our best practices right from the start will accelerate the
review process and
help get your PR merged quicker.
When updates to your PR are requested, please add new commits and do not
squash the
history. This will make it easier to identify new changes. The PR will
be squashed
anyways when it is merged. Thanks.
For fast feedback, please @-mention maintainers that are listed in the
Chart.yaml file.
Please make sure you test your changes before you push them. Once
pushed, a Github Action
will run across your changes and do some initial checks and linting.
These checks run
very quickly. Please check the results. We would like these checks to
pass before we
even continue reviewing your changes.
-->
#### Is this a new chart
No.
#### What this PR does / why we need it:
Bumps the agent and client.
#### Which issue this PR fixes
*(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)`
format, will close that issue when PR gets merged)*
- fixes #
#### Special notes for your reviewer:
#### Checklist
[Place an '[x]' (no spaces) in all applicable fields. Please remove
unrelated fields.]
- [x] Chart Version bumped
- [x] Variables are documented in the README.md
- [x] Title of the PR starts with chart name (e.g. `[mychartname]`)
Signed-off-by: kpattaswamy <[email protected]>
Copy file name to clipboardexpand all lines: charts/nr-ebpf-agent/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ Options that can be defined globally include `affinity`, `nodeSelector`, `tolera
90
90
| ebpfAgent.containerSecurityContext | object |`{}`| Sets ebpfAgent pod containerSecurityContext. Overrides `containerSecurityContext` and `global.securityContext.container`|
91
91
| ebpfAgent.image.pullPolicy | string |`"IfNotPresent"`| The pull policy is defaulted to IfNotPresent, which skips pulling an image if it already exists. If pullPolicy is defined without a specific value, it is also set to Always. |
92
92
| ebpfAgent.image.repository | string |`"docker.io/newrelic/newrelic-ebpf-agent"`| eBPF agent image to be deployed. |
93
-
| ebpfAgent.image.tag | string |`"agent-nr-ebpf-agent_0.0.7"`| The tag of the eBPF agent image to be deployed. |
93
+
| ebpfAgent.image.tag | string |`"agent-nr-ebpf-agent_0.0.8"`| The tag of the eBPF agent image to be deployed. |
94
94
| ebpfAgent.podAnnotations | object |`{}`| Sets ebpfAgent pod Annotations. Overrides `podAnnotations` and `global.podAnnotations`|
95
95
| ebpfAgent.podSecurityContext | object |`{}`| Sets ebpfAgent pod podSecurityContext. Overrides `podSecurityContext` and `global.securityContext.pod`|
96
96
| ebpfAgent.resources.limits.memory | string |`"2Gi"`| Max memory allocated to the container. |
@@ -99,7 +99,7 @@ Options that can be defined globally include `affinity`, `nodeSelector`, `tolera
99
99
| ebpfAgent.tolerations | list |`[]`| Sets ebpfAgent pod tolerations. Overrides `tolerations` and `global.tolerations`|
100
100
| ebpfClient.image.pullPolicy | string |`"IfNotPresent"`| The pull policy is defaulted to IfNotPresent, which skips pulling an image if it already exists. If pullPolicy is defined without a specific value, it is set to Always. |
101
101
| ebpfClient.image.repository | string |`"docker.io/newrelic/newrelic-ebpf-agent"`| eBPF client image to be deployed. |
102
-
| ebpfClient.image.tag | string |`"client-nr-ebpf-client_0.0.11"`| The tag of the eBPF client image to be deployed. |
102
+
| ebpfClient.image.tag | string |`"client-nr-ebpf-client_0.0.12"`| The tag of the eBPF client image to be deployed. |
103
103
| ebpfClient.resources.limits.memory | string |`"100Mi"`| Max memory allocated to the container. |
104
104
| ebpfClient.resources.requests.cpu | string |`"50m"`| Min CPU allocated to the container. |
105
105
| ebpfClient.resources.requests.memory | string |`"50Mi"`| Min memory allocated to the container. |
Copy file name to clipboardexpand all lines: charts/nr-ebpf-agent/values.yaml
+3-3
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ customSecretLicenseKey: ""
10
10
# -- If using a customSecretLicenseKey, you must supply your region "US"/"EU". Otherwise, leave this value as an empty string.
11
11
region: ""
12
12
# -- Enable to export data to NR's Staging otel endpoint (staging-otlp.nr-data.net:4317).
13
-
nrStaging:false
13
+
nrStaging:
14
14
# -- Configures the agent to send all data through the proxy specified via the otel collector.
15
15
proxy: ""
16
16
# -- Drop data when service names map to an IP address.
@@ -103,7 +103,7 @@ ebpfAgent:
103
103
# -- The pull policy is defaulted to IfNotPresent, which skips pulling an image if it already exists. If pullPolicy is defined without a specific value, it is also set to Always.
104
104
pullPolicy: IfNotPresent
105
105
# -- The tag of the eBPF agent image to be deployed.
106
-
tag: agent-nr-ebpf-agent_0.0.7
106
+
tag: agent-nr-ebpf-agent_0.0.8
107
107
resources:
108
108
limits:
109
109
# -- Max memory allocated to the container.
@@ -132,7 +132,7 @@ ebpfClient:
132
132
# -- The pull policy is defaulted to IfNotPresent, which skips pulling an image if it already exists. If pullPolicy is defined without a specific value, it is set to Always.
133
133
pullPolicy: IfNotPresent
134
134
# -- The tag of the eBPF client image to be deployed.
0 commit comments