From dd535daac0bb0e602eefa45e8dc448fd07fbdd33 Mon Sep 17 00:00:00 2001 From: Dominik Kaminski Date: Thu, 25 Jan 2024 13:38:54 +0100 Subject: [PATCH] fix(element): Change name of neodatefix bot job --- ...es-matrix-neodatefix-bot-bootstrap.yaml.gotmpl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/helmfile/apps/element/values-matrix-neodatefix-bot-bootstrap.yaml.gotmpl b/helmfile/apps/element/values-matrix-neodatefix-bot-bootstrap.yaml.gotmpl index d238851a..c7162926 100644 --- a/helmfile/apps/element/values-matrix-neodatefix-bot-bootstrap.yaml.gotmpl +++ b/helmfile/apps/element/values-matrix-neodatefix-bot-bootstrap.yaml.gotmpl @@ -21,4 +21,19 @@ image: tag: {{ .Values.images.synapseCreateUser.tag | quote }} imagePullPolicy: {{ .Values.global.imagePullPolicy | quote }} +fullnameOverride: "matrix-neodatefix-bot-bootstrap" + +securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - "ALL" + privileged: false + readOnlyRootFilesystem: true + runAsGroup: 101 + runAsNonRoot: true + runAsUser: 101 + seccompProfile: + type: "RuntimeDefault" + ...