From 758d00c852c639a16de348afdb0e17fa5c412d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B8rn=20Fj=C3=B8rtoft?= Date: Thu, 4 Jan 2024 13:54:53 +0100 Subject: [PATCH] Fix docs for `containerSecurityContext` The values file expects the key `containerSecurityContext`, not `securityContext` as stated in README.md --- charts/port-agent/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/port-agent/README.md b/charts/port-agent/README.md index 1583dc0..2f3d5f4 100644 --- a/charts/port-agent/README.md +++ b/charts/port-agent/README.md @@ -68,7 +68,7 @@ The following table lists the configuration parameters of the `port-agent` chart | `controlThePayloadConfig` | Override the default control the payload configuration file with custom json configuration | `""` | | `podAnnotations` | Annotations to be added to the pod | `{}` | | `podSecurityContext` | Security context applied to the pod | `{}` | -| `securityContext` | Security context applied to the container | `{}` | +| `containerSecurityContext` | Security context applied to the container | `{}` | | `resources` | Container resource requests & limits | `{}` | | `nodeSelector` | NodeSelector applied to the pod | `{}` | | `tolerations` | Tolerations applied to the pod | `[]` | @@ -98,4 +98,4 @@ helm install my-port-agent port-labs/port-agent \ --set selfSignedCertificate.enabled=true \ # Flag for passing the certificate file --set-file selfSignedCertificate.certificate=/PATH/TO/CERTIFICATE.crt -``` \ No newline at end of file +```