neticdk / k8s-oaas-observability

Observability (logs, metrics, and traces) stack for Kubernetes.
MIT License
8 stars 4 forks source link

chore(deps): update oaas-observability #265

Closed netic-renovate-bot closed 1 month ago

netic-renovate-bot commented 2 months ago

This PR contains the following updates:

Package Update Change
github.com/etcd-io/etcd/contrib/mixin patch v3.5.14 -> v3.5.15
grafana (source) patch 8.3.2 -> 8.3.6
grafana/grafana patch 11.1.0 -> 11.1.1
kube-state-metrics (source) minor 5.21.0 -> 5.23.0
opentelemetry-operator (source) patch 0.64.1 -> 0.64.4
promtail (source) patch 6.16.3 -> 6.16.4
quay.io/prometheus/prometheus patch v2.53.0 -> v2.53.1

Release Notes

etcd-io/etcd (github.com/etcd-io/etcd/contrib/mixin) ### [`v3.5.15`](https://togithub.com/etcd-io/etcd/releases/tag/v3.5.15) [Compare Source](https://togithub.com/etcd-io/etcd/compare/v3.5.14...v3.5.15) Please check out [CHANGELOG](https://togithub.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md) for a full list of changes. And make sure to read [upgrade guide](https://togithub.com/etcd-io/website/blob/main/content/en/docs/v3.5/upgrades/upgrade\_3\_5.md) before upgrading etcd (there may be breaking changes). For installation guides, please check out [play.etcd.io](http://play.etcd.io) and [operating etcd](https://togithub.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters). Latest support status for common architectures and operating systems can be found at [supported platforms](https://togithub.com/etcd-io/website/blob/main/content/en/docs/v3.5/op-guide/supported-platform.md). ###### Linux ```bash ETCD_VER=v3.5.15 ### choose either URL GOOGLE_URL=https://storage.googleapis.com/etcd GITHUB_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD_URL=${GOOGLE_URL} rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version /tmp/etcd-download-test/etcdutl version ``` ```bash ### start a local etcd server /tmp/etcd-download-test/etcd ### write,read to etcd /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo ``` ###### macOS (Darwin) ```bash ETCD_VER=v3.5.15 ### choose either URL GOOGLE_URL=https://storage.googleapis.com/etcd GITHUB_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD_URL=${GOOGLE_URL} rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version /tmp/etcd-download-test/etcdutl version ``` ###### Docker etcd uses [`gcr.io/etcd-development/etcd`](https://gcr.io/etcd-development/etcd) as a primary container registry, and [`quay.io/coreos/etcd`](https://quay.io/coreos/etcd) as secondary. ```bash rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.5.15 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.5.15 \ gcr.io/etcd-development/etcd:v3.5.15 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap \ --log-outputs stderr docker exec etcd-gcr-v3.5.15 /usr/local/bin/etcd --version docker exec etcd-gcr-v3.5.15 /usr/local/bin/etcdctl version docker exec etcd-gcr-v3.5.15 /usr/local/bin/etcdutl version docker exec etcd-gcr-v3.5.15 /usr/local/bin/etcdctl endpoint health docker exec etcd-gcr-v3.5.15 /usr/local/bin/etcdctl put foo bar docker exec etcd-gcr-v3.5.15 /usr/local/bin/etcdctl get foo ```
grafana/helm-charts (grafana) ### [`v8.3.6`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-8.3.6) [Compare Source](https://togithub.com/grafana/helm-charts/compare/grafana-8.3.5...grafana-8.3.6) The leading tool for querying and visualizing time series and metrics. #### What's Changed - \[grafana] chore: update k8s-sidecar to 1.27.4 by [@​KyriosGN0](https://togithub.com/KyriosGN0) in [https://github.com/grafana/helm-charts/pull/3232](https://togithub.com/grafana/helm-charts/pull/3232) **Full Changelog**: https://github.com/grafana/helm-charts/compare/grafana-8.3.5...grafana-8.3.6 ### [`v8.3.5`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-8.3.5) [Compare Source](https://togithub.com/grafana/helm-charts/compare/grafana-8.3.4...grafana-8.3.5) The leading tool for querying and visualizing time series and metrics. #### What's Changed - \[grafana] fix: Add missing version, kind to volumeClaimTemplates by [@​Nickmman](https://togithub.com/Nickmman) in [https://github.com/grafana/helm-charts/pull/3037](https://togithub.com/grafana/helm-charts/pull/3037) #### New Contributors - [@​Nickmman](https://togithub.com/Nickmman) made their first contribution in [https://github.com/grafana/helm-charts/pull/3037](https://togithub.com/grafana/helm-charts/pull/3037) **Full Changelog**: https://github.com/grafana/helm-charts/compare/synthetic-monitoring-agent-0.3.0...grafana-8.3.5 ### [`v8.3.4`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-8.3.4) [Compare Source](https://togithub.com/grafana/helm-charts/compare/grafana-8.3.3...grafana-8.3.4) The leading tool for querying and visualizing time series and metrics. #### What's Changed - \[grafana] TYPO by [@​mattclegg](https://togithub.com/mattclegg) in [https://github.com/grafana/helm-charts/pull/3166](https://togithub.com/grafana/helm-charts/pull/3166) #### New Contributors - [@​mattclegg](https://togithub.com/mattclegg) made their first contribution in [https://github.com/grafana/helm-charts/pull/3166](https://togithub.com/grafana/helm-charts/pull/3166) **Full Changelog**: https://github.com/grafana/helm-charts/compare/loki-distributed-0.79.1...grafana-8.3.4 ### [`v8.3.3`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-8.3.3) [Compare Source](https://togithub.com/grafana/helm-charts/compare/grafana-8.3.2...grafana-8.3.3) The leading tool for querying and visualizing time series and metrics. #### What's Changed - \[grafana] Fixed image renderer network policy namespace selector by [@​elliotcourant](https://togithub.com/elliotcourant) in [https://github.com/grafana/helm-charts/pull/3227](https://togithub.com/grafana/helm-charts/pull/3227) #### New Contributors - [@​elliotcourant](https://togithub.com/elliotcourant) made their first contribution in [https://github.com/grafana/helm-charts/pull/3227](https://togithub.com/grafana/helm-charts/pull/3227) **Full Changelog**: https://github.com/grafana/helm-charts/compare/alloy-0.5.1...grafana-8.3.3
prometheus-community/helm-charts (kube-state-metrics) ### [`v5.23.0`](https://togithub.com/prometheus-community/helm-charts/releases/tag/kube-state-metrics-5.23.0) [Compare Source](https://togithub.com/prometheus-community/helm-charts/compare/kube-state-metrics-5.22.1...kube-state-metrics-5.23.0) Install kube-state-metrics to generate and expose cluster-level metrics #### What's Changed - \[kube-state-metrics] Allow configuration of startupProbe by [@​SimonKienzler](https://togithub.com/SimonKienzler) in [https://github.com/prometheus-community/helm-charts/pull/4740](https://togithub.com/prometheus-community/helm-charts/pull/4740) #### New Contributors - [@​SimonKienzler](https://togithub.com/SimonKienzler) made their first contribution in [https://github.com/prometheus-community/helm-charts/pull/4740](https://togithub.com/prometheus-community/helm-charts/pull/4740) **Full Changelog**: https://github.com/prometheus-community/helm-charts/compare/kube-state-metrics-5.22.1...kube-state-metrics-5.23.0 ### [`v5.22.1`](https://togithub.com/prometheus-community/helm-charts/releases/tag/kube-state-metrics-5.22.1) [Compare Source](https://togithub.com/prometheus-community/helm-charts/compare/kube-state-metrics-5.22.0...kube-state-metrics-5.22.1) Install kube-state-metrics to generate and expose cluster-level metrics #### What's Changed - \[kube-state-metrics] - Improve customLabels template flexibility by [@​sarnowski-defense-unicorns](https://togithub.com/sarnowski-defense-unicorns) in [https://github.com/prometheus-community/helm-charts/pull/4738](https://togithub.com/prometheus-community/helm-charts/pull/4738) #### New Contributors - [@​sarnowski-defense-unicorns](https://togithub.com/sarnowski-defense-unicorns) made their first contribution in [https://github.com/prometheus-community/helm-charts/pull/4738](https://togithub.com/prometheus-community/helm-charts/pull/4738) **Full Changelog**: https://github.com/prometheus-community/helm-charts/compare/prometheus-mysql-exporter-2.6.1...kube-state-metrics-5.22.1 ### [`v5.22.0`](https://togithub.com/prometheus-community/helm-charts/releases/tag/kube-state-metrics-5.22.0) [Compare Source](https://togithub.com/prometheus-community/helm-charts/compare/kube-state-metrics-5.21.0...kube-state-metrics-5.22.0) Install kube-state-metrics to generate and expose cluster-level metrics #### What's Changed - \[kube-state-metrics] bump to 2.13.0 by [@​DrFaust92](https://togithub.com/DrFaust92) in [https://github.com/prometheus-community/helm-charts/pull/4731](https://togithub.com/prometheus-community/helm-charts/pull/4731) **Full Changelog**: https://github.com/prometheus-community/helm-charts/compare/prometheus-stackdriver-exporter-4.6.0...kube-state-metrics-5.22.0
open-telemetry/opentelemetry-helm-charts (opentelemetry-operator) ### [`v0.64.4`](https://togithub.com/open-telemetry/opentelemetry-helm-charts/releases/tag/opentelemetry-operator-0.64.4) [Compare Source](https://togithub.com/open-telemetry/opentelemetry-helm-charts/compare/opentelemetry-operator-0.64.3...opentelemetry-operator-0.64.4) OpenTelemetry Operator Helm chart for Kubernetes #### What's Changed - \[operator] feat: add 'relabelings' and 'metricRelabelings' configs to serviceMonitor by [@​rl0nergan](https://togithub.com/rl0nergan) in [https://github.com/open-telemetry/opentelemetry-helm-charts/pull/1246](https://togithub.com/open-telemetry/opentelemetry-helm-charts/pull/1246) **Full Changelog**: https://github.com/open-telemetry/opentelemetry-helm-charts/compare/opentelemetry-kube-stack-0.0.10...opentelemetry-operator-0.64.4 ### [`v0.64.3`](https://togithub.com/open-telemetry/opentelemetry-helm-charts/releases/tag/opentelemetry-operator-0.64.3) [Compare Source](https://togithub.com/open-telemetry/opentelemetry-helm-charts/compare/opentelemetry-operator-0.64.2...opentelemetry-operator-0.64.3) OpenTelemetry Operator Helm chart for Kubernetes #### What's Changed - Set port for webhook in conversion webhook by [@​jaronoff97](https://togithub.com/jaronoff97) in [https://github.com/open-telemetry/opentelemetry-helm-charts/pull/1260](https://togithub.com/open-telemetry/opentelemetry-helm-charts/pull/1260) **Full Changelog**: https://github.com/open-telemetry/opentelemetry-helm-charts/compare/opentelemetry-demo-0.32.1...opentelemetry-operator-0.64.3 ### [`v0.64.2`](https://togithub.com/open-telemetry/opentelemetry-helm-charts/releases/tag/opentelemetry-operator-0.64.2) [Compare Source](https://togithub.com/open-telemetry/opentelemetry-helm-charts/compare/opentelemetry-operator-0.64.1...opentelemetry-operator-0.64.2) OpenTelemetry Operator Helm chart for Kubernetes #### What's Changed - \[operator] support cutom autocert-certPeriod time by days by [@​JaredTan95](https://togithub.com/JaredTan95) in [https://github.com/open-telemetry/opentelemetry-helm-charts/pull/1249](https://togithub.com/open-telemetry/opentelemetry-helm-charts/pull/1249) **Full Changelog**: https://github.com/open-telemetry/opentelemetry-helm-charts/compare/opentelemetry-kube-stack-0.0.9...opentelemetry-operator-0.64.2

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Renovate Bot.

netic-rkm commented 1 month ago

NIS-190479