diff --git a/helm-toolkit/Chart.yaml b/helm-toolkit/Chart.yaml index 04f22bec1..f849ba869 100644 --- a/helm-toolkit/Chart.yaml +++ b/helm-toolkit/Chart.yaml @@ -15,7 +15,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Helm-Toolkit name: helm-toolkit -version: 0.2.75 +version: 0.2.76 home: https://docs.openstack.org/openstack-helm icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png sources: diff --git a/helm-toolkit/templates/manifests/_ingress.tpl b/helm-toolkit/templates/manifests/_ingress.tpl index cacb4b813..792571cb7 100644 --- a/helm-toolkit/templates/manifests/_ingress.tpl +++ b/helm-toolkit/templates/manifests/_ingress.tpl @@ -708,6 +708,10 @@ spec: {{- range $v := without (index $endpointHost.tls "dnsNames" | default list) $hostNameFull }} {{- $vHosts = append $vHosts $v }} {{- end }} +{{- if hasKey $envAll.Values.endpoints "alias_fqdn" }} +{{- $alias_host := $envAll.Values.endpoints.alias_fqdn }} +{{- $vHosts = append $vHosts $alias_host }} +{{- end }} {{- $secretName := index $envAll.Values.secrets "tls" ( $backendServiceType | replace "-" "_" ) $backendService $endpoint }} {{- $_ := required "You need to specify a secret in your values for the endpoint" $secretName }} tls: diff --git a/releasenotes/notes/helm-toolkit.yaml b/releasenotes/notes/helm-toolkit.yaml index aff910652..2324dab5c 100644 --- a/releasenotes/notes/helm-toolkit.yaml +++ b/releasenotes/notes/helm-toolkit.yaml @@ -82,4 +82,5 @@ helm-toolkit: - 0.2.73 Add ability to get multiple hosts endpoint - 0.2.74 Remove trailing slash in endpoinds - 0.2.75 Add daemonset_overrides_root util + - 0.2.76 update tookit to support fqdn alias ...