Skip to content

Commit

Permalink
bump chart version to 2.0.0, add notes about changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rlex committed Jul 19, 2022
1 parent 23a1cb5 commit 40f6a35
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/parca/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 1.6.3
version: 2.0.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.12.0-rc.0"
appVersion: "v0.12.0"
12 changes: 10 additions & 2 deletions charts/parca/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
# parca

![Version: 1.6.3](https://img.shields.io/badge/Version-1.6.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.0-rc.0](https://img.shields.io/badge/AppVersion-v0.12.0--rc.0-informational?style=flat-square)
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.0](https://img.shields.io/badge/AppVersion-v0.12.0-informational?style=flat-square)

Open Source Infrastructure-wide continuous profiling

## Source Code

* <https://github.com/parca-dev/helm-charts>

### Changes

#### 2.0.0
In chart version 2.0.0, following things has changed:

* agent.socketPath is now unset by default. If you need custom path to CRI socket (ie for k3s it is /run/containerd/containerd.sock) you will need to specify it manually now.
* server.retentionTime has been removed from parca, use server.storageActiveMemory instead

### Usage

Please consult [official docs](https://www.parca.dev/docs/overview) on usage.
Expand Down Expand Up @@ -50,7 +58,7 @@ helm repo add parca https://parca-dev.github.io/helm-charts
| agent.service.type | string | `"ClusterIP"` | service type for agent |
| agent.serviceMonitor.enabled | bool | `false` | enables prometheus servicemonitor for agent |
| agent.serviceMonitor.jobLabel | string | `"parca-agent"` | |
| agent.socketPath | string | `"/run/containerd/containerd.sock"` | Path to host docker/containerd/crio socket |
| agent.socketPath | string | `""` | Path to host docker/containerd/crio socket |
| agent.tolerations | list | `[{"effect":"NoSchedule","operator":"Exists"},{"effect":"NoExecute","operator":"Exists"}]` | node tolerations for scheduling agent pods |
| fullnameOverride | string | `""` | Overrides helm-generated chart fullname |
| imagePullSecrets | list | `[]` | specifies pull secrets for image repository |
Expand Down
8 changes: 8 additions & 0 deletions charts/parca/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@

{{ template "chart.requirementsSection" . }}

### Changes

#### 2.0.0
In chart version 2.0.0, following things has changed:

* agent.socketPath is now unset by default. If you need custom path to CRI socket (ie for k3s it is /run/containerd/containerd.sock) you will need to specify it manually now.
* server.retentionTime has been removed from parca, use server.storageActiveMemory instead

### Usage

Please consult [official docs](https://www.parca.dev/docs/overview) on usage.
Expand Down

0 comments on commit 40f6a35

Please sign in to comment.