From 613fecd37f52141a6941bf7088f7c1728e2a8e6d Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Fri, 22 Oct 2021 16:48:17 -0500 Subject: [PATCH] Remove extra fsGroup The keystone chart recently had a change to fix the world readable warning message, but an extra fsGroup entry causes the chart to fail to deploy when using helm3. This change removes the offending entry from the values file in the keystone chart. Change-Id: I540854da7123f413215b627d3bfb077c6f4864c6 --- keystone/Chart.yaml | 2 +- keystone/values.yaml | 1 - releasenotes/notes/keystone.yaml | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keystone/Chart.yaml b/keystone/Chart.yaml index 37c73f8e73..7fbba9e44a 100644 --- a/keystone/Chart.yaml +++ b/keystone/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Keystone name: keystone -version: 0.2.15 +version: 0.2.16 home: https://docs.openstack.org/keystone/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png sources: diff --git a/keystone/values.yaml b/keystone/values.yaml index 4b04dcdf8d..54d23c373e 100644 --- a/keystone/values.yaml +++ b/keystone/values.yaml @@ -169,7 +169,6 @@ pod: readOnlyRootFilesystem: true allowPrivilegeEscalation: false runAsGroup: 42424 - fsGroup: 42424 credential_setup: pod: runAsUser: 42424 diff --git a/releasenotes/notes/keystone.yaml b/releasenotes/notes/keystone.yaml index 4f0212c9f4..0e86b3ae41 100644 --- a/releasenotes/notes/keystone.yaml +++ b/releasenotes/notes/keystone.yaml @@ -31,4 +31,5 @@ keystone: - 0.2.13 Helm 3 - Fix more Job Labels - 0.2.14 Update htk requirements repo - 0.2.15 Reduce log chattiness + - 0.2.16 Remove extra fsGroup ...