Commit released Helm Chart and docs for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-03-21 17:47:15 +00:00
parent 88981807c0
commit 70b407b2f7
13 changed files with 1540 additions and 5 deletions

View File

@ -0,0 +1,10 @@
# Changelog<br>
<a name="rsshub-0.0.1"></a>
### rsshub-0.0.1 (2022-03-21)
#### Feat
* Add rsshub ([#2223](https://github.com/truecharts/apps/issues/2223))

View File

@ -0,0 +1,7 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our [Linking Apps Internally](https://truecharts.org/manual/Quick-Start%20Guides/06-linking-apps/) quick-start guide.
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@ -2,7 +2,7 @@ apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: rsshub
version: 0.0.1
appVersion: "2.2.0"
appVersion: "2022-03"
description: RSSHub can generate RSS feeds from pretty much everything
type: application
deprecated: false

View File

@ -0,0 +1,39 @@
# Introduction
RSSHub can generate RSS feeds from pretty much everything
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://docs.rsshub.app/en/install/>
* <https://github.com/DIYgod/RSSHub>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 9.1.6 |
| https://truecharts.org | redis | 2.0.5 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/).
## Upgrading, Rolling Back and Uninstalling the Chart
To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,45 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| additionalContainers.browserless.image | string | `"{{ .Values.browserlessImage.repository }}:{{ .Values.browserlessImage.tag }}"` | |
| additionalContainers.browserless.name | string | `"browserless"` | |
| additionalContainers.browserless.ports[0].containerPort | int | `3000` | |
| additionalContainers.browserless.ports[0].name | string | `"main"` | |
| browserlessImage.repository | string | `"browserless/chrome"` | |
| browserlessImage.tag | string | `"latest@sha256:751dedb5701648844b2b91077cf4bb027efc1a4e0bec053f8d8a6b81802dfe86"` | |
| env.CACHE_TYPE | string | `"redis"` | |
| env.DISALLOW_ROBOT | bool | `false` | |
| env.NODE_ENV | string | `"production"` | |
| env.NODE_NAME | string | `"{{ .Release.Name }}-{{ randAlphaNum 5 }}"` | |
| env.PORT | string | `"{{ .Values.service.main.ports.main.port }}"` | |
| env.PUPPETEER_WS_ENDPOINT | string | `"ws://localhost:3000"` | |
| env.TITLE_LENGTH_LIMIT | int | `150` | |
| envValueFrom.REDIS_URL.secretKeyRef.key | string | `"url"` | |
| envValueFrom.REDIS_URL.secretKeyRef.name | string | `"rediscreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"diygod/rsshub"` | |
| image.tag | string | `"2022-03-19@sha256:53f7237edf291c7f2b3343161245ed658b43faff07ac260dec280f42681003fe"` | |
| redis.enabled | bool | `true` | |
| redis.existingSecret | string | `"rediscreds"` | |
| secret.BITBUCKET_PASSWORD | string | `""` | |
| secret.BITBUCKET_USERNAME | string | `""` | |
| secret.GITHUB_ACCESS_TOKEN | string | `""` | |
| secret.GOOGLE_FONTS_API_KEY | string | `""` | |
| secret.HTTP_BASIC_AUTH_NAME | string | `""` | |
| secret.HTTP_BASIC_AUTH_PASS | string | `""` | |
| secret.LASTFM_API_KEY | string | `""` | |
| secret.TELEGRAM_TOKEN | string | `""` | |
| secret.YOUTUBE_KEY | string | `""` | |
| service.main.ports.main.port | int | `10191` | |
All Rights Reserved - The TrueCharts Project

View File

@ -91,7 +91,7 @@ questions:
label: "HTTP_BASIC_AUTH_PASS"
schema:
type: string
private: true
private: true
default: ""
- variable: BITBUCKET_USERNAME
label: "BITBUCKET_USERNAME"
@ -135,7 +135,7 @@ questions:
type: string
private: true
default: ""
- variable: env
group: "Container Configuration"
label: "Image Environment"
@ -147,7 +147,7 @@ questions:
label: "DISALLOW_ROBOT"
schema:
type: boolean
default: false
default: false
# Include{containerConfig}
- variable: service

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
# Changelog<br>
<a name="rsshub-0.0.1"></a>
### rsshub-0.0.1 (2022-03-21)
#### Feat
* Add rsshub ([#2223](https://github.com/truecharts/apps/issues/2223))

View File

@ -0,0 +1,7 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our [Linking Apps Internally](https://truecharts.org/manual/Quick-Start%20Guides/06-linking-apps/) quick-start guide.
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@ -0,0 +1,45 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| additionalContainers.browserless.image | string | `"{{ .Values.browserlessImage.repository }}:{{ .Values.browserlessImage.tag }}"` | |
| additionalContainers.browserless.name | string | `"browserless"` | |
| additionalContainers.browserless.ports[0].containerPort | int | `3000` | |
| additionalContainers.browserless.ports[0].name | string | `"main"` | |
| browserlessImage.repository | string | `"browserless/chrome"` | |
| browserlessImage.tag | string | `"latest@sha256:751dedb5701648844b2b91077cf4bb027efc1a4e0bec053f8d8a6b81802dfe86"` | |
| env.CACHE_TYPE | string | `"redis"` | |
| env.DISALLOW_ROBOT | bool | `false` | |
| env.NODE_ENV | string | `"production"` | |
| env.NODE_NAME | string | `"{{ .Release.Name }}-{{ randAlphaNum 5 }}"` | |
| env.PORT | string | `"{{ .Values.service.main.ports.main.port }}"` | |
| env.PUPPETEER_WS_ENDPOINT | string | `"ws://localhost:3000"` | |
| env.TITLE_LENGTH_LIMIT | int | `150` | |
| envValueFrom.REDIS_URL.secretKeyRef.key | string | `"url"` | |
| envValueFrom.REDIS_URL.secretKeyRef.name | string | `"rediscreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"diygod/rsshub"` | |
| image.tag | string | `"2022-03-19@sha256:53f7237edf291c7f2b3343161245ed658b43faff07ac260dec280f42681003fe"` | |
| redis.enabled | bool | `true` | |
| redis.existingSecret | string | `"rediscreds"` | |
| secret.BITBUCKET_PASSWORD | string | `""` | |
| secret.BITBUCKET_USERNAME | string | `""` | |
| secret.GITHUB_ACCESS_TOKEN | string | `""` | |
| secret.GOOGLE_FONTS_API_KEY | string | `""` | |
| secret.HTTP_BASIC_AUTH_NAME | string | `""` | |
| secret.HTTP_BASIC_AUTH_PASS | string | `""` | |
| secret.LASTFM_API_KEY | string | `""` | |
| secret.TELEGRAM_TOKEN | string | `""` | |
| secret.YOUTUBE_KEY | string | `""` | |
| service.main.ports.main.port | int | `10191` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,39 @@
# Introduction
RSSHub can generate RSS feeds from pretty much everything
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://docs.rsshub.app/en/install/>
* <https://github.com/DIYgod/RSSHub>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 9.1.6 |
| https://truecharts.org | redis | 2.0.5 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/).
## Upgrading, Rolling Back and Uninstalling the Chart
To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project

File diff suppressed because one or more lines are too long

View File

@ -65004,6 +65004,43 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/rsnapshot-0.0.1/rsnapshot-0.0.1.tgz
version: 0.0.1
rsshub:
- annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- media
truecharts.org/grade: U
apiVersion: v2
appVersion: 2022-03
created: "2022-03-21T17:47:11.395553557Z"
dependencies:
- name: common
repository: https://truecharts.org
version: 9.1.6
- condition: redis.enabled
name: redis
repository: https://truecharts.org
version: 2.0.5
description: RSSHub can generate RSS feeds from pretty much everything
digest: d474592adf3b00f4b6b938e140d1602b9f208747951f6f3d3f74aec4d2309349
home: https://github.com/truecharts/apps/tree/master/charts/stable/rsshub
icon: https://truecharts.org/_static/img/appicons/rsshub.png
keywords:
- rsshub
- rss
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: rsshub
sources:
- https://docs.rsshub.app/en/install/
- https://github.com/DIYgod/RSSHub
type: application
urls:
- https://github.com/truecharts/apps/releases/download/rsshub-0.0.1/rsshub-0.0.1.tgz
version: 0.0.1
sabnzbd:
- annotations:
truecharts.org/SCALE-support: "true"
@ -78889,4 +78926,4 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-9.0.24/zwavejs2mqtt-9.0.24.tgz
version: 9.0.24
generated: "2022-03-21T16:49:16.573759401Z"
generated: "2022-03-21T17:47:11.404500873Z"