From 41eedb088d2bb40f4a9e4b08ebcfe4bf3c1161ad Mon Sep 17 00:00:00 2001 From: jorik Date: Thu, 13 Aug 2020 15:28:41 +0200 Subject: [PATCH] Release 1.26.0 (#15) --- CHANGELOG.md | 6 ++++++ Dockerfile | 2 +- deploy/newrelic-infra-unprivileged.yaml | 2 +- deploy/newrelic-infra.yaml | 2 +- src/kubernetes.go | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1ae0287be..95e884a547 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Dockerfile b/Dockerfile index 6e6360fe10..f1504816b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/deploy/newrelic-infra-unprivileged.yaml b/deploy/newrelic-infra-unprivileged.yaml index 656282393c..2480f63800 100644 --- a/deploy/newrelic-infra-unprivileged.yaml +++ b/deploy/newrelic-infra-unprivileged.yaml @@ -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 diff --git a/deploy/newrelic-infra.yaml b/deploy/newrelic-infra.yaml index 1549c335b7..35d2fc7efd 100644 --- a/deploy/newrelic-infra.yaml +++ b/deploy/newrelic-infra.yaml @@ -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: diff --git a/src/kubernetes.go b/src/kubernetes.go index 2abac35c13..0e81c03156 100644 --- a/src/kubernetes.go +++ b/src/kubernetes.go @@ -70,7 +70,7 @@ const ( defaultDiscoveryCacheTTL = time.Hour integrationName = "com.newrelic.kubernetes" - integrationVersion = "1.25.0" + integrationVersion = "1.26.0" nodeNameEnvVar = "NRK8S_NODE_NAME" )