diff --git a/tatort/Chart.yaml b/tatort/Chart.yaml index 2c9c3e9..8ab1c92 100644 --- a/tatort/Chart.yaml +++ b/tatort/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: tatort description: A Helm chart for Kubernetes type: application -version: 0.1.0 +version: "0.1.0" appVersion: "0.0.1" diff --git a/tatort/templates/deployment.yaml b/tatort/templates/deployment.yaml index 254d25a..b995db1 100644 --- a/tatort/templates/deployment.yaml +++ b/tatort/templates/deployment.yaml @@ -1,9 +1,9 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: {{ include "tatort,fullname" . }} + name: {{ include "tatort.fullname" . }} labels: - {{- include "tatort,labels" . | nindent 4 }} + {{- include "tatort.labels" . | nindent 4 }} spec: {{- if not .Values.autoscaling.enabled }} replicas: {{ .Values.replicaCount }} diff --git a/tatort/templates/service.yaml b/tatort/templates/service.yaml index 8b1b76a..ee9577c 100644 --- a/tatort/templates/service.yaml +++ b/tatort/templates/service.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Service metadata: - name: {{ include tatort.fullname . }} + name: {{ include "tatort.fullname" . }} labels: {{- include "tatort.labels" . | nindent 4 }} spec: diff --git a/tatort/values.yaml b/tatort/values.yaml index f269e54..bb6df96 100644 --- a/tatort/values.yaml +++ b/tatort/values.yaml @@ -6,8 +6,8 @@ image: pullPolicy: IfNotPresent imagePullSecrets: [] -nameOverride: "" -fullnameOverride: "" +nameOverride: "tatort" +fullnameOverride: "tatort" serviceAccount: # Specifies whether a service account should be created