{{/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */}} {{/* abstract: | This function returns endpoint ":" pair from an endpoint definition. This is used in kubernetes-entrypoint to support dependencies between different services in different namespaces. returns: the endpoint namespace and the service name, delimited by a colon Normally, the service name is constructed dynamically from the hostname however when an ip address is used as the hostname, we default to namespace:endpointCategoryName in order to construct a valid service name however this can be overridden to a custom service name by defining .service.name within the endpoint definition values: | endpoints: cluster_domain_suffix: cluster.local oslo_db: namespace: foo hosts: default: mariadb host_fqdn_override: default: null usage: | {{ tuple oslo_db internal . | include "helm-toolkit.endpoints.service_name_endpoint_with_namespace_lookup" }} return: | foo:mariadb */}} {{- define "helm-toolkit.endpoints.service_name_endpoint_with_namespace_lookup" -}} {{- $type := index . 0 -}} {{- $endpoint := index . 1 -}} {{- $context := index . 2 -}} {{- $typeYamlSafe := $type | replace "-" "_" }} {{- $endpointMap := index $context.Values.endpoints $typeYamlSafe }} {{- with $endpointMap -}} {{- $endpointName := index .hosts $endpoint | default .hosts.default }} {{- $endpointNamespace := .namespace | default $context.Release.Namespace }} {{- if regexMatch "[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+" $endpointName }} {{- if .service.name }} {{- printf "%s:%s" $endpointNamespace .service.name -}} {{- else -}} {{- printf "%s:%s" $endpointNamespace $typeYamlSafe -}} {{- end -}} {{- else -}} {{- printf "%s:%s" $endpointNamespace $endpointName -}} {{- end -}} {{- end -}} {{- end -}}