gitdataai/admin/deploy/templates/_helpers.tpl
ZhenYi b8e5cbbb69
Some checks are pending
CI / Rust Lint & Check (push) Waiting to run
CI / Rust Tests (push) Waiting to run
CI / Frontend Lint & Type Check (push) Waiting to run
CI / Frontend Build (push) Blocked by required conditions
feat(admin): add Docker and Kubernetes deployment for admin panel
2026-04-19 21:49:22 +08:00

16 lines
499 B
Smarty

{{/* =============================================================================
Common helpers
============================================================================= */}}
{{- define "admin.fullname" -}}
{{- .Release.Name -}}
{{- end -}}
{{- define "admin.namespace" -}}
{{- .Values.namespace | default .Release.Namespace -}}
{{- end -}}
{{- define "admin.image" -}}
{{- printf "%s/%s:%s" .Values.image.registry .Values.admin.image.repository .Values.admin.image.tag -}}
{{- end -}}