From 21dc6b549f85f34dc9730e6e4ddaa759ab901f4a Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 26 Oct 2024 12:29:57 -0700 Subject: [PATCH] mirrormanager: try more correctly to add a secondary gid for mirrormanager Signed-off-by: Kevin Fenzi --- roles/openshift-apps/mirrormanager/templates/_macros.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openshift-apps/mirrormanager/templates/_macros.yml b/roles/openshift-apps/mirrormanager/templates/_macros.yml index eb2d2b647d..172626e464 100644 --- a/roles/openshift-apps/mirrormanager/templates/_macros.yml +++ b/roles/openshift-apps/mirrormanager/templates/_macros.yml @@ -88,5 +88,5 @@ {# oc describe project/mirrormanager | grep supplemental-groups #} {% macro security_context() -%} securityContext: - supplementalGroups: [{{ (env == "staging")|ternary("1001280000", "1000890000") }}] + supplementalGroups: [{{ (env == "staging")|ternary("1001280000", "1000890000") }},"263"] {% endmacro %}