Skip to content

Commit 1679173

Browse files
authored
use correct version of the image (#65)
1 parent ba0616e commit 1679173

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
---
1111

12-
## 2.1.0
12+
## 2.2.0
1313

1414
### Changed
1515

1616
- The base image of `newrelic/infrastructure-k8s` has been updated to `2.2.1`.
1717
This base image has fixed an issue where `nrjmx` was not properly running due to the bundled java version.
1818
More info regarding all the integration upgraded can be found in the [release notes of the base image](https://github.com/newrelic/infrastructure-bundle/releases/tag/2.2.1).
1919

20+
## 2.1.0
21+
22+
### Changed
23+
24+
- Added aggregate cpu and memory requests for nodes
25+
2026
## 2.0.0
2127

2228
### Changed

deploy/newrelic-infra-unprivileged.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
serviceAccountName: newrelic
5959
containers:
6060
- name: newrelic-infra
61-
image: newrelic/infrastructure-k8s:2.1.0-unprivileged
61+
image: newrelic/infrastructure-k8s:2.2.0-unprivileged
6262
resources:
6363
limits:
6464
memory: 150M

deploy/newrelic-infra.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
dnsPolicy: ClusterFirstWithHostNet
6161
containers:
6262
- name: newrelic-infra
63-
image: newrelic/infrastructure-k8s:2.1.0
63+
image: newrelic/infrastructure-k8s:2.2.0
6464
securityContext:
6565
privileged: true
6666
resources:

src/kubernetes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const (
7070
defaultDiscoveryCacheTTL = time.Hour
7171

7272
integrationName = "com.newrelic.kubernetes"
73-
integrationVersion = "2.1.0"
73+
integrationVersion = "2.2.0"
7474
nodeNameEnvVar = "NRK8S_NODE_NAME"
7575
)
7676

0 commit comments

Comments
 (0)