From 4175f6e3f86860753c71756ed02d4fb691d36592 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 12:47:30 +0000 Subject: [PATCH 1/4] chore(deps): update helm charts --- chart/Chart.yaml | 4 ++-- chart/values.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 13f99ccb..bfd050b9 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -12,7 +12,7 @@ keywords: - monitoring - tracing - opentelemetry -version: 16.2.0 +version: 16.3.0 # TODO(paulfantom): Enable after kubernetes 1.22 reaches EOL (2022-10-28) # kubeVersion: ">= 1.23.0" dependencies: @@ -31,5 +31,5 @@ dependencies: repository: https://prometheus-community.github.io/helm-charts - name: opentelemetry-operator condition: opentelemetry-operator.enabled - version: 0.13.0 + version: 0.13.3 repository: https://open-telemetry.github.io/opentelemetry-helm-charts diff --git a/chart/values.yaml b/chart/values.yaml index a2cd1dee..b90458bd 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -63,7 +63,7 @@ promscale: enabled: true image: repository: timescale/promscale - tag: 0.14.0 + tag: 0.15.0 pullPolicy: IfNotPresent # to pass extra args extraArgs: @@ -210,7 +210,7 @@ kube-prometheus-stack: # TODO(paulfantom): remove with kube-prometheus bump image: repository: grafana/grafana - tag: 9.1.7 + tag: 9.2.0 pullPolicy: IfNotPresent resources: limits: @@ -332,7 +332,7 @@ opentelemetry-operator: enabled: true instrumentation: pythonImage: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-python:0.32b0 - javaImage: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-java:1.18.0 + javaImage: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-java:1.19.0 nodejsImage: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-nodejs:0.31.0 collector: # The default otel collector that will be deployed by helm once From aef851a020069d6aa1a46c04b434229a6a4a787e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Krupa=20=28paulfantom=29?= Date: Fri, 14 Oct 2022 14:48:49 +0200 Subject: [PATCH 2/4] chart: update timescaledb image version and unlock it in Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Krupa (paulfantom) --- Makefile | 1 - chart/values.yaml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 563651e4..29031342 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,6 @@ timescaledb: ## This is a phony target that is used to install the timescaledb-s --set loadBalancer.enabled=false \ --set secrets.credentials.PATRONI_SUPERUSER_PASSWORD="temporarypassword" \ --set secrets.credentials.PATRONI_admin_PASSWORD="temporarypassword" \ - --set image.tag=pg14.5-ts2.8.0-p0 \ --set patroni.log.level=INFO .PHONY: e2e diff --git a/chart/values.yaml b/chart/values.yaml index b90458bd..7d239dc9 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -13,7 +13,7 @@ timescaledb-single: # override default helm chart image to use one with newer promscale_extension image: repository: timescale/timescaledb-ha - tag: pg14.5-ts2.8.0-p1 + tag: pg14.5-ts2.8.1-p1 pullPolicy: IfNotPresent env: - name: TSTUNE_PROFILE From 25efe12b7d0f68205b4ba391231de8d15ea67b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Krupa=20=28paulfantom=29?= Date: Fri, 14 Oct 2022 17:00:41 +0200 Subject: [PATCH 3/4] chart: update timescaledb image version and unlock it in Makefile --- chart/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index bfd050b9..5927a552 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -18,7 +18,7 @@ version: 16.3.0 dependencies: - name: timescaledb-single condition: timescaledb-single.enabled - version: 0.18.0 + version: 0.19.0 repository: https://charts.timescale.com - name: promscale condition: promscale.enabled From 00fe0a1ad1cb4477528d234a3dcd8e84d143243d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Krupa=20=28paulfantom=29?= Date: Fri, 14 Oct 2022 17:00:50 +0200 Subject: [PATCH 4/4] .github: reduce load on CI infra from renovate --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6695de63..3dbac65a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,7 +1,8 @@ name: "Test Helm Charts" on: - - push - - pull_request + push: + branches-ignore: ['renovate/**'] + pull_request: env: helm-version: v3.10.1 jobs: