feat(jackett2telegram) add jackett2telegram (#5548)

* feat(jackett2telegram) add jackett2telegram

* fix name

* fix repo and tag

* unset variable token

* update repo

* Apply suggestions from code review

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

* Update charts/incubator/jackett2telegram/values.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:
Xstar97
2022-12-27 00:51:36 -05:00
committed by GitHub
parent 87bbe2e117
commit a56853960e
8 changed files with 218 additions and 0 deletions

View File

@@ -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

View File

@@ -0,0 +1 @@
# Changelog

View File

@@ -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

View File

@@ -0,0 +1 @@
# jackett2telegram

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -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}

View File

@@ -0,0 +1 @@
{{ include "tc.common.loader.all" . }}

View File

@@ -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