mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
fix(piped/frontend): make nginx entrypoint actually do something (#35)
* fix(charts/piped): make entrypoint actually do something It does nothing if 1st argument is not nginx and just execs the arguments: https://github.com/nginxinc/docker-nginx/blob/master/entrypoint/docker-entrypoint.sh#L12 * bump patch version and add changelog
This commit is contained in:
parent
85a5cde0b3
commit
fbc086f0c5
2 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ sources:
|
|||
- https://github.com/TeamPiped/piped-proxy
|
||||
keywords:
|
||||
- streaming
|
||||
version: 2.7.0
|
||||
version: 2.7.1
|
||||
appVersion: latest
|
||||
kubeVersion: ">=1.22.0-0"
|
||||
maintainers:
|
||||
|
@ -26,5 +26,5 @@ dependencies:
|
|||
condition: postgresql.enabled
|
||||
annotations:
|
||||
artifacthub.io/changes: |-
|
||||
- kind: changed
|
||||
description: Upgraded `postgresql` chart dependency to version 12.6.0
|
||||
- kind: fixed
|
||||
description: Made frontend nginx entrypoint run docker-entrypoint.d scripts
|
||||
|
|
|
@ -46,7 +46,7 @@ frontend:
|
|||
command: "/bin/ash"
|
||||
args:
|
||||
- -c
|
||||
- "sed -i s/pipedapi.kavin.rocks/$BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh && nginx -g 'daemon off;'"
|
||||
- "sed -i s/pipedapi.kavin.rocks/$BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh nginx -g 'daemon off;'"
|
||||
|
||||
# resources:
|
||||
# requests:
|
||||
|
|
Loading…
Reference in a new issue