Skip to content

Commit

Permalink
Release 1.26.0 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorik authored Aug 13, 2020
1 parent 24ffb8f commit 41eedb0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## 1.26.0

### Changed
- When querying the summary endpoint from Kubelet to get the Node or Pod
network metrics, if the default network interface is not eth0 then summary
endpoint for Kubelet doesn't return the metrics as we expect them. We rely on
Expand Down Expand Up @@ -92,6 +96,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
For Pods, this issue is mainly present when using hostNetwok since they
shared the same network interfaces with the Node.

- Upgraded Docker base image `newrelic/infrastructure-bundle` to v1.4.2.
For more information on the release please see the [New Relic Infrastructure Bundle release notes](https://github.com/newrelic/infrastructure-bundle/releases/tag/1.4.2).
## 1.25.0

### Added
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.4.1
ARG IMAGE_TAG=1.4.2
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.25.0-unprivileged
image: newrelic/infrastructure-k8s:1.26.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.25.0
image: newrelic/infrastructure-k8s:1.26.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.25.0"
integrationVersion = "1.26.0"
nodeNameEnvVar = "NRK8S_NODE_NAME"
)

Expand Down

0 comments on commit 41eedb0

Please sign in to comment.