Skip to content

Commit

Permalink
feat(baseImage): updating base image (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
paologallinaharbur authored Dec 9, 2020
1 parent 218825f commit 5fd7d49
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## 2.0.0

### Changed

- The base image of `newrelic/infrastructure-k8s` has been updated to `2.0.0`.
That base image is bundling the integration `nri-nginx` `3.0.2` that contains a breaking change.
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.0.0).


## 1.26.9

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG IMAGE_NAME=newrelic/infrastructure-bundle
ARG IMAGE_TAG=1.6.0
ARG IMAGE_TAG=2.0.0
ARG MODE=normal

FROM $IMAGE_NAME:$IMAGE_TAG AS base
Expand Down
2 changes: 1 addition & 1 deletion deploy/newrelic-infra-unprivileged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
serviceAccountName: newrelic
containers:
- name: newrelic-infra
image: newrelic/infrastructure-k8s:1.26.9-unprivileged
image: newrelic/infrastructure-k8s:2.0.0-unprivileged
resources:
limits:
memory: 150M
Expand Down
2 changes: 1 addition & 1 deletion deploy/newrelic-infra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: newrelic-infra
image: newrelic/infrastructure-k8s:1.26.9
image: newrelic/infrastructure-k8s:2.0.0
securityContext:
privileged: true
resources:
Expand Down
2 changes: 1 addition & 1 deletion src/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const (
defaultDiscoveryCacheTTL = time.Hour

integrationName = "com.newrelic.kubernetes"
integrationVersion = "1.26.9"
integrationVersion = "2.0.0"
nodeNameEnvVar = "NRK8S_NODE_NAME"
)

Expand Down

0 comments on commit 5fd7d49

Please sign in to comment.