From 5708319cd8acf4edbe31d8416da52b89e8a97fd5 Mon Sep 17 00:00:00 2001 From: James Denton Date: Tue, 27 Aug 2024 16:09:58 -0500 Subject: [PATCH] Add service role to the Neutron user This patch adds the `service` role to the `neutron` user to allow for the `binding:profile` attribute of a port to be updated by the service user. Closes-Bug: #2078002 Change-Id: Iae0d83bfdb80aceb9c5ee894af22eb9cd8e7626b --- neutron/Chart.yaml | 2 +- neutron/values.yaml | 2 +- releasenotes/notes/neutron.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/neutron/Chart.yaml b/neutron/Chart.yaml index ac2e41abee..081bb0e082 100644 --- a/neutron/Chart.yaml +++ b/neutron/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Neutron name: neutron -version: 0.3.46 +version: 0.3.47 home: https://docs.openstack.org/neutron/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Neutron/OpenStack_Project_Neutron_vertical.png sources: diff --git a/neutron/values.yaml b/neutron/values.yaml index 911fd70e13..399419b22b 100644 --- a/neutron/values.yaml +++ b/neutron/values.yaml @@ -2447,7 +2447,7 @@ endpoints: user_domain_name: default project_domain_name: default neutron: - role: admin + role: admin,service region_name: RegionOne username: neutron password: password diff --git a/releasenotes/notes/neutron.yaml b/releasenotes/notes/neutron.yaml index a09931d3b0..26629eabd1 100644 --- a/releasenotes/notes/neutron.yaml +++ b/releasenotes/notes/neutron.yaml @@ -88,4 +88,5 @@ neutron: - 0.3.44 Add OVN VPNaas support - 0.3.45 Fix ironic/baremetal authentication - 0.3.46 Use quay.io/airshipit/kubernetes-entrypoint:latest-ubuntu_focal by default + - 0.3.47 Add service role to the Neutron user ...