Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-09-29 06:39:54 +00:00
parent a41ac3b91d
commit d4f68315ad
19 changed files with 37 additions and 16 deletions

View File

@@ -1,11 +0,0 @@
# Changelog
## [immich-0.0.1]immich-0.0.1 (2022-09-28)
### Feat
- add immich ([#3942](https://github.com/truecharts/charts/issues/3942))

View File

@@ -0,0 +1,22 @@
# Changelog
## [immich-0.0.2](https://github.com/truecharts/charts/compare/immich-0.0.1...immich-0.0.2) (2022-09-29)
### Chore
- Auto-update chart README [skip ci]
### Fix
- add hostAliases due to upstream hardcoded urls ([#3956](https://github.com/truecharts/charts/issues/3956))
## [immich-0.0.1]immich-0.0.1 (2022-09-28)
### Feat
- add immich ([#3942](https://github.com/truecharts/charts/issues/3942))

View File

@@ -9,4 +9,4 @@ dependencies:
repository: https://charts.truecharts.org
version: 3.0.85
digest: sha256:30efd46858717b8c1689ca9990a510b87c2e9eb223e6297bcd93fdafbf86ec1e
generated: "2022-09-28T22:11:10.605387717Z"
generated: "2022-09-29T06:37:55.237027507Z"

View File

@@ -26,7 +26,7 @@ name: immich
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/immich
- https://github.com/immich-app/immich
version: 0.0.1
version: 0.0.2
annotations:
truecharts.org/catagories: |
- media

View File

@@ -62,6 +62,14 @@ probes:
type: HTTP
port: 3001
# Due to https://github.com/immich-app/immich/issues/726
hostAliases:
- ip: 127.0.0.1
hostnames:
- immich-web
- immich-server
- immich-machine-learning
service:
main:
ports:

View File

@@ -37,7 +37,9 @@ metadata:
data:
NODE_ENV: production
{{/* User Defined */}}
PUBLIC_LOGIN_PAGE_MESSAGE: {{ .Values.immich.public_login_page_message }}
{{- with .Values.immich.public_login_page_message }}
PUBLIC_LOGIN_PAGE_MESSAGE: {{ . }}
{{- end }}
LOG_LEVEL: {{ .Values.immich.log_level }}
---
@@ -110,7 +112,7 @@ data:
rewrite /api/(.*) /$1 break;
# Server Container
proxy_pass http://localhost:3001;
proxy_pass http://immich-server:3001;
}
location / {
@@ -135,7 +137,7 @@ data:
proxy_set_header Host $host;
# Web Container
proxy_pass http://localhost:3000;
proxy_pass http://immich-web:3000;
}
}
}