diff --git a/charts/incubator/plex-meta-manager/Chart.yaml b/charts/incubator/plex-meta-manager/Chart.yaml index eb7a5b3e05d..2c998a92ee1 100644 --- a/charts/incubator/plex-meta-manager/Chart.yaml +++ b/charts/incubator/plex-meta-manager/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: plex-meta-manager -version: 0.0.4 +version: 0.0.5 appVersion: "1.17.1" -description: Python3 script run using YAML config files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections +description: Python script to update metadata and automatically build collections. type: application deprecated: false home: https://github.com/truecharts/apps/tree/master/charts/incubator/plex-meta-manager diff --git a/charts/incubator/plex-meta-manager/questions.yaml b/charts/incubator/plex-meta-manager/questions.yaml index 531fe8569d4..64898b9b428 100644 --- a/charts/incubator/plex-meta-manager/questions.yaml +++ b/charts/incubator/plex-meta-manager/questions.yaml @@ -60,32 +60,32 @@ questions: additional_attrs: true type: dict attrs: - - variable: CUSTOM_CONFIG_FILE - label: "Set Custom config file" - description: "enable this and point the config.yaml to a dir" + - variable: PMM_CONFIG + label: "PMM CONFIG" + description: "Specify a internal config.yaml" schema: + type: string + default: "/config/config.yaml" + - variable: PMM_RUN + label: "PMM RUN" + description: "Set to false to run with a scheduler." + schema: + type: boolean + default: true + - variable: customtime + label: "Set PMM Time" + schema: + show_if: [["PMM_RUN", "=", false]] type: boolean default: false show_subquestions_if: true subquestions: - - variable: PMM_CONFIG - label: "PMM CONFIG" - description: "Specify a custom config file to use internally ex: /config/config.yaml" + - variable: PMM_TIME + label: "PMM TIME" + description: "Comma-separated list of times to update each day. Format: HH:MM" schema: type: string default: "" - - variable: PMM_TIME - label: "PMM TIME" - description: "Comma-separated list of times to update each day. Format: HH:MM" - schema: - type: string - default: "03:00" - - variable: PMM_RUN - label: "PMM RUN" - description: "Set to True to run without the scheduler." - schema: - type: boolean - default: false - variable: PMM_TEST label: "PMM TEST" description: "Set to True to run in debug mode with only collections that have test: true" diff --git a/charts/incubator/plex-meta-manager/values.yaml b/charts/incubator/plex-meta-manager/values.yaml index 9b5aeaec279..da7e17399a2 100644 --- a/charts/incubator/plex-meta-manager/values.yaml +++ b/charts/incubator/plex-meta-manager/values.yaml @@ -12,8 +12,9 @@ podSecurityContext: runAsGroup: 0 env: + PMM_CONFIG: "/config/config.yaml" PMM_TIME: "03:00" - PMM_RUN: false + PMM_RUN: true PMM_TEST: false PMM_NO_MISSING: false