diff --git a/nzbget/Chart.yaml b/nzbget/Chart.yaml index af60c594..30f7cca6 100644 --- a/nzbget/Chart.yaml +++ b/nzbget/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 147 description: NZBGet is a Usenet downloader client name: nzbget -version: 0.1.1 +version: 0.1.2 keywords: - nzbget - usenet diff --git a/nzbget/templates/config-pvc.yaml b/nzbget/templates/config-pvc.yaml index 8e337965..279889f7 100644 --- a/nzbget/templates/config-pvc.yaml +++ b/nzbget/templates/config-pvc.yaml @@ -5,10 +5,10 @@ apiVersion: v1 metadata: name: {{ template "nzbget.fullname" . }}-config labels: - app: {{ template "nzbget.fullname" . }} - chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" - release: "{{ .Release.Name }}" - heritage: "{{ .Release.Service }}" + app.kubernetes.io/name: {{ include "nzbget.name" . }} + helm.sh/chart: {{ include "nzbget.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} spec: accessModes: - {{ .Values.persistence.config.accessMode | quote }} diff --git a/nzbget/templates/deployment.yaml b/nzbget/templates/deployment.yaml index 75b66d39..b13aa027 100644 --- a/nzbget/templates/deployment.yaml +++ b/nzbget/templates/deployment.yaml @@ -3,10 +3,10 @@ kind: Deployment metadata: name: {{ include "nzbget.fullname" . }} labels: - app: {{ template "nzbget.name" . }} - chart: {{ template "nzbget.chart" . }} - release: {{ .Release.Name }} - heritage: {{ .Release.Service }} + app.kubernetes.io/name: {{ include "nzbget.name" . }} + helm.sh/chart: {{ include "nzbget.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} spec: replicas: {{ .Values.replicaCount }} selector: diff --git a/nzbget/templates/downloads-pvc.yaml b/nzbget/templates/downloads-pvc.yaml index 79e355ce..bd379cff 100644 --- a/nzbget/templates/downloads-pvc.yaml +++ b/nzbget/templates/downloads-pvc.yaml @@ -5,10 +5,10 @@ apiVersion: v1 metadata: name: {{ template "nzbget.fullname" . }}-downloads labels: - app: {{ template "nzbget.fullname" . }} - chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" - release: "{{ .Release.Name }}" - heritage: "{{ .Release.Service }}" + app.kubernetes.io/name: {{ include "nzbget.name" . }} + helm.sh/chart: {{ include "nzbget.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} spec: accessModes: - {{ .Values.persistence.downloads.accessMode | quote }}