fix: add missing name template var
This commit is contained in:
parent
d82f5df53f
commit
e62462e790
2 changed files with 10 additions and 2 deletions
|
@ -4,7 +4,7 @@ description: |
|
||||||
ntfy lets you send push notifications to your phone or desktop via scripts from any computer
|
ntfy lets you send push notifications to your phone or desktop via scripts from any computer
|
||||||
appVersion: v2.10.0
|
appVersion: v2.10.0
|
||||||
type: application
|
type: application
|
||||||
version: 0.2.2
|
version: 0.2.3
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Tommy Skaug
|
- name: Tommy Skaug
|
||||||
email: tommy@skaug.me
|
email: tommy@skaug.me
|
||||||
|
|
|
@ -1,4 +1,12 @@
|
||||||
# Define a template for the chart's full name.
|
{{/* vim: set filetype=mustache: */}}
|
||||||
|
{{/*
|
||||||
|
Expand the name of the chart.
|
||||||
|
*/}}
|
||||||
|
{{- define "ntfy.name" -}}
|
||||||
|
{{- .Values.nameOverride | default .Chart.Name | trunc 63 | trimSuffix "-" -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Create a default fully qualified app name.
|
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).
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
||||||
|
|
Loading…
Reference in a new issue