Skip to content

Commit

Permalink
Update immich chart for release v1.118.0
Browse files Browse the repository at this point in the history
v1.118.0 has new port and API endpoints requirements
  • Loading branch information
kriegalex committed Nov 20, 2024
1 parent da0a9e3 commit 11a0107
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
8 changes: 4 additions & 4 deletions charts/immich/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
apiVersion: v2
description: A chart to power Immich (immich.app) running on kubernetes
name: immich
version: 0.7.2
appVersion: v1.109.2
version: 0.8.4
appVersion: v1.119.0
home: https://immich.app/
icon: https://raw.githubusercontent.com/immich-app/immich/main/design/immich-logo.svg
sources:
Expand All @@ -21,11 +21,11 @@ dependencies:
- name: postgresql
condition: postgresql.enabled
repository: https://charts.bitnami.com/bitnami
version: 13.2.24
version: 16.0.0
- name: redis
condition: redis.enabled
repository: https://charts.bitnami.com/bitnami
version: 18.4.0
version: 19.5.3
annotations:
artifacthub.io/category: storage
artifacthub.io/changes: |-
Expand Down
17 changes: 13 additions & 4 deletions charts/immich/templates/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ global:

env:
{{ if .Values.immich.metrics.enabled }}
IMMICH_METRICS: true
IMMICH_TELEMETRY_INCLUDE: all
{{ end }}
{{- if .Values.immich.configuration }}
IMMICH_CONFIG_FILE: /config/immich-config.yaml
Expand All @@ -24,7 +24,7 @@ service:
http:
enabled: true
primary: true
port: 3001
port: 2283
protocol: HTTP
metrics-api:
enabled: {{ .Values.immich.metrics.enabled }}
Expand All @@ -51,15 +51,24 @@ probes:
custom: true
spec:
httpGet:
path: /api/server-info/ping
path: /api/server/ping
port: http
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
startup:
enabled: false
enabled: true
custom: true
spec:
httpGet:
path: /api/server/ping
port: http
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 30

persistence:
{{- if .Values.immich.configuration }}
Expand Down
4 changes: 3 additions & 1 deletion charts/immich/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
IMMICH_MACHINE_LEARNING_URL: '{{ printf "http://%s-machine-learning:3003" .Release.Name }}'

image:
tag: v1.109.2
tag: v1.119.0

immich:
metrics:
Expand Down Expand Up @@ -58,6 +58,8 @@ postgresql:
database: immich
password: immich
primary:
containerSecurityContext:
readOnlyRootFilesystem: false
initdb:
scripts:
create-extensions.sql: |
Expand Down

0 comments on commit 11a0107

Please sign in to comment.