mirror of
https://github.com/bitnami/charts.git
synced 2026-02-23 06:17:14 +08:00
* [bitnami/several] Change pullPolicy for bitnami-shell image * Add rolling tag check in the NOTES.txt * Fix non-standard names * Use macro when defined * Update Chart.yaml * Fix typo
116 lines
3.4 KiB
Smarty
116 lines
3.4 KiB
Smarty
{{/*
|
|
Create a default fully qualified app name.
|
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
*/}}
|
|
{{- define "phpbb.mariadb.fullname" -}}
|
|
{{- printf "%s-%s" .Release.Name "mariadb" | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper phpBB image name
|
|
*/}}
|
|
{{- define "phpbb.image" -}}
|
|
{{- include "common.images.image" ( dict "imageRoot" .Values.image "global" .Values.global ) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper image name (for the init container volume-permissions image)
|
|
*/}}
|
|
{{- define "phpbb.volumePermissions.image" -}}
|
|
{{- include "common.images.image" ( dict "imageRoot" .Values.volumePermissions.image "global" .Values.global ) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper image name (for the metrics image)
|
|
*/}}
|
|
{{- define "phpbb.metrics.image" -}}
|
|
{{- include "common.images.image" ( dict "imageRoot" .Values.metrics.image "global" .Values.global ) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper Docker Image Registry Secret Names
|
|
*/}}
|
|
{{- define "phpbb.imagePullSecrets" -}}
|
|
{{- include "common.images.pullSecrets" (dict "images" (list .Values.image .Values.metrics.image) "global" .Values.global) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper Storage Class
|
|
*/}}
|
|
{{- define "phpbb.storageClass" -}}
|
|
{{- include "common.storage.class" ( dict "persistence" .Values.persistence "global" .Values.global ) -}}
|
|
{{- end -}}
|
|
|
|
{{/* phpBB credential secret name */}}
|
|
{{- define "phpbb.secretName" -}}
|
|
{{- coalesce .Values.existingSecret (include "common.names.fullname" .) -}}
|
|
{{- end -}}
|
|
|
|
{{/* Check if there are rolling tags in the images */}}
|
|
{{- define "phpbb.checkRollingTags" -}}
|
|
{{- include "common.warnings.rollingTag" .Values.image -}}
|
|
{{- include "common.warnings.rollingTag" .Values.metrics.image -}}
|
|
{{- include "common.warnings.rollingTag" .Values.volumePermissions.image -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the MariaDB Hostname
|
|
*/}}
|
|
{{- define "phpbb.databaseHost" -}}
|
|
{{- if .Values.mariadb.enabled }}
|
|
{{- if eq .Values.mariadb.architecture "replication" }}
|
|
{{- printf "%s-%s" (include "phpbb.mariadb.fullname" .) "primary" | trunc 63 | trimSuffix "-" -}}
|
|
{{- else -}}
|
|
{{- printf "%s" (include "phpbb.mariadb.fullname" .) -}}
|
|
{{- end -}}
|
|
{{- else -}}
|
|
{{- printf "%s" .Values.externalDatabase.host -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the MariaDB Port
|
|
*/}}
|
|
{{- define "phpbb.databasePort" -}}
|
|
{{- if .Values.mariadb.enabled }}
|
|
{{- printf "3306" -}}
|
|
{{- else -}}
|
|
{{- printf "%d" (.Values.externalDatabase.port | int ) -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the MariaDB Database Name
|
|
*/}}
|
|
{{- define "phpbb.databaseName" -}}
|
|
{{- if .Values.mariadb.enabled }}
|
|
{{- printf "%s" .Values.mariadb.auth.database -}}
|
|
{{- else -}}
|
|
{{- printf "%s" .Values.externalDatabase.database -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the MariaDB User
|
|
*/}}
|
|
{{- define "phpbb.databaseUser" -}}
|
|
{{- if .Values.mariadb.enabled }}
|
|
{{- printf "%s" .Values.mariadb.auth.username -}}
|
|
{{- else -}}
|
|
{{- printf "%s" .Values.externalDatabase.user -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the MariaDB Secret Name
|
|
*/}}
|
|
{{- define "phpbb.databaseSecretName" -}}
|
|
{{- if .Values.mariadb.enabled }}
|
|
{{- printf "%s" (include "phpbb.mariadb.fullname" .) -}}
|
|
{{- else if .Values.externalDatabase.existingSecret -}}
|
|
{{- printf "%s" .Values.externalDatabase.existingSecret -}}
|
|
{{- else -}}
|
|
{{- printf "%s-%s" .Release.Name "externaldb" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|