Skip to content

Commit c257f9c

Browse files
authored
Update version for patch release v0.36.2 (grafana#5276)
* Preparations for v0.36.2 * Adding v0.36.2 to the changelog * Updating version references throughout the repo
1 parent 35d1103 commit c257f9c

File tree

16 files changed

+23
-23
lines changed

16 files changed

+23
-23
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To deploy the `GrafanaAgent` resource:
6161
labels:
6262
app: grafana-agent
6363
spec:
64-
image: grafana/agent:v0.36.1
64+
image: grafana/agent:v0.36.2
6565
integrations:
6666
selector:
6767
matchLabels:

docs/sources/operator/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To install Agent Operator:
7878
serviceAccountName: grafana-agent-operator
7979
containers:
8080
- name: operator
81-
image: grafana/agent-operator:v0.36.1
81+
image: grafana/agent-operator:v0.36.2
8282
args:
8383
- --kubelet-service=default/kubelet
8484
---

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ docker run \
2929
-v "/proc:/host/proc:ro,rslave" \
3030
-v /tmp/agent:/etc/agent \
3131
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
32-
grafana/agent:v0.36.1 \
32+
grafana/agent:v0.36.2 \
3333
--config.file=/etc/agent-config/agent.yaml
3434
```
3535

@@ -69,7 +69,7 @@ metadata:
6969
name: agent
7070
spec:
7171
containers:
72-
- image: grafana/agent:v0.36.1
72+
- image: grafana/agent:v0.36.2
7373
name: agent
7474
args:
7575
- --config.file=/etc/agent-config/agent.yaml

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ docker run \
2121
-v "/proc:/proc:ro" \
2222
-v /tmp/agent:/etc/agent \
2323
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
24-
grafana/agent:v0.36.1 \
24+
grafana/agent:v0.36.2 \
2525
--config.file=/etc/agent-config/agent.yaml
2626
```
2727

@@ -38,7 +38,7 @@ metadata:
3838
name: agent
3939
spec:
4040
containers:
41-
- image: grafana/agent:v0.36.1
41+
- image: grafana/agent:v0.36.2
4242
name: agent
4343
args:
4444
- --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
@@ -33,7 +33,7 @@ To run a Grafana Agent Docker container on Linux, run the following command in a
3333
docker run \
3434
-v WAL_DATA_DIRECTORY:/etc/agent/data \
3535
-v CONFIG_FILE_PATH:/etc/agent/agent.yaml \
36-
grafana/agent:v0.36.1
36+
grafana/agent:v0.36.2
3737
```
3838

3939
Replace `CONFIG_FILE_PATH` with the configuration file path on your Linux host system.
@@ -50,7 +50,7 @@ To run a Grafana Agent Docker container on Windows, run the following command in
5050
docker run ^
5151
-v WAL_DATA_DIRECTORY:C:\etc\grafana-agent\data ^
5252
-v CONFIG_FILE_PATH:C:\etc\grafana-agent ^
53-
grafana/agent:v0.36.1-windows
53+
grafana/agent:v0.36.2-windows
5454
```
5555

5656
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.36.1"
5+
DefaultAgentVersion = "v0.36.2"
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.36.1
86+
image: grafana/agent:v0.36.2
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.36.1
68+
image: grafana/agent:v0.36.2
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.36.1
117+
image: grafana/agent:v0.36.2
118118
imagePullPolicy: IfNotPresent
119119
name: grafana-agent-traces
120120
ports:
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
'grafana/agent:v0.36.1'
1+
'grafana/agent:v0.36.2'

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.36.1',
27-
agent_operator: 'grafana/agent-operator:v0.36.1',
26+
agent: 'grafana/agent:v0.36.2',
27+
agent_operator: 'grafana/agent-operator:v0.36.2',
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.36.1
28+
MANIFEST_BRANCH=v0.36.2
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.36.1
375+
image: grafana/agent-operator:v0.36.2
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.36.1
439+
image: grafana/agent:v0.36.2
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.36.1',
19-
agentctl: 'grafana/agentctl:v0.36.1',
18+
agent: 'grafana/agent:v0.36.2',
19+
agentctl: 'grafana/agentctl:v0.36.2',
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.36.1',
15-
agentctl: 'grafana/agentctl:v0.36.1',
14+
agent: 'grafana/agent:v0.36.2',
15+
agentctl: 'grafana/agentctl:v0.36.2',
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.36.1',
17+
image: 'grafana/agentctl:v0.36.2',
1818
schedule: '*/5 * * * *',
1919
configs: [],
2020
} + config,

0 commit comments

Comments
 (0)