-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README fixes, templating support, links now points to parca repos ins…
…tead of my personal repo
- Loading branch information
Showing
4 changed files
with
72 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
## Helm charts for parca-server and parca-agent | ||
|
||
### Usage | ||
|
||
```console | ||
helm repo add parca https://parca-dev.github.io/helm-charts/ | ||
helm repo update parca | ||
helm install my-parca parca/parca | ||
``` | ||
|
||
### Contributing | ||
If you added, removed or adjusted helm values, please run [helm-docs](https://github.com/norwoodj/helm-docs) in charts/parca folder to re-generate README |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{{ template "chart.header" . }} | ||
|
||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} | ||
|
||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.sourcesSection" . }} | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
### Usage | ||
|
||
Please consult [official docs](https://www.parca.dev/docs/overview) on usage. | ||
Chart includes prometheus-style discovery rule with annotations: | ||
|
||
If you want k8s prometheus-like scraping for pprof endpoints, all you need is to add annotations for pod: | ||
``` | ||
parca.dev/scrape: 'true' | ||
``` | ||
|
||
to furter adjust scope of scraping, you can use | ||
``` | ||
parca.dev/port: 'debug' | ||
``` | ||
|
||
## Chart Repo | ||
|
||
Add the following repo to use the chart: | ||
|
||
```console | ||
helm repo add parca https://parca-dev.github.io/helm-charts | ||
``` | ||
|
||
{{ template "chart.valuesSection" . }} | ||
|
||
## Upgrading | ||
|
||
A major chart version change indicates that there is an incompatible breaking change needing manual actions. |