Skip to content

Commit

Permalink
Fix photoprism probes and resources
Browse files Browse the repository at this point in the history
  • Loading branch information
mmontes11 committed Jul 4, 2024
1 parent d6a26c7 commit f89bfa1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deploy/charts/photoprism/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 5 additions & 3 deletions deploy/charts/photoprism/templates/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f89bfa1

Please sign in to comment.