File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,12 @@ target_version=$(semver_increment ${current_version} ${patchlevel})
71
71
# patch it around
72
72
sedlink -i " s/^version:.*$/version: ${target_version} /g" charts/${chart} /Chart.yaml
73
73
# extract image version from values (multiple different images not supported)
74
- appversion=$( grep " tag:" charts/coroot /values.yaml | awk {' print $2' } | tr -d ' "' )
74
+ appversion=$( grep " tag:" charts/${chart} /values.yaml | awk {' print $2' } | tr -d ' "' | tail -n 1 )
75
75
# patch it around
76
76
sedlink -i " s/^appVersion:.*$/appVersion: ${appversion} /g" charts/${chart} /Chart.yaml
77
77
# regenerate docs
78
78
helm-docs --chart-to-generate charts/${chart}
79
79
# add to git staging
80
80
git add charts/${chart}
81
81
# commit
82
- git commit -m " [${chart} ] bump to ${target_version} "
82
+ git commit -m " [${chart} ] bump to ${target_version} "
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ type: application
20
20
# This is the chart version. This version number should be incremented each time you make changes
21
21
# to the chart and its templates, including the app version.
22
22
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23
- version : 3.0 .0
23
+ version : 3.1 .0
24
24
25
25
# This is the version number of the application being deployed. This version number should be
26
26
# incremented each time you make changes to the application. Versions are not expected to
27
27
# follow Semantic Versioning. They should reflect the version the application is using.
28
28
# It is recommended to use it with quotes.
29
- appVersion : " v0.13.0 "
29
+ appVersion : 0.14.0
Original file line number Diff line number Diff line change 1
1
# parca
2
2
3
- ![ 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 )
3
+ ![ 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 )
4
4
5
5
Open Source Infrastructure-wide continuous profiling
6
6
@@ -91,7 +91,7 @@ helm repo add parca https://parca-dev.github.io/helm-charts
91
91
| server.extraEnv | list | ` [] ` | additional container environment variables for server |
92
92
| server.image.pullPolicy | string | ` "IfNotPresent" ` | Overrides pull policy for server |
93
93
| server.image.repository | string | ` "ghcr.io/parca-dev/parca" ` | Overrides the image repository for server |
94
- | server.image.tag | string | ` "v0.13 .0" ` | Overrides the image tag for server |
94
+ | server.image.tag | string | ` "v0.14 .0" ` | Overrides the image tag for server |
95
95
| server.logLevel | string | ` "info" ` | logging level of parca server |
96
96
| server.nodeSelector | object | ` {} ` | node selector for scheduling server pod |
97
97
| server.otlpAddress | string | ` "" ` | OpenTelemetry collector address to send traces to |
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ server:
68
68
# -- Overrides pull policy for server
69
69
pullPolicy : IfNotPresent
70
70
# -- Overrides the image tag for server
71
- tag : " v0.13 .0"
71
+ tag : " v0.14 .0"
72
72
# -- logging level of parca server
73
73
logLevel : info
74
74
# -- CORS setting
You can’t perform that action at this time.
0 commit comments