diff --git a/plexporter/templates/deployment.yaml b/plexporter/templates/deployment.yaml index 065a497..1da50fb 100644 --- a/plexporter/templates/deployment.yaml +++ b/plexporter/templates/deployment.yaml @@ -33,17 +33,17 @@ spec: image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - - name: http + - name: metrics containerPort: 9000 protocol: TCP livenessProbe: httpGet: path: / - port: http + port: metrics readinessProbe: httpGet: path: / - port: http + port: metrics resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }}