mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
* [bitnami/nats] New major version Signed-off-by: juan131 <juanariza@vmware.com> * Fix linting issues Signed-off-by: juan131 <juanariza@vmware.com>
73 lines
2.2 KiB
Smarty
73 lines
2.2 KiB
Smarty
{{/* vim: set filetype=mustache: */}}
|
|
|
|
{{/*
|
|
Return the proper Nats image name
|
|
*/}}
|
|
{{- define "nats.image" -}}
|
|
{{ include "common.images.image" (dict "imageRoot" .Values.image "global" .Values.global) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper image name (for the metrics image)
|
|
*/}}
|
|
{{- define "nats.metrics.image" -}}
|
|
{{ include "common.images.image" (dict "imageRoot" .Values.metrics.image "global" .Values.global) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper Docker Image Registry Secret Names
|
|
*/}}
|
|
{{- define "nats.imagePullSecrets" -}}
|
|
{{- include "common.images.pullSecrets" (dict "images" (list .Values.image .Values.metrics.image) "global" .Values.global) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create a random alphanumeric password string.
|
|
We prepend a random letter to the string to avoid password validation errors
|
|
*/}}
|
|
{{- define "nats.randomPassword" -}}
|
|
{{- randAlpha 1 -}}{{- randAlphaNum 9 -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the appropriate apiVersion for networkpolicy.
|
|
*/}}
|
|
{{- define "networkPolicy.apiVersion" -}}
|
|
{{- if semverCompare ">=1.4-0, <1.7-0" .Capabilities.KubeVersion.GitVersion -}}
|
|
{{- print "extensions/v1beta1" -}}
|
|
{{- else -}}
|
|
{{- print "networking.k8s.io/v1" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Check if there are rolling tags in the images
|
|
*/}}
|
|
{{- define "nats.checkRollingTags" -}}
|
|
{{- include "common.warnings.rollingTag" .Values.image }}
|
|
{{- include "common.warnings.rollingTag" .Values.metrics.image }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Compile all warnings into a single message, and call fail.
|
|
*/}}
|
|
{{- define "nats.validateValues" -}}
|
|
{{- $messages := list -}}
|
|
{{- $messages := append $messages (include "nats.validateValues.resourceType" .) -}}
|
|
{{- $messages := without $messages "" -}}
|
|
{{- $message := join "\n" $messages -}}
|
|
|
|
{{- if $message -}}
|
|
{{- printf "\nVALUES VALIDATION:\n%s" $message | fail -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/* Validate values of NATS - must provide a valid resourceType ("deployment" or "statefulset") */}}
|
|
{{- define "nats.validateValues.resourceType" -}}
|
|
{{- if and (ne .Values.resourceType "deployment") (ne .Values.resourceType "statefulset") -}}
|
|
nats: resourceType
|
|
Invalid resourceType selected. Valid values are "deployment" and
|
|
"statefulset". Please set a valid mode (--set resourceType="xxxx")
|
|
{{- end -}}
|
|
{{- end -}}
|