66 lines
1.9 KiB
Smarty
66 lines
1.9 KiB
Smarty
|
{{/*
|
||
|
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.
|
||
|
|
||
|
`SPDX-License-Identifier: Apache-2.0`
|
||
|
|
||
|
This file is considered to be modified by the TrueCharts Project.
|
||
|
*/}}
|
||
|
|
||
|
{{/* vim: set filetype=mustache: */}}
|
||
|
{{/*
|
||
|
Return the proper image name
|
||
|
{{ include "common.images.image" ( dict "imageRoot" .Values.path.to.the.image "global" $) }}
|
||
|
*/}}
|
||
|
{{- define "common.images.image" -}}
|
||
|
{{- $registryName := .imageRoot.registry -}}
|
||
|
{{- $repositoryName := .imageRoot.repository -}}
|
||
|
{{- $tag := .imageRoot.tag | toString -}}
|
||
|
{{- if .global }}
|
||
|
{{- if .global.imageRegistry }}
|
||
|
{{- $registryName = .global.imageRegistry -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
{{- if $registryName }}
|
||
|
{{- printf "%s/%s:%s" $registryName $repositoryName $tag -}}
|
||
|
{{- else -}}
|
||
|
{{- printf "%s:%s" $repositoryName $tag -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{/*
|
||
|
Return the proper Docker Image Registry Secret Names
|
||
|
{{ include "common.images.pullSecrets" ( dict "images" (list .Values.path.to.the.image1, .Values.path.to.the.image2) "global" .Values.global) }}
|
||
|
*/}}
|
||
|
{{- define "common.images.pullSecrets" -}}
|
||
|
{{- $pullSecrets := list }}
|
||
|
|
||
|
{{- if .global }}
|
||
|
{{- range .global.imagePullSecrets -}}
|
||
|
{{- $pullSecrets = append $pullSecrets . -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- range .images -}}
|
||
|
{{- range .pullSecrets -}}
|
||
|
{{- $pullSecrets = append $pullSecrets . -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- if (not (empty $pullSecrets)) }}
|
||
|
imagePullSecrets:
|
||
|
{{- range $pullSecrets }}
|
||
|
- name: {{ . }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- end -}}
|