fix(calibre): Replace deprecated env's and fix port (#1689)
This commit is contained in:
@@ -18,7 +18,7 @@ name: calibre
|
|||||||
sources:
|
sources:
|
||||||
- https://hub.docker.com/r/linuxserver/calibre/
|
- https://hub.docker.com/r/linuxserver/calibre/
|
||||||
- https://github.com/kovidgoyal/calibre/
|
- https://github.com/kovidgoyal/calibre/
|
||||||
version: 5.0.9
|
version: 5.0.10
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -79,19 +79,13 @@ questions:
|
|||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: GUAC_USER
|
- variable: PASSWORD
|
||||||
label: "GUAC_USER"
|
label: "PASSWORD"
|
||||||
description: "Username for the calibre gui"
|
description: "Optionally set a password for the gui."
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
default: "REPLACETHIS"
|
|
||||||
- variable: GUAC_PASS
|
|
||||||
label: "GUAC_PASS"
|
|
||||||
description: "Password's md5 hash for the calibre gui"
|
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
private: true
|
private: true
|
||||||
default: "REPLACETHIS"
|
default: ""
|
||||||
- variable: env
|
- variable: env
|
||||||
group: "Container Configuration"
|
group: "Container Configuration"
|
||||||
label: "Image Environment"
|
label: "Image Environment"
|
||||||
@@ -136,7 +130,7 @@ questions:
|
|||||||
description: "This port exposes the container port on the service"
|
description: "This port exposes the container port on the service"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 10080
|
default: 8084
|
||||||
required: true
|
required: true
|
||||||
- variable: advanced
|
- variable: advanced
|
||||||
label: "Show Advanced settings"
|
label: "Show Advanced settings"
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
image:
|
image:
|
||||||
# -- image repository
|
|
||||||
repository: tccr.io/truecharts/calibre
|
repository: tccr.io/truecharts/calibre
|
||||||
# -- image tag
|
|
||||||
tag: v5.32.0-ls138@sha256:a7c6272300628eb747dc129001aef8bc53d9b462ebe6b4953de904a2a5e15c8e
|
tag: v5.32.0-ls138@sha256:a7c6272300628eb747dc129001aef8bc53d9b462ebe6b4953de904a2a5e15c8e
|
||||||
# -- image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
@@ -15,27 +12,18 @@ podSecurityContext:
|
|||||||
runAsGroup: 0
|
runAsGroup: 0
|
||||||
|
|
||||||
secret:
|
secret:
|
||||||
# -- Username for the calibre gui
|
PASSWORD: ""
|
||||||
GUAC_USER: ""
|
|
||||||
# -- Password's md5 hash for the calibre gui
|
|
||||||
GUAC_PASS: ""
|
|
||||||
# -- environment variables. See [image docs](https://docs.linuxserver.io/images/docker-calibre#environment-variables-e) for more details.
|
|
||||||
# @default -- See below
|
|
||||||
env:
|
env:
|
||||||
# -- Set the container timezone
|
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
# -- Specify the user ID the application will run as
|
|
||||||
PUID: 568
|
PUID: 568
|
||||||
# -- Optionally pass cli start arguments to calibre.
|
|
||||||
CLI_ARGS:
|
CLI_ARGS:
|
||||||
|
|
||||||
# -- Configures service settings for the chart.
|
|
||||||
# @default -- See values.yaml
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
port: 10080
|
port: 8084
|
||||||
targetPort: 8080
|
targetPort: 8080
|
||||||
webserver:
|
webserver:
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -45,8 +33,6 @@ service:
|
|||||||
port: 8081
|
port: 8081
|
||||||
targetPort: 8081
|
targetPort: 8081
|
||||||
|
|
||||||
# -- Configure persistence settings for the chart under this key.
|
|
||||||
# @default -- See values.yaml
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
@@ -102,7 +102,8 @@ These defaults can of course be changed, but as we guarantee "sane, working defa
|
|||||||
| unifi | comm | comm | 8080 | TCP | |
|
| unifi | comm | comm | 8080 | TCP | |
|
||||||
| calibre | webserver | webserver | 8081 | TCP | |
|
| calibre | webserver | webserver | 8081 | TCP | |
|
||||||
| traccar | main | main | 8082 | TCP | |
|
| traccar | main | main | 8082 | TCP | |
|
||||||
| calibre | main | main | 8083 | TCP | |
|
| calibre-web | main | main | 8083 | TCP | |
|
||||||
|
| calibre | main | main | 8084 | TCP | |
|
||||||
| htpcmanager | main | main | 8085 | TCP | |
|
| htpcmanager | main | main | 8085 | TCP | |
|
||||||
| synclounge | main | main | 8088 | TCP | |
|
| synclounge | main | main | 8088 | TCP | |
|
||||||
| mylar | main | main | 8090 | TCP | |
|
| mylar | main | main | 8090 | TCP | |
|
||||||
@@ -223,7 +224,6 @@ These defaults can of course be changed, but as we guarantee "sane, working defa
|
|||||||
| static | main | main | 10077 | TCP | |
|
| static | main | main | 10077 | TCP | |
|
||||||
| twtxt | main | main | 10078 | TCP | |
|
| twtxt | main | main | 10078 | TCP | |
|
||||||
| emby | main | main | 10079 | TCP | |
|
| emby | main | main | 10079 | TCP | |
|
||||||
| calibre | main | main | 10080 | TCP | |
|
|
||||||
| davos | main | main | 10081 | TCP | |
|
| davos | main | main | 10081 | TCP | |
|
||||||
| fireflyiii | main | main | 10082 | TCP | |
|
| fireflyiii | main | main | 10082 | TCP | |
|
||||||
| fossil | main | main | 10083 | TCP | |
|
| fossil | main | main | 10083 | TCP | |
|
||||||
|
|||||||
Reference in New Issue
Block a user