From f5a70102b264b3a7c410079075adbd1995ff5932 Mon Sep 17 00:00:00 2001 From: Tin Date: Mon, 17 May 2021 11:23:39 -0500 Subject: [PATCH] fix(perm): fixes template permission Some nova gotpl files have +x permission. This changes it so they are consistent with the other gotpl files. Change-Id: Ifcd4c1032b41363ea8b1d43407315d68d7e9eec8 Signed-off-by: Tin --- nova/Chart.yaml | 2 +- nova/templates/bin/_cell-setup.sh.tpl | 0 nova/templates/bin/_db-sync.sh.tpl | 0 releasenotes/notes/nova.yaml | 2 ++ 4 files changed, 3 insertions(+), 1 deletion(-) mode change 100755 => 100644 nova/templates/bin/_cell-setup.sh.tpl mode change 100755 => 100644 nova/templates/bin/_db-sync.sh.tpl diff --git a/nova/Chart.yaml b/nova/Chart.yaml index ef48c2f5ee..3e7df46210 100644 --- a/nova/Chart.yaml +++ b/nova/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Nova name: nova -version: 0.2.0 +version: 0.2.1 home: https://docs.openstack.org/nova/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png sources: diff --git a/nova/templates/bin/_cell-setup.sh.tpl b/nova/templates/bin/_cell-setup.sh.tpl old mode 100755 new mode 100644 diff --git a/nova/templates/bin/_db-sync.sh.tpl b/nova/templates/bin/_db-sync.sh.tpl old mode 100755 new mode 100644 diff --git a/releasenotes/notes/nova.yaml b/releasenotes/notes/nova.yaml index 27a15b0408..10221ea923 100644 --- a/releasenotes/notes/nova.yaml +++ b/releasenotes/notes/nova.yaml @@ -21,3 +21,5 @@ nova: - 0.1.18 Fix the nova-compute-ironic label issue - 0.1.19 Host resource scale adjustment about ironic - 0.2.0 Remove support for releases before T + - 0.2.1 Remove unnecessary +x permission on gotpl files +...