From 3cfb10eb1a026431de1f898fde16eec54d45c2e5 Mon Sep 17 00:00:00 2001 From: rlex-bot <67213046+rlex-bot@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:32:43 +0300 Subject: [PATCH] chore(deps): update ghcr.io/parca-dev/parca-agent docker tag to v0.25.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 Co-authored-by: Lex Rivera --- charts/parca/Chart.yaml | 2 +- charts/parca/README.md | 6 +++--- charts/parca/ci/k3s-values.yaml | 4 +++- charts/parca/values.yaml | 8 +++++--- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/charts/parca/Chart.yaml b/charts/parca/Chart.yaml index 9e4b9dc1e..f7b4b2a52 100644 --- a/charts/parca/Chart.yaml +++ b/charts/parca/Chart.yaml @@ -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 diff --git a/charts/parca/README.md b/charts/parca/README.md index a7955d4dd..2846fee9e 100644 --- a/charts/parca/README.md +++ b/charts/parca/README.md @@ -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 @@ -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` | | diff --git a/charts/parca/ci/k3s-values.yaml b/charts/parca/ci/k3s-values.yaml index e935bbfed..8e09e92f1 100644 --- a/charts/parca/ci/k3s-values.yaml +++ b/charts/parca/ci/k3s-values.yaml @@ -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 \ No newline at end of file + socketPath: /run/containerd/containerd.sock + extraArgs: + - --allow-running-in-non-root-pid-namespace \ No newline at end of file diff --git a/charts/parca/values.yaml b/charts/parca/values.yaml index 2393b2644..883159220 100644 --- a/charts/parca/values.yaml +++ b/charts/parca/values.yaml @@ -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 @@ -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