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
This commit is contained in:
sehun.jeong 2023-09-18 20:19:30 +09:00 committed by sehun-jeong
parent 56842b39d4
commit 173e004f13
3 changed files with 3 additions and 2 deletions

View File

@ -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:

View File

@ -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 }}

View File

@ -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
...