diff --git a/charts/incubator/wizarr/.helmignore b/charts/incubator/wizarr/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/incubator/wizarr/.helmignore @@ -0,0 +1,30 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png diff --git a/charts/incubator/wizarr/CHANGELOG.md b/charts/incubator/wizarr/CHANGELOG.md new file mode 100644 index 00000000000..825c32f0d03 --- /dev/null +++ b/charts/incubator/wizarr/CHANGELOG.md @@ -0,0 +1 @@ +# Changelog diff --git a/charts/incubator/wizarr/Chart.yaml b/charts/incubator/wizarr/Chart.yaml new file mode 100644 index 00000000000..effceea38c0 --- /dev/null +++ b/charts/incubator/wizarr/Chart.yaml @@ -0,0 +1,34 @@ +apiVersion: v2 +appVersion: "latest" +dependencies: + - name: common + repository: https://library-charts.truecharts.org + version: 11.0.7 +deprecated: false +description: A automatic user invitation system for Plex. +home: https://truecharts.org/docs/charts/incubator/wizarr +icon: https://truecharts.org/img/hotlink-ok/chart-icons/wizarr.png +keywords: + - wizarr + - HomeAutomation + - Tools-Utilities + - Other +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: wizarr +sources: + - https://github.com/truecharts/charts/tree/master/charts/incubator/wizarr + - https://github.com/Wizarrrr/wizarr + - https://hub.docker.com/r/wizarr/wizarr +type: application +version: 0.0.1 +annotations: + truecharts.org/catagories: | + - HomeAutomation + - Tools-Utilities + - Other + truecharts.org/SCALE-support: "true" + truecharts.org/grade: U diff --git a/charts/incubator/wizarr/README.md b/charts/incubator/wizarr/README.md new file mode 100644 index 00000000000..9668ce79926 --- /dev/null +++ b/charts/incubator/wizarr/README.md @@ -0,0 +1 @@ +# wizarr diff --git a/charts/incubator/wizarr/icon.png b/charts/incubator/wizarr/icon.png new file mode 100644 index 00000000000..9ad8f93a9ca Binary files /dev/null and b/charts/incubator/wizarr/icon.png differ diff --git a/charts/incubator/wizarr/questions.yaml b/charts/incubator/wizarr/questions.yaml new file mode 100644 index 00000000000..5c26dca57fd --- /dev/null +++ b/charts/incubator/wizarr/questions.yaml @@ -0,0 +1,132 @@ +# Include{groups} +portals: + open: +# Include{portalLink} +questions: +# Include{global} +# Include{controller} +# Include{replicas} +# Include{replica1} +# Include{controllerExpertExtraArgs} +# Include{containerConfig} + - variable: env + group: App Configuration + label: Image Environment + schema: + additional_attrs: true + type: dict + attrs: + - variable: APP_URL + label: App URL + description: set this url as either http://ip:port or https://app.domain.tld if using ingress/reverse proxy. + schema: + type: string + default: "" + - variable: DISABLE_BUILTIN_AUTH + label: Disable Builtin Auth + description: Check this if using an external auth provider, otherwise leave it false. + schema: + type: boolean + default: false + - variable: ALLOW_BUG_REPORTING + label: Allow Bug Reporting + description: Helps upstream developers fix bugs proactively, recommended leave it enabled, but can be optionally disabled. + schema: + type: boolean + default: true +# 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: 10596 + required: true +# Include{serviceExpertRoot} + default: false +# Include{serviceExpert} +# Include{serviceList} +# Include{persistenceRoot} + - variable: database + label: App Database Storage + description: Stores the Application Database. + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} +# Include{persistenceList} +# Include{ingressRoot} + - variable: main + label: Main Ingress + schema: + additional_attrs: true + type: dict + attrs: +# Include{ingressDefault} +# Include{ingressTLS} +# Include{ingressTraefik} +# Include{ingressList} +# Include{security} +# Include{securityContextAdvancedRoot} + - variable: privileged + label: Privileged mode + schema: + type: boolean + default: false + - variable: readOnlyRootFilesystem + label: ReadOnly Root Filesystem + schema: + type: boolean + default: false + - variable: allowPrivilegeEscalation + label: Allow Privilege Escalation + schema: + type: boolean + default: false + - variable: runAsNonRoot + label: runAsNonRoot + schema: + type: boolean + default: true +# Include{podSecurityContextRoot} + - variable: runAsUser + label: runAsUser + description: The UserID of the user running the application + schema: + type: int + default: 568 + - variable: runAsGroup + label: runAsGroup + description: The groupID this App of the user running the application + schema: + type: int + default: 568 + - variable: fsGroup + label: fsGroup + description: The group that should own ALL storage. + schema: + type: int + default: 568 +# Include{podSecurityContextAdvanced} +# Include{resources} +# Include{advanced} +# Include{addons} +# Include{codeserver} +# Include{vpn} +# Include{documentation} diff --git a/charts/incubator/wizarr/templates/common.yaml b/charts/incubator/wizarr/templates/common.yaml new file mode 100644 index 00000000000..c1a366e1cf0 --- /dev/null +++ b/charts/incubator/wizarr/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.common.loader.all" . }} diff --git a/charts/incubator/wizarr/values.yaml b/charts/incubator/wizarr/values.yaml new file mode 100644 index 00000000000..d560c42ba48 --- /dev/null +++ b/charts/incubator/wizarr/values.yaml @@ -0,0 +1,25 @@ +image: + repository: tccr.io/truecharts/wizarr + pullPolicy: IfNotPresent + tag: latest@sha256:f8a74452457b2fee8cc21bd199c4f347d35d514d36a3513268bc7233776b048e + +env: + APP_URL: "http://localhost:{{ .Values.service.main.ports.main.port }}" + DISABLE_BUILTIN_AUTH: false + ALLOW_BUG_REPORTING: false + +service: + main: + ports: + main: + protocol: HTTP + targetPort: 5690 + port: 10596 + +persistence: + database: + enabled: true + mountPath: /data/database + +portal: + enabled: true