From 09cf5c9cee41ebb1d60fec4b003c0ac204ce5ac1 Mon Sep 17 00:00:00 2001 From: draios-jenkins Date: Thu, 20 Jul 2023 20:55:34 +0000 Subject: [PATCH] github_actions_ci: Update public key --- charts/agent/README.md | 2 ++ charts/agent/values.yaml | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/charts/agent/README.md b/charts/agent/README.md index 8e3792b46..55170cd4a 100644 --- a/charts/agent/README.md +++ b/charts/agent/README.md @@ -121,7 +121,9 @@ The following table lists the configurable parameters of the Sysdig chart and th | `psp.create` | Creates Pod Security Policy to allow the agent running in clusters with PSP enabled. | `true` | | `serviceAccount.create` | Creates serviceAccount. | `true` | | `serviceAccount.name` | Use this value as serviceAccountName. | ` ` | +| `createPriorityClass` | Specify whether or not to create a priority class for the agent. | `false` | | `priorityClassName` | Sets the priority class for the agent daemonset. | `""` | +| `priorityClassValue` | Sets the priority class value for the agent daemonset. | `10` | | `daemonset.deploy` | Deploys the agent daemonset. | `true` | | `daemonset.env` | Specifies the environment variables for the agent container. Provide as map of `VAR: val` | `{}` | | `daemonset.updateStrategy.type` | Specifies the updateStrategy for updating the daemonset. | `RollingUpdate` | diff --git a/charts/agent/values.yaml b/charts/agent/values.yaml index 2bc6e1046..99e26f98a 100644 --- a/charts/agent/values.yaml +++ b/charts/agent/values.yaml @@ -146,9 +146,15 @@ proxy: # Set daemonset timezone timezone: +# Create the priorityClass defined below +createPriorityClass: false + # Set daemonset priorityClassName priorityClassName: +# Set daemonset priorityClassValue +priorityClassValue: 10 + ebpf: # Enable eBPF support for Sysdig Agent enabled: false