From fc680cf8c4d949674ec621d520dbfc000e5dd471 Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Wed, 27 Jan 2021 20:54:44 -0600 Subject: [PATCH] Update typo in subPath for volume mount When using a chart with the flux operator and helm3, it fails when encountering a volumeMount "subpath" instead of "subPath". This change corrects the typo to the right camelcase entry. Change-Id: Id2d9ea25445d84f89b299c7f0b24da1cc5aaf264 --- keystone/Chart.yaml | 2 +- keystone/templates/deployment-api.yaml | 2 +- releasenotes/notes/keystone.yaml | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/keystone/Chart.yaml b/keystone/Chart.yaml index 3c4f4442ef..83e7f295f3 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.1.5 +version: 0.1.6 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/templates/deployment-api.yaml b/keystone/templates/deployment-api.yaml index a3a143dfd1..0090055beb 100644 --- a/keystone/templates/deployment-api.yaml +++ b/keystone/templates/deployment-api.yaml @@ -115,7 +115,7 @@ spec: readOnly: true - name: keystone-etc mountPath: /etc/keystone/access_rules.json - subpath: access_rules.json + subPath: access_rules.json readOnly: true - name: keystone-etc mountPath: /etc/keystone/sso_callback_template.html diff --git a/releasenotes/notes/keystone.yaml b/releasenotes/notes/keystone.yaml index 05e0405a19..608b691429 100644 --- a/releasenotes/notes/keystone.yaml +++ b/releasenotes/notes/keystone.yaml @@ -1,3 +1,9 @@ --- keystone: - 0.1.0 Initial Chart + - 0.1.1 UPDATE + - 0.1.2 UPDATE + - 0.1.3 UPDATE + - 0.1.4 UPDATE + - 0.1.5 Revert clusterissuer change + - 0.1.6 Fix typo in subPath entry