Skip to content

Commit

Permalink
chore(deps): update ghcr.io/parca-dev/parca-agent docker tag to v0.25…
Browse files Browse the repository at this point in the history
….0 (#62)

* chore(deps): update ghcr.io/parca-dev/parca-agent docker tag to v0.25.0

* [parca] bump to 4.14.0

* run as root

* fix for CI

* [parca] bump to 4.15.0

* regenerate docs

---------

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Lex Rivera <[email protected]>
  • Loading branch information
3 people authored Sep 22, 2023
1 parent 555e497 commit 3cfb10e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/parca/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 4.14.0
version: 4.15.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
Expand Down
6 changes: 3 additions & 3 deletions charts/parca/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# parca

![Version: 4.14.0](https://img.shields.io/badge/Version-4.14.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.19.0](https://img.shields.io/badge/AppVersion-v0.19.0-informational?style=flat-square)
![Version: 4.15.0](https://img.shields.io/badge/Version-4.15.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.19.0](https://img.shields.io/badge/AppVersion-v0.19.0-informational?style=flat-square)

Open Source Infrastructure-wide continuous profiling

Expand Down Expand Up @@ -69,12 +69,12 @@ helm repo add parca https://parca-dev.github.io/helm-charts
| agent.extraLabels | object | `{}` | Additional labels for agent daemonset |
| agent.image.pullPolicy | string | `"IfNotPresent"` | Overrides pullpolicy |
| agent.image.repository | string | `"ghcr.io/parca-dev/parca-agent"` | Overrides the image repository |
| agent.image.tag | string | `"v0.23.2"` | Overrides the image tag |
| agent.image.tag | string | `"v0.25.0"` | Overrides the image tag |
| agent.logLevel | string | `"info"` | Agent log level |
| agent.nodeSelector | object | `{}` | node selector for scheduling agent pods |
| agent.podAnnotations | object | `{}` | Additional annotations for pods |
| agent.podExtraLabels | object | `{}` | Additional labels for pods |
| agent.podSecurityContext | object | `{}` | Additional pod secutiry context |
| agent.podSecurityContext | object | `{"runAsGroup":0,"runAsUser":0}` | Additional pod security context |
| agent.remoteStoreAddress | string | `""` | Address of parca server to send profiles. If not defined, will be generated based on deployment settings. |
| agent.remoteStoreBearerToken | string | `""` | |
| agent.remoteStoreInsecure | bool | `true` | |
Expand Down
4 changes: 3 additions & 1 deletion charts/parca/ci/k3s-values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#chart-testing is using k3s for testing.
#we need to overwrite path to socket for it to work
agent:
socketPath: /run/containerd/containerd.sock
socketPath: /run/containerd/containerd.sock
extraArgs:
- --allow-running-in-non-root-pid-namespace
8 changes: 5 additions & 3 deletions charts/parca/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ agent:
# -- Overrides pullpolicy
pullPolicy: IfNotPresent
# -- Overrides the image tag
tag: "v0.23.2"
tag: "v0.25.0"
# -- Agent log level
logLevel: info
# -- additional arguments to pass to the agent
Expand All @@ -40,8 +40,10 @@ agent:
podExtraLabels: {}
# -- Additional annotations for pods
podAnnotations: {}
# -- Additional pod secutiry context
podSecurityContext: {}
# -- Additional pod security context
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# -- Security context, needs to be prilileged for ful functionality
securityContext:
privileged: true
Expand Down

0 comments on commit 3cfb10e

Please sign in to comment.