diff --git a/charts/incubator/feedcord/.helmignore b/charts/incubator/feedcord/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/incubator/feedcord/.helmignore @@ -0,0 +1,32 @@ +# 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 +icon.webp +icon-small.webp diff --git a/charts/incubator/feedcord/CHANGELOG.md b/charts/incubator/feedcord/CHANGELOG.md new file mode 100644 index 00000000000..f3e8318aa10 --- /dev/null +++ b/charts/incubator/feedcord/CHANGELOG.md @@ -0,0 +1,4 @@ +--- +title: Changelog +pagefind: false +--- diff --git a/charts/incubator/feedcord/Chart.yaml b/charts/incubator/feedcord/Chart.yaml new file mode 100644 index 00000000000..7da60020997 --- /dev/null +++ b/charts/incubator/feedcord/Chart.yaml @@ -0,0 +1,41 @@ +annotations: + artifacthub.io/links: |- + - name: support + url: https://discord.com/invite/tVsPTHWTtr + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: tools + truecharts.org/max_helm_version: "3.17" + truecharts.org/min_helm_version: "3.14" + truecharts.org/train: incubator +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 28.13.0 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +deprecated: false +description: A dead simple RSS Feed with Discord Webhooks +home: https://truecharts.org/charts/incubator/feedcord +icon: https://truecharts.org/img/hotlink-ok/chart-icons/feedcord.webp +keywords: + - feedcord + - discord + - rss +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: feedcord +sources: + - https://github.com/Qolors/FeedCord + - https://github.com/truecharts/charts/tree/master/charts/incubator/feedcord + - https://hub.docker.com/r/qolors/feedcord +type: application +version: 0.0.1 + diff --git a/charts/incubator/feedcord/README.md b/charts/incubator/feedcord/README.md new file mode 100644 index 00000000000..2b8cc49d247 --- /dev/null +++ b/charts/incubator/feedcord/README.md @@ -0,0 +1,3 @@ +--- +title: README +--- diff --git a/charts/incubator/feedcord/icon.png b/charts/incubator/feedcord/icon.png new file mode 100644 index 00000000000..9ebc2ec01a4 Binary files /dev/null and b/charts/incubator/feedcord/icon.png differ diff --git a/charts/incubator/feedcord/templates/NOTES.txt b/charts/incubator/feedcord/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/feedcord/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/feedcord/templates/common.yaml b/charts/incubator/feedcord/templates/common.yaml new file mode 100644 index 00000000000..b51394e00a4 --- /dev/null +++ b/charts/incubator/feedcord/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/feedcord/values.yaml b/charts/incubator/feedcord/values.yaml new file mode 100644 index 00000000000..6a14a1bcd91 --- /dev/null +++ b/charts/incubator/feedcord/values.yaml @@ -0,0 +1,57 @@ +image: + repository: qolors/feedcord + pullPolicy: IfNotPresent + tag: latest@sha256:909b3b25943add888fb46d958484fe0126846ca4ec6163fa81632dfcaf87e67d +securityContext: + container: + readOnlyRootFilesystem: false +service: + main: + enabled: false + ports: + main: + enabled: false +workload: + main: + podSpec: + containers: + main: + probes: + liveness: + enabled: false + readiness: + enabled: false + startup: + enabled: false +feedcord: + Instances: + # separate instances can be defined here + - Id: Awesome SelfHosted News Feed + YoutubeUrls: + - "" + RssUrls: + - "" + Forum: false + DiscordWebhookUrl: "" + RssCheckIntervalMinutes: 10 + EnableAutoRemove: false + Color: 8411391 + DescriptionLimit: 250 + MarkdownFormat: true + PersistenceOnShutdown: true + ConcurrentRequests: 40 + +configmap: + feedcord-config: + enabled: true + data: + appsettings.json: | + {{- $.Values.feedcord | toJson | nindent 2 }} +persistence: + feedcord-config: + enabled: true + type: configmap + mountPath: /app/config/appsettings.json + objectName: feedcord-config + readOnly: true + subPath: appsettings.json