Skip to content

Commit

Permalink
apps/photos: use k8s default rollout strategy and not some library de…
Browse files Browse the repository at this point in the history
…faults
  • Loading branch information
paulfantom committed May 6, 2024
1 parent 80811aa commit f6510c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/photos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
name: postgres-user
key: password
DB_DATABASE_NAME: "immich"
IMMICH_METRICS: "true"
IMMICH_METRICS: "true" # FIXME: most likely not needed since immich.metrics.enabled is set to true. Left here until chart 0.6.0+ is released
IMMICH_MACHINE_LEARNING_URL: '{{ printf "http://%s-machine-learning:3003" .Release.Name }}'

immich:
Expand Down Expand Up @@ -47,6 +47,7 @@ redis:
server:
controller:
replicas: 2
strategy: RollingUpdate
probes:
liveness:
spec:
Expand Down Expand Up @@ -95,6 +96,7 @@ microservices:
enabled: true
controller:
replicas: 1
strategy: RollingUpdate
resources:
requests:
cpu: 400m
Expand All @@ -113,6 +115,7 @@ machine-learning:
enabled: true
controller:
replicas: 1
strategy: RollingUpdate
resources:
requests:
cpu: 10m
Expand Down

0 comments on commit f6510c2

Please sign in to comment.