fix(plex-meta-manager) remove port | disable service (#3934)
* fix(plex-meta-manager) remove port | disable service * skip plex meta from install as it requires keys * Apply suggestions from code review 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:
parent
af0f2181e7
commit
10432f3bca
|
@ -47,6 +47,8 @@ excluded-charts:
|
|||
- charts/dev/csgo
|
||||
- charts/dev/cstrike1-6
|
||||
- charts/dev/cstrikeconditionzero
|
||||
- charts/stable/plex-meta-manager
|
||||
- charts/incubator/plex-meta-manager
|
||||
chart-repos:
|
||||
- truecharts=https://charts.truecharts.org
|
||||
- truecharts-library=https://library-charts.truecharts.org
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: plex-meta-manager
|
||||
version: 0.0.25
|
||||
version: 0.0.26
|
||||
appVersion: "1.17.3"
|
||||
description: Python script to update metadata and automatically build collections.
|
||||
type: application
|
||||
|
@ -12,7 +12,7 @@ keywords:
|
|||
- plex-meta-manager
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/plex-meta-manager
|
||||
- https://hub.docker.com/r/meisnate12/Plex-Meta-Manager
|
||||
- https://hub.docker.com/r/meisnate12/plex-meta-manager
|
||||
- https://github.com/meisnate12/Plex-Meta-Manager
|
||||
dependencies:
|
||||
- name: common
|
||||
|
|
|
@ -38,36 +38,6 @@ questions:
|
|||
type: boolean
|
||||
default: true
|
||||
# Include{containerConfig}
|
||||
# Include{serviceRoot}
|
||||
- variable: main
|
||||
label: "Main Service"
|
||||
description: "The Primary service on which the healthcheck runs, often the webUI"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
# Include{serviceSelectorLoadBalancer}
|
||||
# Include{serviceSelectorExtras}
|
||||
- variable: main
|
||||
label: "Main Service Port Configuration"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: port
|
||||
label: "Port"
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 10281
|
||||
required: true
|
||||
# Include{advancedPortHTTP}
|
||||
- variable: targetPort
|
||||
label: "Target Port"
|
||||
description: "The internal(!) port on the container the Application runs on"
|
||||
schema:
|
||||
type: int
|
||||
default: 10281
|
||||
# Include{serviceExpertRoot}
|
||||
default: false
|
||||
# Include{serviceExpert}
|
||||
|
@ -83,17 +53,6 @@ questions:
|
|||
# Include{persistenceBasic}
|
||||
# Include{persistenceAdvanced}
|
||||
# Include{persistenceList}
|
||||
# Include{ingressRoot}
|
||||
- variable: main
|
||||
label: "Main Ingress"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
# Include{ingressDefault}
|
||||
# Include{ingressTLS}
|
||||
# Include{ingressTraefik}
|
||||
# Include{ingressExpert}
|
||||
# Include{ingressList}
|
||||
# Include{security}
|
||||
# Include{securityContextAdvancedRoot}
|
||||
|
|
|
@ -19,11 +19,10 @@ env:
|
|||
|
||||
service:
|
||||
main:
|
||||
enabled: false
|
||||
ports:
|
||||
main:
|
||||
port: 10281
|
||||
targetPort: 10281
|
||||
protocol: HTTP
|
||||
enabled: false
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
|
@ -36,7 +35,7 @@ probes:
|
|||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
mountPath: /config
|
||||
|
||||
initContainers:
|
||||
1-create-init-config-file:
|
||||
|
|
Loading…
Reference in New Issue