feat(cops): Move to stable (#6588)

* feat(cops): Move to stable

* cleanup values

* cleanup questions

* Update charts/stable/cops/Chart.yaml

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
StevenMcElligott
2023-01-21 14:09:05 +02:00
committed by GitHub
co-authored by Stavros Kois
parent 72ca65cae6
commit 903758c91a
8 changed files with 28 additions and 39 deletions
@@ -1,9 +1,3 @@
annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- Cloud
- MediaApp-Books
- MediaServer-Books
apiVersion: v2 apiVersion: v2
appVersion: "latest" appVersion: "latest"
dependencies: dependencies:
@@ -12,7 +6,7 @@ dependencies:
version: 11.1.2 version: 11.1.2
deprecated: false deprecated: false
description: "Cops(http://blog.slucas.fr/en/oss/calibre-opds-php-server) by Sébastien Lucas, stands for Calibre OPDS (and HTML) Php Server.\n" description: "Cops(http://blog.slucas.fr/en/oss/calibre-opds-php-server) by Sébastien Lucas, stands for Calibre OPDS (and HTML) Php Server.\n"
home: https://truecharts.org/charts/incubator/cops home: https://truecharts.org/charts/stable/cops
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cops.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/cops.png
keywords: keywords:
- cops - cops
@@ -26,9 +20,15 @@ maintainers:
url: https://truecharts.org url: https://truecharts.org
name: cops name: cops
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/cops - https://github.com/truecharts/charts/tree/master/charts/stable/cops
- http://blog.slucas.fr/en/oss/calibre-opds-php-server - http://blog.slucas.fr/en/oss/calibre-opds-php-server
- https://github.com/orgs/linuxserver/packages/container/package/cops - https://github.com/orgs/linuxserver/packages/container/package/cops
- https://github.com/linuxserver/docker-cops#readme - https://github.com/linuxserver/docker-cops#readme
type: application type: application
version: 2.0.12 version: 3.0.0
annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- Cloud
- MediaApp-Books
- MediaServer-Books

Before

Width:  |  Height:  |  Size: 319 KiB

After

Width:  |  Height:  |  Size: 319 KiB

@@ -8,19 +8,6 @@ questions:
# Include{replicas} # Include{replicas}
# Include{replica1} # Include{replica1}
# Include{controllerExpertExtraArgs} # Include{controllerExpertExtraArgs}
- variable: env
group: "App Configuration"
label: "Image Environment"
schema:
additional_attrs: true
type: dict
attrs:
- variable: UMASK
label: "UMASK"
description: "Container Variable UMASK"
schema:
type: string
default: ""
# Include{containerConfig} # Include{containerConfig}
# Include{serviceRoot} # Include{serviceRoot}
- variable: main - variable: main
@@ -43,7 +30,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: 80 default: 10609
required: true required: true
# Include{serviceExpertRoot} # Include{serviceExpertRoot}
default: false default: false
@@ -51,16 +38,16 @@ questions:
# Include{serviceList} # Include{serviceList}
# Include{persistenceRoot} # Include{persistenceRoot}
- variable: config - variable: config
label: "config Storage" label: "App Config Storage"
description: "COPS Application Data." description: "Stores the Application Configuration."
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
# Include{persistenceBasic} # Include{persistenceBasic}
- variable: pathbooks - variable: books
label: "pathbooks Storage" label: "App Books Storage"
description: "Calibre metadata.db location." description: "Stores the Application Books."
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
@@ -1,29 +1,31 @@
env:
UMASK: ""
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/cops repository: tccr.io/truecharts/cops
tag: latest@sha256:f356015ceef5155bdab78191c803f03affc80392dd9e24c795395dd4543b947c tag: latest@sha256:f356015ceef5155bdab78191c803f03affc80392dd9e24c795395dd4543b947c
persistence:
config:
enabled: true
mountPath: /config
pathbooks:
enabled: true
mountPath: /books
podSecurityContext: podSecurityContext:
runAsGroup: 0 runAsGroup: 0
runAsUser: 0 runAsUser: 0
securityContext: securityContext:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsNonRoot: false runAsNonRoot: false
service: service:
main: main:
ports: ports:
main: main:
port: 80 port: 10609
protocol: TCP protocol: HTTP
targetPort: 80 targetPort: 80
persistence:
config:
enabled: true
mountPath: /config
books:
enabled: true
mountPath: /books
portal: portal:
enabled: true enabled: true