Skip to content

Commit

Permalink
changelog and version updates for 0.34.3 (#4277)
Browse files Browse the repository at this point in the history
* changelog and version updates for 0.34.3

* one too many replaces

* not helm chart

* no 1.20.5
  • Loading branch information
captncraig authored and clayton-cornell committed Aug 14, 2023
1 parent 343079c commit c76a796
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 24 deletions.
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ Main (unreleased)

- Fix oauth default scope in `loki.source.azure_event_hubs`. (@akselleirv)

- Fix panic from improper startup ordering in `prometheus.operator.servicemonitors`. (@captncraig)

- Fixes a bug in conversion of OpenTelemetry histograms when exported to Prometheus. (@grcevski)

- Fix bug where `otelcol.exporter.otlphttp` ignores configuration for `traces_endpoint`, `metrics_endpoint`, and `logs_endpoint` attributes. (@SimoneFalzone)

- Fix issue in `prometheus.remote_write` where the `queue_config` and
Expand All @@ -83,9 +79,14 @@ Main (unreleased)
- Fix issue where flow mode exports labeled as "string or secret" could not be
used in a binary operation. (@rfratto)

### Other changes
v0.34.3 (2023-06-27)
--------------------

- Build with go version 1.20.5 (@captncraig)
### Bugfixes

- Fixes a bug in conversion of OpenTelemetry histograms when exported to Prometheus. (@grcevski)
- Enforce sha256 digest signing for rpms enabling installation on FIPS-enabled OSes. (@kfriedrich123)
- Fix panic from improper startup ordering in `prometheus.operator.servicemonitors`. (@captncraig)

v0.34.2 (2023-06-20)
--------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/operator/deploy-agent-operator-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ To deploy the `GrafanaAgent` resource:
labels:
app: grafana-agent
spec:
image: grafana/agent:v0.34.2
image: grafana/agent:v0.34.3
integrations:
selector:
matchLabels:
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/operator/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ To install Agent Operator:
serviceAccountName: grafana-agent-operator
containers:
- name: operator
image: grafana/agent-operator:v0.34.2
image: grafana/agent-operator:v0.34.3
args:
- --kubelet-service=default/kubelet
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ docker run \
-v "/proc:/host/proc:ro,rslave" \
-v /tmp/agent:/etc/agent \
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
grafana/agent:v0.34.2 \
grafana/agent:v0.34.3 \
--config.file=/etc/agent-config/agent.yaml
```

Expand Down Expand Up @@ -67,7 +67,7 @@ metadata:
name: agent
spec:
containers:
- image: grafana/agent:v0.34.2
- image: grafana/agent:v0.34.3
name: agent
args:
- --config.file=/etc/agent-config/agent.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ docker run \
-v "/proc:/proc:ro" \
-v /tmp/agent:/etc/agent \
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
grafana/agent:v0.34.2 \
grafana/agent:v0.34.3 \
--config.file=/etc/agent-config/agent.yaml
```

Expand All @@ -37,7 +37,7 @@ metadata:
name: agent
spec:
containers:
- image: grafana/agent:v0.34.2
- image: grafana/agent:v0.34.3
name: agent
args:
- --config.file=/etc/agent-config/agent.yaml
Expand Down
4 changes: 2 additions & 2 deletions docs/sources/static/set-up/install-agent-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Grafana Agent is available as a Docker container image on the following platform
docker run \
-v WAL_DATA_DIRECTORY:/etc/agent/data \
-v CONFIG_FILE_PATH:/etc/agent/agent.yaml \
grafana/agent:v0.34.2
grafana/agent:v0.34.3
```

- Replace `CONFIG_FILE_PATH` with the configuration file path on your Linux host system.
Expand All @@ -47,7 +47,7 @@ Grafana Agent is available as a Docker container image on the following platform
docker run ^
-v WAL_DATA_DIRECTORY:c:\etc\grafana-agent\data ^
-v CONFIG_FILE_PATH:c:\etc\grafana-agent ^
grafana/agent:v0.34.2-windows
grafana/agent:v0.34.3-windows
```

- Replace `CONFIG_FILE_PATH` with the configuration file path on your Windows host system.
Expand Down
2 changes: 1 addition & 1 deletion pkg/operator/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package operator

// Supported versions of the Grafana Agent.
var (
DefaultAgentVersion = "v0.34.2"
DefaultAgentVersion = "v0.34.3"
DefaultAgentBaseImage = "grafana/agent"
DefaultAgentImage = DefaultAgentBaseImage + ":" + DefaultAgentVersion
)
Expand Down
2 changes: 1 addition & 1 deletion production/kubernetes/build/lib/version.libsonnet
Original file line number Diff line number Diff line change
@@ -1 +1 @@
'grafana/agent:v0.34.2'
'grafana/agent:v0.34.3'
4 changes: 2 additions & 2 deletions production/kubernetes/build/templates/operator/main.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ local ksm = import 'kube-state-metrics/kube-state-metrics.libsonnet';
local this = self,

_images:: {
agent: 'grafana/agent:v0.34.2',
agent_operator: 'grafana/agent-operator:v0.34.2',
agent: 'grafana/agent:v0.34.3',
agent_operator: 'grafana/agent-operator:v0.34.3',
ksm: 'registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.5.0',
},

Expand Down
2 changes: 1 addition & 1 deletion production/kubernetes/install-bare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ check_installed() {
check_installed curl
check_installed envsubst

MANIFEST_BRANCH=v0.34.2
MANIFEST_BRANCH=v0.34.3
MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-bare.yaml}
NAMESPACE=${NAMESPACE:-default}

Expand Down
4 changes: 2 additions & 2 deletions production/operator/templates/agent-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ spec:
containers:
- args:
- --kubelet-service=default/kubelet
image: grafana/agent-operator:v0.34.2
image: grafana/agent-operator:v0.34.3
imagePullPolicy: IfNotPresent
name: grafana-agent-operator
serviceAccount: grafana-agent-operator
Expand Down Expand Up @@ -436,7 +436,7 @@ metadata:
name: grafana-agent
namespace: ${NAMESPACE}
spec:
image: grafana/agent:v0.34.2
image: grafana/agent:v0.34.3
integrations:
selector:
matchLabels:
Expand Down
4 changes: 2 additions & 2 deletions production/tanka/grafana-agent/v1/main.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ local service = k.core.v1.service;
(import './lib/traces.libsonnet') +
{
_images:: {
agent: 'grafana/agent:v0.34.2',
agentctl: 'grafana/agentctl:v0.34.2',
agent: 'grafana/agent:v0.34.3',
agentctl: 'grafana/agentctl:v0.34.3',
},

// new creates a new DaemonSet deployment of the grafana-agent. By default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function(
) {
local _config = {
api: error 'api must be set',
image: 'grafana/agentctl:v0.34.2',
image: 'grafana/agentctl:v0.34.3',
schedule: '*/5 * * * *',
configs: [],
} + config,
Expand Down

0 comments on commit c76a796

Please sign in to comment.