Skip to content

Commit d4b1fcc

Browse files
authored
all: update version string everywhere for v0.37.1 (grafana#5429)
Signed-off-by: Paschalis Tsilias <[email protected]> (cherry picked from commit 97d7604)
1 parent 2da3ffe commit d4b1fcc

File tree

17 files changed

+30
-22
lines changed

17 files changed

+30
-22
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ This document contains a historical list of changes between releases. Only
77
changes that impact end-user behavior are listed; changes to documentation or
88
internal API changes are not present.
99

10+
v0.37.1 (2023-10-10)
11+
-----------------
12+
13+
### Bugfixes
14+
15+
- Fix the initialization of the default namespaces map for the operator and the
16+
loki.source.kubernetes component. (@wildum)
17+
1018
v0.37.0 (2023-10-10)
1119
-----------------
1220

docs/sources/operator/deploy-agent-operator-resources.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To deploy the `GrafanaAgent` resource:
6262
labels:
6363
app: grafana-agent
6464
spec:
65-
image: grafana/agent:v0.37.0
65+
image: grafana/agent:v0.37.1
6666
integrations:
6767
selector:
6868
matchLabels:

docs/sources/operator/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ To install Agent Operator:
7979
serviceAccountName: grafana-agent-operator
8080
containers:
8181
- name: operator
82-
image: grafana/agent-operator:v0.37.0
82+
image: grafana/agent-operator:v0.37.1
8383
args:
8484
- --kubelet-service=default/kubelet
8585
---

docs/sources/static/configuration/integrations/node-exporter-config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ docker run \
3030
-v "/proc:/host/proc:ro,rslave" \
3131
-v /tmp/agent:/etc/agent \
3232
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
33-
grafana/agent:v0.37.0 \
33+
grafana/agent:v0.37.1 \
3434
--config.file=/etc/agent-config/agent.yaml
3535
```
3636

docs/sources/static/configuration/integrations/process-exporter-config.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ docker run \
2222
-v "/proc:/proc:ro" \
2323
-v /tmp/agent:/etc/agent \
2424
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
25-
grafana/agent:v0.37.0 \
25+
grafana/agent:v0.37.1 \
2626
--config.file=/etc/agent-config/agent.yaml
2727
```
2828

@@ -39,7 +39,7 @@ metadata:
3939
name: agent
4040
spec:
4141
containers:
42-
- image: grafana/agent:v0.37.0
42+
- image: grafana/agent:v0.37.1
4343
name: agent
4444
args:
4545
- --config.file=/etc/agent-config/agent.yaml

docs/sources/static/set-up/install/install-agent-docker.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To run a Grafana Agent Docker container on Linux, run the following command in a
3434
docker run \
3535
-v WAL_DATA_DIRECTORY:/etc/agent/data \
3636
-v CONFIG_FILE_PATH:/etc/agent/agent.yaml \
37-
grafana/agent:v0.37.0
37+
grafana/agent:v0.37.1
3838
```
3939

4040
Replace `CONFIG_FILE_PATH` with the configuration file path on your Linux host system.
@@ -51,7 +51,7 @@ To run a Grafana Agent Docker container on Windows, run the following command in
5151
docker run ^
5252
-v WAL_DATA_DIRECTORY:C:\etc\grafana-agent\data ^
5353
-v CONFIG_FILE_PATH:C:\etc\grafana-agent ^
54-
grafana/agent:v0.37.0-windows
54+
grafana/agent:v0.37.1-windows
5555
```
5656

5757
Replace the following:

pkg/operator/defaults.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package operator
22

33
// Supported versions of the Grafana Agent.
44
var (
5-
DefaultAgentVersion = "v0.37.0"
5+
DefaultAgentVersion = "v0.37.1"
66
DefaultAgentBaseImage = "grafana/agent"
77
DefaultAgentImage = DefaultAgentBaseImage + ":" + DefaultAgentVersion
88
)

production/kubernetes/agent-bare.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ spec:
8383
valueFrom:
8484
fieldRef:
8585
fieldPath: spec.nodeName
86-
image: grafana/agent:v0.37.0
86+
image: grafana/agent:v0.37.1
8787
imagePullPolicy: IfNotPresent
8888
name: grafana-agent
8989
ports:

production/kubernetes/agent-loki.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ spec:
6565
valueFrom:
6666
fieldRef:
6767
fieldPath: spec.nodeName
68-
image: grafana/agent:v0.37.0
68+
image: grafana/agent:v0.37.1
6969
imagePullPolicy: IfNotPresent
7070
name: grafana-agent-logs
7171
ports:

production/kubernetes/agent-traces.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ spec:
114114
valueFrom:
115115
fieldRef:
116116
fieldPath: spec.nodeName
117-
image: grafana/agent:v0.37.0
117+
image: grafana/agent:v0.37.1
118118
imagePullPolicy: IfNotPresent
119119
name: grafana-agent-traces
120120
ports:
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
'grafana/agent:v0.37.0'
1+
'grafana/agent:v0.37.1'

production/kubernetes/build/templates/operator/main.jsonnet

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ local ksm = import 'kube-state-metrics/kube-state-metrics.libsonnet';
2323
local this = self,
2424

2525
_images:: {
26-
agent: 'grafana/agent:v0.37.0',
27-
agent_operator: 'grafana/agent-operator:v0.37.0',
26+
agent: 'grafana/agent:v0.37.1',
27+
agent_operator: 'grafana/agent-operator:v0.37.1',
2828
ksm: 'registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.5.0',
2929
},
3030

production/kubernetes/install-bare.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ check_installed() {
2525
check_installed curl
2626
check_installed envsubst
2727

28-
MANIFEST_BRANCH=v0.37.0
28+
MANIFEST_BRANCH=v0.37.1
2929
MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-bare.yaml}
3030
NAMESPACE=${NAMESPACE:-default}
3131

production/operator/templates/agent-operator.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ spec:
372372
containers:
373373
- args:
374374
- --kubelet-service=default/kubelet
375-
image: grafana/agent-operator:v0.37.0
375+
image: grafana/agent-operator:v0.37.1
376376
imagePullPolicy: IfNotPresent
377377
name: grafana-agent-operator
378378
serviceAccount: grafana-agent-operator
@@ -436,7 +436,7 @@ metadata:
436436
name: grafana-agent
437437
namespace: ${NAMESPACE}
438438
spec:
439-
image: grafana/agent:v0.37.0
439+
image: grafana/agent:v0.37.1
440440
integrations:
441441
selector:
442442
matchLabels:

production/tanka/grafana-agent/v1/main.libsonnet

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ local service = k.core.v1.service;
1515
(import './lib/traces.libsonnet') +
1616
{
1717
_images:: {
18-
agent: 'grafana/agent:v0.37.0',
19-
agentctl: 'grafana/agentctl:v0.37.0',
18+
agent: 'grafana/agent:v0.37.1',
19+
agentctl: 'grafana/agentctl:v0.37.1',
2020
},
2121

2222
// new creates a new DaemonSet deployment of the grafana-agent. By default,

production/tanka/grafana-agent/v2/internal/base.libsonnet

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ function(name='grafana-agent', namespace='') {
1111
local this = self,
1212

1313
_images:: {
14-
agent: 'grafana/agent:v0.37.0',
15-
agentctl: 'grafana/agentctl:v0.37.0',
14+
agent: 'grafana/agent:v0.37.1',
15+
agentctl: 'grafana/agentctl:v0.37.1',
1616
},
1717
_config:: {
1818
name: name,

production/tanka/grafana-agent/v2/internal/syncer.libsonnet

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function(
1414
) {
1515
local _config = {
1616
api: error 'api must be set',
17-
image: 'grafana/agentctl:v0.37.0',
17+
image: 'grafana/agentctl:v0.37.1',
1818
schedule: '*/5 * * * *',
1919
configs: [],
2020
} + config,

0 commit comments

Comments
 (0)