From 28f8a9c71a9bed648afcce1171ce858b2c2ecc1f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 18 Nov 2022 10:22:00 +0000 Subject: [PATCH 1/5] Update ghcr.io/parca-dev/parca Docker tag to v0.14.0 --- charts/parca/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/parca/values.yaml b/charts/parca/values.yaml index 6203cefc3..79066b3b8 100644 --- a/charts/parca/values.yaml +++ b/charts/parca/values.yaml @@ -68,7 +68,7 @@ server: # -- Overrides pull policy for server pullPolicy: IfNotPresent # -- Overrides the image tag for server - tag: "v0.13.0" + tag: "v0.14.0" # -- logging level of parca server logLevel: info # -- CORS setting From 8d35f51ce537a38cc3a97b9f4f2701ecad1ab3d4 Mon Sep 17 00:00:00 2001 From: Lex Rivera Date: Fri, 18 Nov 2022 13:26:04 +0300 Subject: [PATCH 2/5] [parca] bump to 3.1.0 --- charts/parca/Chart.yaml | 4 ++-- charts/parca/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/parca/Chart.yaml b/charts/parca/Chart.yaml index 2f12f6d9a..4d4977b35 100644 --- a/charts/parca/Chart.yaml +++ b/charts/parca/Chart.yaml @@ -20,10 +20,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.0.0 +version: 3.1.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v0.13.0" +appVersion: diff --git a/charts/parca/README.md b/charts/parca/README.md index df53c2ef7..02d08581e 100644 --- a/charts/parca/README.md +++ b/charts/parca/README.md @@ -1,6 +1,6 @@ # parca -![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.13.0](https://img.shields.io/badge/AppVersion-v0.13.0-informational?style=flat-square) +![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Open Source Infrastructure-wide continuous profiling @@ -91,7 +91,7 @@ helm repo add parca https://parca-dev.github.io/helm-charts | server.extraEnv | list | `[]` | additional container environment variables for server | | server.image.pullPolicy | string | `"IfNotPresent"` | Overrides pull policy for server | | server.image.repository | string | `"ghcr.io/parca-dev/parca"` | Overrides the image repository for server | -| server.image.tag | string | `"v0.13.0"` | Overrides the image tag for server | +| server.image.tag | string | `"v0.14.0"` | Overrides the image tag for server | | server.logLevel | string | `"info"` | logging level of parca server | | server.nodeSelector | object | `{}` | node selector for scheduling server pod | | server.otlpAddress | string | `""` | OpenTelemetry collector address to send traces to | From 73bee8617e1cbf6391a59922577bc624177fcef9 Mon Sep 17 00:00:00 2001 From: Lex Rivera Date: Fri, 18 Nov 2022 13:30:13 +0300 Subject: [PATCH 3/5] fix appVersion --- charts/parca/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/parca/Chart.yaml b/charts/parca/Chart.yaml index 4d4977b35..f2d2b8983 100644 --- a/charts/parca/Chart.yaml +++ b/charts/parca/Chart.yaml @@ -26,4 +26,4 @@ version: 3.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: +appVersion: 0.14.0 From 3a1b3a52ac923f997669dcfbe3472d9d29c420a0 Mon Sep 17 00:00:00 2001 From: Lex Rivera Date: Fri, 18 Nov 2022 13:33:46 +0300 Subject: [PATCH 4/5] fix update helper script --- bin/update-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/update-helper.sh b/bin/update-helper.sh index a34a107e0..5637cad08 100755 --- a/bin/update-helper.sh +++ b/bin/update-helper.sh @@ -71,7 +71,7 @@ target_version=$(semver_increment ${current_version} ${patchlevel}) #patch it around sedlink -i "s/^version:.*$/version: ${target_version}/g" charts/${chart}/Chart.yaml #extract image version from values (multiple different images not supported) -appversion=$(grep "tag:" charts/coroot/values.yaml | awk {'print $2'} | tr -d '"') +appversion=$(grep "tag:" charts/${chart}/values.yaml | awk {'print $2'} | tr -d '"'| tail -n 1) #patch it around sedlink -i "s/^appVersion:.*$/appVersion: ${appversion}/g" charts/${chart}/Chart.yaml #regenerate docs @@ -79,4 +79,4 @@ helm-docs --chart-to-generate charts/${chart} #add to git staging git add charts/${chart} #commit -git commit -m "[${chart}] bump to ${target_version}" \ No newline at end of file +git commit -m "[${chart}] bump to ${target_version}" From f12df56077970b98b9e888a3acac12d08869beb0 Mon Sep 17 00:00:00 2001 From: Lex Rivera Date: Fri, 18 Nov 2022 13:34:46 +0300 Subject: [PATCH 5/5] readme fix --- charts/parca/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/parca/README.md b/charts/parca/README.md index 02d08581e..5def588af 100644 --- a/charts/parca/README.md +++ b/charts/parca/README.md @@ -1,6 +1,6 @@ # parca -![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.14.0](https://img.shields.io/badge/AppVersion-0.14.0-informational?style=flat-square) Open Source Infrastructure-wide continuous profiling