Skip to content

Commit a28b624

Browse files
authored
Update versions and changelog in preparation for v0.31.2 (grafana#2950)
1 parent 541cf0e commit a28b624

File tree

18 files changed

+29
-23
lines changed

18 files changed

+29
-23
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ Main (unreleased)
5757
- Use Go 1.20 for builds. Official release binaries are still produced using Go
5858
1.19. (@rfratto)
5959

60+
v0.31.2 (2023-02-08)
61+
--------------------
62+
63+
### Other changes
64+
6065
- In the Agent Operator, upgrade the `prometheus-config-reloader` dependency
6166
from version 0.47.0 to version 0.62.0. (@ptodev)
6267

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ docker run \
2626
-v "/proc:/host/proc:ro,rslave" \
2727
-v /tmp/agent:/etc/agent \
2828
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
29-
grafana/agent:v0.31.1 \
29+
grafana/agent:v0.31.2 \
3030
--config.file=/etc/agent-config/agent.yaml
3131
```
3232

@@ -65,7 +65,7 @@ metadata:
6565
name: agent
6666
spec:
6767
containers:
68-
- image: grafana/agent:v0.31.1
68+
- image: grafana/agent:v0.31.2
6969
name: agent
7070
args:
7171
- --config.file=/etc/agent-config/agent.yaml

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker run \
1818
-v "/proc:/proc:ro" \
1919
-v /tmp/agent:/etc/agent \
2020
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
21-
grafana/agent:v0.31.1 \
21+
grafana/agent:v0.31.2 \
2222
--config.file=/etc/agent-config/agent.yaml
2323
```
2424

@@ -35,7 +35,7 @@ metadata:
3535
name: agent
3636
spec:
3737
containers:
38-
- image: grafana/agent:v0.31.1
38+
- image: grafana/agent:v0.31.2
3939
name: agent
4040
args:
4141
- --config.file=/etc/agent-config/agent.yaml

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To deploy the `GrafanaAgent` resource:
5353
labels:
5454
app: grafana-agent
5555
spec:
56-
image: grafana/agent:v0.31.1
56+
image: grafana/agent:v0.31.2
5757
logLevel: info
5858
serviceAccountName: grafana-agent
5959
metrics:

docs/sources/operator/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ To install Agent Operator:
7373
serviceAccountName: grafana-agent-operator
7474
containers:
7575
- name: operator
76-
image: grafana/agent-operator:v0.31.1
76+
image: grafana/agent-operator:v0.31.2
7777
args:
7878
- --kubelet-service=default/kubelet
7979
---

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Install Grafana Agent and get it up and running on Docker.
1919
docker run \
2020
-v /tmp/agent:/etc/agent/data \
2121
-v /path/to/config.yaml:/etc/agent/agent.yaml \
22-
grafana/agent:v0.31.1
22+
grafana/agent:v0.31.2
2323
```
2424

2525
2. Replace `/tmp/agent` with the folder you want to store WAL data in.
@@ -38,7 +38,7 @@ container through a bind mount for the flags to work properly.
3838
docker run ^
3939
-v c:\grafana-agent-data:c:\etc\grafana-agent\data ^
4040
-v c:\workspace\config\grafana-agent:c:\etc\grafana-agent ^
41-
grafana/agent:v0.31.1-windows
41+
grafana/agent:v0.31.2-windows
4242
```
4343
4444
2. Replace `c:\grafana-agent-data` with the folder you want to store WAL data in.

pkg/operator/defaults.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ var (
3838
"v0.30.2",
3939
"v0.31.0",
4040
"v0.31.1",
41+
"v0.31.2",
4142
// NOTE(rfratto): when performing an upgrade, add the newest version above instead of changing the existing reference.
4243
}
4344

production/grafanacloud-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ PACKAGE_SYSTEM=${PACKAGE_SYSTEM:=}
5050
#
5151
# Global constants.
5252
#
53-
RELEASE_VERSION="v0.31.1"
53+
RELEASE_VERSION="v0.31.2"
5454

5555
# The DEB and RPM urls don't include the `v` version prefix in the file names,
5656
# so we trim it out using ${RELEASE_VERSION#v} below.

production/kubernetes/agent-bare.yaml

Lines changed: 1 addition & 1 deletion
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.31.1
86+
image: grafana/agent:v0.31.2
8787
imagePullPolicy: IfNotPresent
8888
name: grafana-agent
8989
ports:

production/kubernetes/agent-loki.yaml

Lines changed: 1 addition & 1 deletion
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.31.1
68+
image: grafana/agent:v0.31.2
6969
imagePullPolicy: IfNotPresent
7070
name: grafana-agent-logs
7171
ports:

0 commit comments

Comments
 (0)