From 173e004f138eb8b5c1bdbfc462bdf6529b989367 Mon Sep 17 00:00:00 2001 From: "sehun.jeong" Date: Mon, 18 Sep 2023 20:19:30 +0900 Subject: [PATCH] Update port name for manila the port name of the "manila/templates/service-api.yaml" file is b-api, resulting in 503 errors. It should change b-api to m-api Closes-Bug: #2036395 Change-Id: I8fca75f60d82c67eab833ca09e459b028daaa3db --- manila/Chart.yaml | 2 +- manila/templates/service-api.yaml | 2 +- releasenotes/notes/manila.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/manila/Chart.yaml b/manila/Chart.yaml index 311878e606..7379d906ff 100644 --- a/manila/Chart.yaml +++ b/manila/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Manila name: manila -version: 0.1.4 +version: 0.1.5 home: https://docs.openstack.org/manila/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Manila/OpenStack_Project_Manila_vertical.png sources: diff --git a/manila/templates/service-api.yaml b/manila/templates/service-api.yaml index f80ef97342..c529fd8b36 100644 --- a/manila/templates/service-api.yaml +++ b/manila/templates/service-api.yaml @@ -21,7 +21,7 @@ metadata: name: {{ tuple "share" "internal" . | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" }} spec: ports: - - name: b-api + - name: m-api port: {{ tuple "share" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }} {{ if .Values.network.api.node_port.enabled }} nodePort: {{ .Values.network.api.node_port.port }} diff --git a/releasenotes/notes/manila.yaml b/releasenotes/notes/manila.yaml index f762fdc3ed..00f89a00c0 100644 --- a/releasenotes/notes/manila.yaml +++ b/releasenotes/notes/manila.yaml @@ -5,4 +5,5 @@ manila: - 0.1.2 Add Zed overrides - 0.1.3 Add 2023.1 overrides - 0.1.4 Add Ubuntu Jammy overrides + - 0.1.5 Update port name of service-api.yaml ...