diff --git a/charts/incubator/jackett2telegram/.helmignore b/charts/incubator/jackett2telegram/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/incubator/jackett2telegram/.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/jackett2telegram/CHANGELOG.md b/charts/incubator/jackett2telegram/CHANGELOG.md new file mode 100644 index 00000000000..825c32f0d03 --- /dev/null +++ b/charts/incubator/jackett2telegram/CHANGELOG.md @@ -0,0 +1 @@ +# Changelog diff --git a/charts/incubator/jackett2telegram/Chart.yaml b/charts/incubator/jackett2telegram/Chart.yaml new file mode 100644 index 00000000000..c3eb76066ad --- /dev/null +++ b/charts/incubator/jackett2telegram/Chart.yaml @@ -0,0 +1,32 @@ +apiVersion: v2 +appVersion: "1.9.0" +dependencies: + - name: common + repository: https://library-charts.truecharts.org + version: 11.0.9 +deprecated: false +description: Self-hosted Telegram Python Bot that dumps posts from Jackett RSS feeds to a Telegram chat. +home: https://truecharts.org/docs/charts/incubator/jackett2telegram +icon: https://truecharts.org/img/hotlink-ok/chart-icons/jackett2telegram.png +keywords: + - jackett2telegram + - media + - automations +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: jackett2telegram +sources: + - https://github.com/truecharts/charts/tree/master/charts/incubator/jackett2telegram + - https://github.com/danimart1991/jackett2telegram + - https://hub.docker.com/r/danimart1991/jackett2telegram +type: application +version: 0.0.1 +annotations: + truecharts.org/catagories: | + - media + - automations + truecharts.org/SCALE-support: "true" + truecharts.org/grade: U diff --git a/charts/incubator/jackett2telegram/README.md b/charts/incubator/jackett2telegram/README.md new file mode 100644 index 00000000000..20781b592e2 --- /dev/null +++ b/charts/incubator/jackett2telegram/README.md @@ -0,0 +1 @@ +# jackett2telegram diff --git a/charts/incubator/jackett2telegram/icon.png b/charts/incubator/jackett2telegram/icon.png new file mode 100644 index 00000000000..3856429f303 Binary files /dev/null and b/charts/incubator/jackett2telegram/icon.png differ diff --git a/charts/incubator/jackett2telegram/questions.yaml b/charts/incubator/jackett2telegram/questions.yaml new file mode 100644 index 00000000000..9f04fcb81b8 --- /dev/null +++ b/charts/incubator/jackett2telegram/questions.yaml @@ -0,0 +1,116 @@ +# Include{groups} +portals: {} +questions: +# Include{global} +# Include{controller} +# Include{replicas} +# Include{replica1} +# Include{controllerExpertExtraArgs} + - variable: secretEnv + group: App Configuration + label: Image Secrets + schema: + additional_attrs: true + type: dict + attrs: + - variable: TOKEN + label: Token + description: Telegram Bot Token. + schema: + type: string + required: true + private: true + default: "" + - variable: CHATID + label: Chat ID + description: Telegram Bot Chat ID. + schema: + type: string + private: true + required: true + default: "" + - variable: env + group: App Configuration + label: Image Environment + schema: + additional_attrs: true + type: dict + attrs: + - variable: DELAY + label: Delay + description: Delay in seconds. + schema: + type: int + required: true + default: 600 +# Include{containerConfig} +# Include{serviceExpertRoot} + default: false +# Include{serviceExpert} +# Include{serviceList} +# Include{persistenceRoot} + - variable: config + label: App Config Storage + description: Stores the Application Configuration. + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} + - variable: blackhole + label: App BlackHole Storage + description: Stores the Application BlackHole. + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} +# Include{persistenceList} +# Include{security} +# Include{securityContextAdvancedRoot} + - variable: privileged + label: Privileged mode + schema: + type: boolean + default: false + - variable: readOnlyRootFilesystem + label: ReadOnly Root Filesystem + schema: + type: boolean + default: true + - 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/jackett2telegram/templates/common.yaml b/charts/incubator/jackett2telegram/templates/common.yaml new file mode 100644 index 00000000000..c1a366e1cf0 --- /dev/null +++ b/charts/incubator/jackett2telegram/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.common.loader.all" . }} diff --git a/charts/incubator/jackett2telegram/values.yaml b/charts/incubator/jackett2telegram/values.yaml new file mode 100644 index 00000000000..1d3aa29622a --- /dev/null +++ b/charts/incubator/jackett2telegram/values.yaml @@ -0,0 +1,37 @@ +image: + repository: tccr.io/truecharts/jackett2telegram + pullPolicy: IfNotPresent + tag: 1.9.0@sha256:efc57e6a18dd7f6895a75202874f22a15091f93de25f4cbd53fdf8e144e86fef + +secretEnv: + TOKEN: "" + CHATID: "" + +env: + DELAY: 600 + +service: + main: + enabled: false + ports: + main: + enabled: false + +probes: + liveness: + enabled: false + readiness: + enabled: false + startup: + enabled: false + +persistence: + config: + enabled: true + mountPath: /app/config + blackhole: + enabled: true + mountPath: /app/blackhole + +portal: + enabled: false