From 6b53c00a4a17611fd2ba1fa648af5b5843237389 Mon Sep 17 00:00:00 2001 From: Carlos Roberto Marques Junior Date: Fri, 29 Nov 2019 05:47:03 -0300 Subject: [PATCH] [stable/redmine] Option to customize security context (#19227) * option to customize securityContext Signed-off-by: Carlos Roberto Marques Junior * new line Signed-off-by: Carlos Roberto Marques Junior * [redmine] support to securityContext Signed-off-by: Carlos Roberto Marques Junior --- stable/redmine/Chart.yaml | 2 +- stable/redmine/README.md | 1 + stable/redmine/values.yaml | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/stable/redmine/Chart.yaml b/stable/redmine/Chart.yaml index 1cd2e94874..d962c48745 100644 --- a/stable/redmine/Chart.yaml +++ b/stable/redmine/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: redmine -version: 13.5.0 +version: 13.6.0 appVersion: 4.0.5 description: A flexible project management web application. keywords: diff --git a/stable/redmine/README.md b/stable/redmine/README.md index 5d638bce87..25f9378f4d 100644 --- a/stable/redmine/README.md +++ b/stable/redmine/README.md @@ -123,6 +123,7 @@ The following table lists the configurable parameters of the Redmine chart and t | `podDisruptionBudget.maxUnavailable`| Maximum unavailable pods | `nil` | | `replicas` | The number of pod replicas | `1` | | `resources` | Resources allocation (Requests and Limits) | `{}` | +| `securityContext` | SecurityContext | `{}` | | `livenessProbe.enabled` | would you like a livenessProbe to be enabled | `true` | | `livenessProbe.initialDelaySeconds` | Delay before liveness probe is initiated | 300 | | `livenessProbe.periodSeconds` | How often to perform the probe | 10 | diff --git a/stable/redmine/values.yaml b/stable/redmine/values.yaml index 5efb7bd4dc..ecd23360d0 100644 --- a/stable/redmine/values.yaml +++ b/stable/redmine/values.yaml @@ -301,6 +301,11 @@ resources: {} # cpu: "2" # memory: "1G" +## Pod Security Context +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ +## +securityContext: {} + ## Configure extra options for liveness probe ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes) ##