From a64a06afad128d5b8b47b619437b6056da28c920 Mon Sep 17 00:00:00 2001 From: Antonio Dias Date: Wed, 23 Sep 2020 16:36:34 +0100 Subject: [PATCH] Release 1.26.4 --- CHANGELOG.md | 7 +++++++ deploy/newrelic-infra-unprivileged.yaml | 2 +- deploy/newrelic-infra.yaml | 2 +- src/kubernetes.go | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4dc95d6a0..ac307f21a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## 1.26.4 + +### Added + +- Added `restartCount` to containers in the `wainting` state + - In case the container is in a crash loop the restart count would not be shown + ## 1.26.3 ### Added diff --git a/deploy/newrelic-infra-unprivileged.yaml b/deploy/newrelic-infra-unprivileged.yaml index 9c9af8e283..a175fb94e1 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.26.3-unprivileged + image: newrelic/infrastructure-k8s:1.26.4-unprivileged resources: limits: memory: 150M diff --git a/deploy/newrelic-infra.yaml b/deploy/newrelic-infra.yaml index 8f66331631..5711a68435 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.26.3 + image: newrelic/infrastructure-k8s:1.26.4 securityContext: privileged: true resources: diff --git a/src/kubernetes.go b/src/kubernetes.go index 80ef8f8b69..c296f0e19d 100644 --- a/src/kubernetes.go +++ b/src/kubernetes.go @@ -70,7 +70,7 @@ const ( defaultDiscoveryCacheTTL = time.Hour integrationName = "com.newrelic.kubernetes" - integrationVersion = "1.26.3" + integrationVersion = "1.26.4" nodeNameEnvVar = "NRK8S_NODE_NAME" )