Skip to content

Commit

Permalink
Release 1.24.0
Browse files Browse the repository at this point in the history
Release 1.24.0
  • Loading branch information
jorik authored Jul 23, 2020
2 parents aee9d23 + 4693a7e commit 0f9b0de
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 21 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:
jobs:
test:
name: test
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -17,4 +17,13 @@ jobs:
with:
go-version: '^1.14.4'
- name: Run unit tests
run: make test
run: make test
lint:
name: Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v1
with:
version: v1.29
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## 1.24.0

### Changed
- Upgraded Docker base image `newrelic/infrastructure-bundle` to v1.4.0.
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.0).

## 1.23.1

### Fixed
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.3.9
ARG IMAGE_TAG=1.4.0
ARG MODE=normal

FROM $IMAGE_NAME:$IMAGE_TAG AS base
Expand Down
14 changes: 0 additions & 14 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,6 @@ pipeline {
cancelPreviousBuilds()
}
}
stage('CI') {
parallel {
stage('Linting and Validation') {
steps {
sh 'make lint'
}
}
stage('Unit Tests') {
steps {
sh 'make test'
}
}
}
}
stage('Building and pushing docker images') {
parallel {
stage('Integration') {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BINARY_NAME = nri-kubernetes
E2E_BINARY_NAME := $(BINARY_NAME)-e2e

GOVENDOR_VERSION = 1.0.8
GOLANGCILINT_VERSION = 1.13
GOLANGCILINT_VERSION = 1.29

.PHONY: all
all: build
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 @@ -62,7 +62,7 @@ spec:
serviceAccountName: newrelic
containers:
- name: newrelic-infra
image: newrelic/infrastructure-k8s:1.23.1-unprivileged
image: newrelic/infrastructure-k8s:1.24.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 @@ -64,7 +64,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: newrelic-infra
image: newrelic/infrastructure-k8s:1.23.1
image: newrelic/infrastructure-k8s:1.24.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 @@ -68,7 +68,7 @@ const (
defaultDiscoveryCacheTTL = time.Hour

integrationName = "com.newrelic.kubernetes"
integrationVersion = "1.23.1"
integrationVersion = "1.24.0"
nodeNameEnvVar = "NRK8S_NODE_NAME"
)

Expand Down

0 comments on commit 0f9b0de

Please sign in to comment.