From f89bfa1c57d2bdd52dae0d11c4f1335eaa27938a Mon Sep 17 00:00:00 2001 From: Martin Montes Date: Thu, 4 Jul 2024 13:23:08 +0200 Subject: [PATCH] Fix photoprism probes and resources --- deploy/charts/photoprism/Chart.yaml | 2 +- deploy/charts/photoprism/templates/deployment.yml | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/deploy/charts/photoprism/Chart.yaml b/deploy/charts/photoprism/Chart.yaml index 3a89232..ea7c0f5 100644 --- a/deploy/charts/photoprism/Chart.yaml +++ b/deploy/charts/photoprism/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: photoprism description: Photoprism by mmontes11 type: application -version: 0.7.0 +version: 0.8.0 appVersion: "240531" maintainers: - name: mmontes11 diff --git a/deploy/charts/photoprism/templates/deployment.yml b/deploy/charts/photoprism/templates/deployment.yml index 07e5831..d992179 100644 --- a/deploy/charts/photoprism/templates/deployment.yml +++ b/deploy/charts/photoprism/templates/deployment.yml @@ -35,17 +35,19 @@ spec: path: / port: http {{ with .Values.livenessProbe }} - {{ toYaml . | nindent 12 }} + {{ toYaml . | nindent 10 }} {{ end }} readinessProbe: httpGet: path: / port: http {{ with .Values.readinessProbe }} - {{ toYaml . | nindent 12 }} + {{ toYaml . | nindent 10 }} {{ end }} + {{ with .Values.resources }} resources: - {{ toYaml .Values.resources | nindent 12 }} + {{ toYaml . | nindent 10 }} + {{ end }} ports: - containerPort: 2342 name: http