From dc0764f42cd6d82096fbaf4df50956c010bde2e5 Mon Sep 17 00:00:00 2001 From: TrueCharts-Bot Date: Fri, 24 Feb 2023 15:06:18 +0000 Subject: [PATCH] Commit new Chart releases for TrueCharts Signed-off-by: TrueCharts-Bot --- stable/immich/5.0.14/app-changelog.md | 9 --- stable/immich/5.0.14/templates/_ml.tpl | 60 --------------- stable/immich/{5.0.14 => 5.0.15}/CHANGELOG.md | 18 ++--- stable/immich/{5.0.14 => 5.0.15}/Chart.yaml | 4 +- stable/immich/{5.0.14 => 5.0.15}/README.md | 0 stable/immich/5.0.15/app-changelog.md | 9 +++ .../immich/{5.0.14 => 5.0.15}/app-readme.md | 0 .../charts/common-11.1.2.tgz | Bin .../charts/postgresql-11.0.29.tgz | Bin .../charts/redis-5.0.32.tgz | Bin .../immich/{5.0.14 => 5.0.15}/ix_values.yaml | 12 ++- .../immich/{5.0.14 => 5.0.15}/questions.yaml | 0 .../templates/_configmap.tpl | 0 .../templates/_microservices.tpl | 0 stable/immich/5.0.15/templates/_ml.tpl | 69 ++++++++++++++++++ .../{5.0.14 => 5.0.15}/templates/_proxy.tpl | 0 .../{5.0.14 => 5.0.15}/templates/_secret.tpl | 0 .../{5.0.14 => 5.0.15}/templates/_web.tpl | 0 .../{5.0.14 => 5.0.15}/templates/common.yaml | 0 stable/immich/{5.0.14 => 5.0.15}/values.yaml | 0 20 files changed, 97 insertions(+), 84 deletions(-) delete mode 100644 stable/immich/5.0.14/app-changelog.md delete mode 100644 stable/immich/5.0.14/templates/_ml.tpl rename stable/immich/{5.0.14 => 5.0.15}/CHANGELOG.md (88%) rename stable/immich/{5.0.14 => 5.0.15}/Chart.yaml (96%) rename stable/immich/{5.0.14 => 5.0.15}/README.md (100%) create mode 100644 stable/immich/5.0.15/app-changelog.md rename stable/immich/{5.0.14 => 5.0.15}/app-readme.md (100%) rename stable/immich/{5.0.14 => 5.0.15}/charts/common-11.1.2.tgz (100%) rename stable/immich/{5.0.14 => 5.0.15}/charts/postgresql-11.0.29.tgz (100%) rename stable/immich/{5.0.14 => 5.0.15}/charts/redis-5.0.32.tgz (100%) rename stable/immich/{5.0.14 => 5.0.15}/ix_values.yaml (79%) rename stable/immich/{5.0.14 => 5.0.15}/questions.yaml (100%) rename stable/immich/{5.0.14 => 5.0.15}/templates/_configmap.tpl (100%) rename stable/immich/{5.0.14 => 5.0.15}/templates/_microservices.tpl (100%) create mode 100644 stable/immich/5.0.15/templates/_ml.tpl rename stable/immich/{5.0.14 => 5.0.15}/templates/_proxy.tpl (100%) rename stable/immich/{5.0.14 => 5.0.15}/templates/_secret.tpl (100%) rename stable/immich/{5.0.14 => 5.0.15}/templates/_web.tpl (100%) rename stable/immich/{5.0.14 => 5.0.15}/templates/common.yaml (100%) rename stable/immich/{5.0.14 => 5.0.15}/values.yaml (100%) diff --git a/stable/immich/5.0.14/app-changelog.md b/stable/immich/5.0.14/app-changelog.md deleted file mode 100644 index f98416b2eb..0000000000 --- a/stable/immich/5.0.14/app-changelog.md +++ /dev/null @@ -1,9 +0,0 @@ - - -## [immich-5.0.14](https://github.com/truecharts/charts/compare/immich-5.0.13...immich-5.0.14) (2023-02-20) - -### Chore - -- update immich to v1.47.3 - - \ No newline at end of file diff --git a/stable/immich/5.0.14/templates/_ml.tpl b/stable/immich/5.0.14/templates/_ml.tpl deleted file mode 100644 index 8c68981323..0000000000 --- a/stable/immich/5.0.14/templates/_ml.tpl +++ /dev/null @@ -1,60 +0,0 @@ -{{/* Define the ml container */}} -{{- define "immich.ml" -}} - {{- if hasKey .Values "imageML" -}} {{/* For smooth upgrade, Remove later*/}} - {{- $img := .Values.imageML -}} - {{- $_ := set .Values "mlImage" (dict "repository" $img.repository "tag" $img.tag "pullPolicy" $img.pullPolicy) -}} - {{- end }} -image: {{ .Values.mlImage.repository }}:{{ .Values.mlImage.tag }} -imagePullPolicy: {{ .Values.mlImage.pullPolicy }} -securityContext: - runAsUser: {{ .Values.podSecurityContext.runAsUser }} - runAsGroup: {{ .Values.podSecurityContext.runAsGroup }} - readOnlyRootFilesystem: {{ .Values.securityContext.readOnlyRootFilesystem }} - runAsNonRoot: {{ .Values.securityContext.runAsNonRoot }} -command: - - /bin/sh - - ./entrypoint.sh -volumeMounts: - - name: uploads - mountPath: {{ .Values.persistence.uploads.mountPath }} -envFrom: - - configMapRef: - name: '{{ include "tc.common.names.fullname" . }}-common-config' - - configMapRef: - name: '{{ include "tc.common.names.fullname" . }}-server-config' - - secretRef: - name: '{{ include "tc.common.names.fullname" . }}-immich-secret' -readinessProbe: - exec: - command: - - /bin/sh - - -c - - | - grep -q main.js /proc/1/cmdline || exit 1 - initialDelaySeconds: {{ .Values.probes.readiness.spec.initialDelaySeconds }} - timeoutSeconds: {{ .Values.probes.readiness.spec.timeoutSeconds }} - periodSeconds: {{ .Values.probes.readiness.spec.periodSeconds }} - failureThreshold: {{ .Values.probes.readiness.spec.failureThreshold }} -livenessProbe: - exec: - command: - - /bin/sh - - -c - - | - grep -q main.js /proc/1/cmdline || exit 1 - initialDelaySeconds: {{ .Values.probes.liveness.spec.initialDelaySeconds }} - timeoutSeconds: {{ .Values.probes.liveness.spec.timeoutSeconds }} - periodSeconds: {{ .Values.probes.liveness.spec.periodSeconds }} - failureThreshold: {{ .Values.probes.liveness.spec.failureThreshold }} -startupProbe: - exec: - command: - - /bin/sh - - -c - - | - grep -q main.js /proc/1/cmdline || exit 1 - initialDelaySeconds: {{ .Values.probes.startup.spec.initialDelaySeconds }} - timeoutSeconds: {{ .Values.probes.startup.spec.timeoutSeconds }} - periodSeconds: {{ .Values.probes.startup.spec.periodSeconds }} - failureThreshold: {{ .Values.probes.startup.spec.failureThreshold }} -{{- end -}} diff --git a/stable/immich/5.0.14/CHANGELOG.md b/stable/immich/5.0.15/CHANGELOG.md similarity index 88% rename from stable/immich/5.0.14/CHANGELOG.md rename to stable/immich/5.0.15/CHANGELOG.md index 9f5ac2245b..dad988bd75 100644 --- a/stable/immich/5.0.14/CHANGELOG.md +++ b/stable/immich/5.0.15/CHANGELOG.md @@ -4,6 +4,15 @@ +## [immich-5.0.15](https://github.com/truecharts/charts/compare/immich-5.0.14...immich-5.0.15) (2023-02-24) + +### Chore + +- update immich to v1.49.0 (minor) ([#7487](https://github.com/truecharts/charts/issues/7487)) + + + + ## [immich-5.0.14](https://github.com/truecharts/charts/compare/immich-5.0.13...immich-5.0.14) (2023-02-20) ### Chore @@ -88,12 +97,3 @@ - -## [immich-5.0.5](https://github.com/truecharts/charts/compare/immich-5.0.4...immich-5.0.5) (2023-02-03) - -### Chore - -- update immich to v1.44.0 - - - diff --git a/stable/immich/5.0.14/Chart.yaml b/stable/immich/5.0.15/Chart.yaml similarity index 96% rename from stable/immich/5.0.14/Chart.yaml rename to stable/immich/5.0.15/Chart.yaml index d57fd7e093..81b8f30b1c 100644 --- a/stable/immich/5.0.14/Chart.yaml +++ b/stable/immich/5.0.15/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: "1.47.3" +appVersion: "1.49.0" dependencies: - name: common repository: https://library-charts.truecharts.org @@ -26,7 +26,7 @@ name: immich sources: - https://github.com/truecharts/charts/tree/master/charts/stable/immich - https://github.com/immich-app/immich -version: 5.0.14 +version: 5.0.15 annotations: truecharts.org/catagories: | - media diff --git a/stable/immich/5.0.14/README.md b/stable/immich/5.0.15/README.md similarity index 100% rename from stable/immich/5.0.14/README.md rename to stable/immich/5.0.15/README.md diff --git a/stable/immich/5.0.15/app-changelog.md b/stable/immich/5.0.15/app-changelog.md new file mode 100644 index 0000000000..7d93a4d975 --- /dev/null +++ b/stable/immich/5.0.15/app-changelog.md @@ -0,0 +1,9 @@ + + +## [immich-5.0.15](https://github.com/truecharts/charts/compare/immich-5.0.14...immich-5.0.15) (2023-02-24) + +### Chore + +- update immich to v1.49.0 (minor) ([#7487](https://github.com/truecharts/charts/issues/7487)) + + \ No newline at end of file diff --git a/stable/immich/5.0.14/app-readme.md b/stable/immich/5.0.15/app-readme.md similarity index 100% rename from stable/immich/5.0.14/app-readme.md rename to stable/immich/5.0.15/app-readme.md diff --git a/stable/immich/5.0.14/charts/common-11.1.2.tgz b/stable/immich/5.0.15/charts/common-11.1.2.tgz similarity index 100% rename from stable/immich/5.0.14/charts/common-11.1.2.tgz rename to stable/immich/5.0.15/charts/common-11.1.2.tgz diff --git a/stable/immich/5.0.14/charts/postgresql-11.0.29.tgz b/stable/immich/5.0.15/charts/postgresql-11.0.29.tgz similarity index 100% rename from stable/immich/5.0.14/charts/postgresql-11.0.29.tgz rename to stable/immich/5.0.15/charts/postgresql-11.0.29.tgz diff --git a/stable/immich/5.0.14/charts/redis-5.0.32.tgz b/stable/immich/5.0.15/charts/redis-5.0.32.tgz similarity index 100% rename from stable/immich/5.0.14/charts/redis-5.0.32.tgz rename to stable/immich/5.0.15/charts/redis-5.0.32.tgz diff --git a/stable/immich/5.0.14/ix_values.yaml b/stable/immich/5.0.15/ix_values.yaml similarity index 79% rename from stable/immich/5.0.14/ix_values.yaml rename to stable/immich/5.0.15/ix_values.yaml index 27f569eb5f..51f8264022 100644 --- a/stable/immich/5.0.14/ix_values.yaml +++ b/stable/immich/5.0.15/ix_values.yaml @@ -1,21 +1,21 @@ image: repository: tccr.io/truecharts/immich-server - tag: 1.47.3@sha256:48066ea9d1c2e3c2a846f9c2cab90ed5eb731cfe173d7f941314079044f07602 + tag: 1.49.0@sha256:baa95afb670ee0e8d013a29eacff6ddc96751998854ba6882c242ce257ac8fbd pullPolicy: IfNotPresent mlImage: repository: tccr.io/truecharts/immich-ml - tag: 1.47.3@sha256:746119c39075f7549f571d6bbd1cd05fd0a3ce8a42e0d9a6e83fb0d8c33f0212 + tag: 1.49.0@sha256:779e1d486d7ac5a1ed98b67b6f4a556e8e5baf334e4f0b9480315226384922c4 pullPolicy: IfNotPresent webImage: repository: tccr.io/truecharts/immich-web - tag: 1.47.3@sha256:d36521e9682dcf8ce7ff8fd169e2d13d0e53548ab2c167dbe7f53393c5dc3878 + tag: 1.49.0@sha256:983a1f8b736ba337e7370fa19232febf0469c7748f670f15fb0ed4f35f9d88af pullPolicy: IfNotPresent proxyImage: repository: tccr.io/truecharts/immich-proxy - tag: 1.47.3@sha256:f5f77ccded5e065ebc4ee8020e031e7751f42fbe29afa8ae20dab7c23cceeeac + tag: 1.49.0@sha256:08e467d09e6f4abf10e4ea93e0310e6bc323e4ea6b0a6c05fb128bb46ed38578 pullPolicy: IfNotPresent command: @@ -74,6 +74,10 @@ persistence: uploads: enabled: true mountPath: /usr/src/app/upload + modelcache: + enabled: true + type: emptyDir + mountPath: /cache postgresql: enabled: true diff --git a/stable/immich/5.0.14/questions.yaml b/stable/immich/5.0.15/questions.yaml similarity index 100% rename from stable/immich/5.0.14/questions.yaml rename to stable/immich/5.0.15/questions.yaml diff --git a/stable/immich/5.0.14/templates/_configmap.tpl b/stable/immich/5.0.15/templates/_configmap.tpl similarity index 100% rename from stable/immich/5.0.14/templates/_configmap.tpl rename to stable/immich/5.0.15/templates/_configmap.tpl diff --git a/stable/immich/5.0.14/templates/_microservices.tpl b/stable/immich/5.0.15/templates/_microservices.tpl similarity index 100% rename from stable/immich/5.0.14/templates/_microservices.tpl rename to stable/immich/5.0.15/templates/_microservices.tpl diff --git a/stable/immich/5.0.15/templates/_ml.tpl b/stable/immich/5.0.15/templates/_ml.tpl new file mode 100644 index 0000000000..d197e2888a --- /dev/null +++ b/stable/immich/5.0.15/templates/_ml.tpl @@ -0,0 +1,69 @@ +{{/* Define the ml container */}} +{{- define "immich.ml" -}} + {{- if hasKey .Values "imageML" -}} {{/* For smooth upgrade, Remove later*/}} + {{- $img := .Values.imageML -}} + {{- $_ := set .Values "mlImage" (dict "repository" $img.repository "tag" $img.tag "pullPolicy" $img.pullPolicy) -}} + {{- end }} +image: {{ .Values.mlImage.repository }}:{{ .Values.mlImage.tag }} +imagePullPolicy: {{ .Values.mlImage.pullPolicy }} +securityContext: + runAsUser: {{ .Values.podSecurityContext.runAsUser }} + runAsGroup: {{ .Values.podSecurityContext.runAsGroup }} + readOnlyRootFilesystem: {{ .Values.securityContext.readOnlyRootFilesystem }} + runAsNonRoot: {{ .Values.securityContext.runAsNonRoot }} +command: + {{- if .Values.persistence.modelcache }}{{/* Only change command after upgrade */}} + - python + - src/main.py + {{- else }} + - /bin/sh + - ./entrypoint.sh + {{- end }} +volumeMounts: + - name: uploads + mountPath: {{ .Values.persistence.uploads.mountPath }} + {{- if .Values.persistence.modelcache }} + - name: modelcache + mountPath: {{ .Values.persistence.modelcache.mountPath }} + {{- end }} +envFrom: + - configMapRef: + name: '{{ include "tc.common.names.fullname" . }}-common-config' + - configMapRef: + name: '{{ include "tc.common.names.fullname" . }}-server-config' + - secretRef: + name: '{{ include "tc.common.names.fullname" . }}-immich-secret' +#readinessProbe: +# exec: +# command: +# - /bin/sh +# - -c +# - | +# grep -q main.js /proc/1/cmdline || exit 1 +# initialDelaySeconds: {{ .Values.probes.readiness.spec.initialDelaySeconds }} +# timeoutSeconds: {{ .Values.probes.readiness.spec.timeoutSeconds }} +# periodSeconds: {{ .Values.probes.readiness.spec.periodSeconds }} +# failureThreshold: {{ .Values.probes.readiness.spec.failureThreshold }} +#livenessProbe: +# exec: +# command: +# - /bin/sh +# - -c +# - | +# grep -q main.js /proc/1/cmdline || exit 1 +# initialDelaySeconds: {{ .Values.probes.liveness.spec.initialDelaySeconds }} +# timeoutSeconds: {{ .Values.probes.liveness.spec.timeoutSeconds }} +# periodSeconds: {{ .Values.probes.liveness.spec.periodSeconds }} +# failureThreshold: {{ .Values.probes.liveness.spec.failureThreshold }} +#startupProbe: +# exec: +# command: +# - /bin/sh +# - -c +# - | +# grep -q main.js /proc/1/cmdline || exit 1 +# initialDelaySeconds: {{ .Values.probes.startup.spec.initialDelaySeconds }} +# timeoutSeconds: {{ .Values.probes.startup.spec.timeoutSeconds }} +# periodSeconds: {{ .Values.probes.startup.spec.periodSeconds }} +# failureThreshold: {{ .Values.probes.startup.spec.failureThreshold }} +{{- end -}} diff --git a/stable/immich/5.0.14/templates/_proxy.tpl b/stable/immich/5.0.15/templates/_proxy.tpl similarity index 100% rename from stable/immich/5.0.14/templates/_proxy.tpl rename to stable/immich/5.0.15/templates/_proxy.tpl diff --git a/stable/immich/5.0.14/templates/_secret.tpl b/stable/immich/5.0.15/templates/_secret.tpl similarity index 100% rename from stable/immich/5.0.14/templates/_secret.tpl rename to stable/immich/5.0.15/templates/_secret.tpl diff --git a/stable/immich/5.0.14/templates/_web.tpl b/stable/immich/5.0.15/templates/_web.tpl similarity index 100% rename from stable/immich/5.0.14/templates/_web.tpl rename to stable/immich/5.0.15/templates/_web.tpl diff --git a/stable/immich/5.0.14/templates/common.yaml b/stable/immich/5.0.15/templates/common.yaml similarity index 100% rename from stable/immich/5.0.14/templates/common.yaml rename to stable/immich/5.0.15/templates/common.yaml diff --git a/stable/immich/5.0.14/values.yaml b/stable/immich/5.0.15/values.yaml similarity index 100% rename from stable/immich/5.0.14/values.yaml rename to stable/immich/5.0.15/values.yaml