From 4f06d8e873ad55106fd8ed6d096f0f4db5472685 Mon Sep 17 00:00:00 2001 From: Robert Fratto Date: Tue, 22 Jun 2021 13:08:06 -0400 Subject: [PATCH] prepare for v0.16.1 release (#679) --- CHANGELOG.md | 2 ++ docs/configuration-reference.md | 2 +- docs/getting-started.md | 4 ++-- docs/operator/getting-started.md | 2 +- production/README.md | 2 +- production/kubernetes/agent-bare.yaml | 2 +- production/kubernetes/agent-loki.yaml | 2 +- production/kubernetes/agent-sigv4.yaml | 4 ++-- production/kubernetes/agent-tempo.yaml | 2 +- production/kubernetes/agent.yaml | 4 ++-- production/kubernetes/build/lib/version.libsonnet | 2 +- production/kubernetes/install-bare.sh | 2 +- production/kubernetes/install-loki.sh | 2 +- production/kubernetes/install-sigv4.sh | 2 +- production/kubernetes/install-tempo.sh | 2 +- production/kubernetes/install.sh | 2 +- production/tanka/grafana-agent/v1/main.libsonnet | 4 ++-- 17 files changed, 22 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58366de61221..c80c8966c706 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Main (unreleased) +# v0.16.1 (2021-06-22) + - [BUGFIX] Fix issue where replaying a WAL caused incorrect metrics to be sent over remote write. (@rfratto) diff --git a/docs/configuration-reference.md b/docs/configuration-reference.md index 42ce5daf6756..57a6c0cc8dfa 100644 --- a/docs/configuration-reference.md +++ b/docs/configuration-reference.md @@ -2644,7 +2644,7 @@ metadata: name: agent spec: containers: - - image: grafana/agent:v0.16.0 + - image: grafana/agent:v0.16.1 name: agent args: - --config.file=/etc/agent-config/agent.yaml diff --git a/docs/getting-started.md b/docs/getting-started.md index 871cd845dac5..e1112da0323d 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -51,7 +51,7 @@ Currently, there are five ways to install the agent: ### Docker Container ``` -docker pull grafana/agent:v0.16.0 +docker pull grafana/agent:v0.16.1 ``` ### Kubernetes Install Script @@ -287,7 +287,7 @@ path of your Agent's YAML configuration file. docker run \ -v /tmp/agent:/etc/agent \ -v /path/to/config.yaml:/etc/agent/agent.yaml \ - grafana/agent:v0.16.0 + grafana/agent:v0.16.1 ``` ### Locally diff --git a/docs/operator/getting-started.md b/docs/operator/getting-started.md index 43fc446de836..b8a75136513c 100644 --- a/docs/operator/getting-started.md +++ b/docs/operator/getting-started.md @@ -49,7 +49,7 @@ spec: serviceAccountName: grafana-agent-operator containers: - name: operator - image: grafana/agent-operator:v0.16.0 + image: grafana/agent-operator:v0.16.1 --- apiVersion: v1 diff --git a/production/README.md b/production/README.md index 1a4c13994e87..ce3ca8266a67 100644 --- a/production/README.md +++ b/production/README.md @@ -41,7 +41,7 @@ directory on your host that you want the agent to store its WAL. docker run \ -v /tmp/agent:/etc/agent/data \ -v /path/to/config.yaml:/etc/agent/agent.yaml \ - grafana/agent:v0.16.0 + grafana/agent:v0.16.1 ``` ## Running the Agent locally diff --git a/production/kubernetes/agent-bare.yaml b/production/kubernetes/agent-bare.yaml index 6ae3adf3ca26..40caab9ee254 100644 --- a/production/kubernetes/agent-bare.yaml +++ b/production/kubernetes/agent-bare.yaml @@ -61,7 +61,7 @@ spec: - -config.file=/etc/agent/agent.yaml command: - /bin/agent - image: grafana/agent:v0.16.0 + image: grafana/agent:v0.16.1 imagePullPolicy: IfNotPresent name: agent ports: diff --git a/production/kubernetes/agent-loki.yaml b/production/kubernetes/agent-loki.yaml index 87c4ce5dd1fa..c785754ffd6b 100644 --- a/production/kubernetes/agent-loki.yaml +++ b/production/kubernetes/agent-loki.yaml @@ -328,7 +328,7 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: grafana/agent:v0.16.0 + image: grafana/agent:v0.16.1 imagePullPolicy: IfNotPresent name: agent ports: diff --git a/production/kubernetes/agent-sigv4.yaml b/production/kubernetes/agent-sigv4.yaml index 7d969fd6cb61..cf73a868ef5d 100644 --- a/production/kubernetes/agent-sigv4.yaml +++ b/production/kubernetes/agent-sigv4.yaml @@ -278,7 +278,7 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: grafana/agent:v0.16.0 + image: grafana/agent:v0.16.1 imagePullPolicy: IfNotPresent name: agent ports: @@ -329,7 +329,7 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: grafana/agent:v0.16.0 + image: grafana/agent:v0.16.1 imagePullPolicy: IfNotPresent name: agent ports: diff --git a/production/kubernetes/agent-tempo.yaml b/production/kubernetes/agent-tempo.yaml index ee2c70ef1f03..9daad11008c1 100644 --- a/production/kubernetes/agent-tempo.yaml +++ b/production/kubernetes/agent-tempo.yaml @@ -169,7 +169,7 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: grafana/agent:v0.16.0 + image: grafana/agent:v0.16.1 imagePullPolicy: IfNotPresent name: agent ports: diff --git a/production/kubernetes/agent.yaml b/production/kubernetes/agent.yaml index d32b044962fe..bb2df79210d5 100644 --- a/production/kubernetes/agent.yaml +++ b/production/kubernetes/agent.yaml @@ -278,7 +278,7 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: grafana/agent:v0.16.0 + image: grafana/agent:v0.16.1 imagePullPolicy: IfNotPresent name: agent ports: @@ -329,7 +329,7 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: grafana/agent:v0.16.0 + image: grafana/agent:v0.16.1 imagePullPolicy: IfNotPresent name: agent ports: diff --git a/production/kubernetes/build/lib/version.libsonnet b/production/kubernetes/build/lib/version.libsonnet index fd66b87f0201..97cf3e42de1f 100644 --- a/production/kubernetes/build/lib/version.libsonnet +++ b/production/kubernetes/build/lib/version.libsonnet @@ -1 +1 @@ -'grafana/agent:v0.16.0' +'grafana/agent:v0.16.1' diff --git a/production/kubernetes/install-bare.sh b/production/kubernetes/install-bare.sh index e8944dd25fbf..1adce3f5cf9b 100644 --- a/production/kubernetes/install-bare.sh +++ b/production/kubernetes/install-bare.sh @@ -17,7 +17,7 @@ check_installed() { check_installed curl check_installed envsubst -MANIFEST_BRANCH=v0.16.0 +MANIFEST_BRANCH=v0.16.1 MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-bare.yaml} NAMESPACE=${NAMESPACE:-default} diff --git a/production/kubernetes/install-loki.sh b/production/kubernetes/install-loki.sh index 375f2ce5e737..f5b5126bc5d9 100644 --- a/production/kubernetes/install-loki.sh +++ b/production/kubernetes/install-loki.sh @@ -31,7 +31,7 @@ check_installed() { check_installed curl check_installed envsubst -MANIFEST_BRANCH=v0.16.0 +MANIFEST_BRANCH=v0.16.1 MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-loki.yaml} NAMESPACE=${NAMESPACE:-default} diff --git a/production/kubernetes/install-sigv4.sh b/production/kubernetes/install-sigv4.sh index 251bec88a427..dfc16de1e603 100644 --- a/production/kubernetes/install-sigv4.sh +++ b/production/kubernetes/install-sigv4.sh @@ -30,7 +30,7 @@ check_installed() { check_installed curl check_installed envsubst -MANIFEST_BRANCH=v0.16.0 +MANIFEST_BRANCH=v0.16.1 MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-sigv4.yaml} NAMESPACE=${NAMESPACE:-default} ROLE_ARN=${ROLE_ARN:-} diff --git a/production/kubernetes/install-tempo.sh b/production/kubernetes/install-tempo.sh index fcc89aa80dc0..aba6480a955c 100644 --- a/production/kubernetes/install-tempo.sh +++ b/production/kubernetes/install-tempo.sh @@ -31,7 +31,7 @@ check_installed() { check_installed curl check_installed envsubst -MANIFEST_BRANCH=v0.16.0 +MANIFEST_BRANCH=v0.16.1 MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-tempo.yaml} NAMESPACE=${NAMESPACE:-default} diff --git a/production/kubernetes/install.sh b/production/kubernetes/install.sh index 35ddea792f19..6ac1b2c10f62 100644 --- a/production/kubernetes/install.sh +++ b/production/kubernetes/install.sh @@ -32,7 +32,7 @@ check_installed() { check_installed curl check_installed envsubst -MANIFEST_BRANCH=v0.16.0 +MANIFEST_BRANCH=v0.16.1 MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent.yaml} NAMESPACE=${NAMESPACE:-default} diff --git a/production/tanka/grafana-agent/v1/main.libsonnet b/production/tanka/grafana-agent/v1/main.libsonnet index f0e961e8b506..a42703855bd8 100644 --- a/production/tanka/grafana-agent/v1/main.libsonnet +++ b/production/tanka/grafana-agent/v1/main.libsonnet @@ -15,8 +15,8 @@ local service = k.core.v1.service; (import './lib/tempo.libsonnet') + { _images:: { - agent: 'grafana/agent:v0.16.0', - agentctl: 'grafana/agentctl:v0.16.0', + agent: 'grafana/agent:v0.16.1', + agentctl: 'grafana/agentctl:v0.16.1', }, // new creates a new DaemonSet deployment of the grafana-agent. By default,