Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-09-07 09:08:16 +00:00
parent ce9dc53aaf
commit 2f73853689
162 changed files with 8098 additions and 88 deletions

View File

@ -0,0 +1,8 @@
# 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" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### 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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T09:07:11.726765106Z"

View File

@ -0,0 +1,22 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.8
deprecated: false
description: Advanced tool to create your own TrueCharts-based App
home: https://github.com/truecharts/apps/tree/master/charts/stable/custom-app
icon: https://truecharts.org/_static/img/custom-app-icon.png
keywords:
- custom
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: custom-app
sources:
- https://github.com/truecharts/apps/tree/master/charts/stable/custom-app
type: application
version: 0.2.19

View File

@ -0,0 +1,37 @@
# Introduction
Advanced tool to create your own TrueCharts-based App
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://github.com/truecharts/apps/tree/master/charts/stable/custom-app>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) 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,4 @@
Advanced tool to create your own TrueCharts-based App
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
Advanced tool to create your own TrueCharts-based App

Binary file not shown.

View File

@ -0,0 +1,35 @@
# 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 |
|-----|------|---------|-------------|
| env | object | `{}` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | |
| image.tag | string | `"v0.18.636"` | |
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
| service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `9117` | |
| service.main.portsList[0].enabled | bool | `true` | |
| service.main.portsList[0].name | string | `"extraport"` | |
| service.main.portsList[0].port | int | `9118` | |
| serviceList[0].enabled | bool | `true` | |
| serviceList[0].name | string | `"extraservice"` | |
| serviceList[0].portsList[0].enabled | bool | `true` | |
| serviceList[0].portsList[0].name | string | `"extrasvcport"` | |
| serviceList[0].portsList[0].port | int | `9119` | |
| strategy.type | string | `"Recreate"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,10 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,43 @@
# Default values for Jackett.
image:
repository: ghcr.io/k8s-at-home/jackett
pullPolicy: IfNotPresent
tag: v0.18.686
strategy:
type: Recreate
service:
main:
enabled: true
ports:
main:
port: 9117
portsList:
- name: "extraport"
enabled: true
port: 9118
serviceList:
- name: extraservice
enabled: true
portsList:
- name: "extrasvcport"
enabled: true
port: 9119
env: {}
# TZ: UTC
# PUID: 1001
# PGID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 5.14.2
digest: sha256:759ce0d3bb9ec0a128549445aa2cf2da315310ae1037829506c10f5035e0272d
generated: "2021-09-07T08:10:52.594732182Z"
generated: "2021-09-07T09:07:18.602350838Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:03:08.606132484Z"
generated: "2021-09-07T09:00:15.508769309Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:03:13.463746951Z"
generated: "2021-09-07T09:00:19.773274378Z"

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 15.3.1
digest: sha256:9b60ad9c2e2d09a112a54fb1b46b836d458abf2f29aa38210bc91f063152e562
generated: "2021-09-07T08:03:21.003024959Z"
generated: "2021-09-07T09:00:26.544481693Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:03:29.283655618Z"
generated: "2021-09-07T09:00:34.254392135Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:03:33.960296817Z"
generated: "2021-09-07T09:00:38.498504863Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:03:43.426828502Z"
generated: "2021-09-07T09:00:47.150456402Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:03:38.717637546Z"
generated: "2021-09-07T09:00:42.713821237Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:03:48.133741493Z"
generated: "2021-09-07T09:00:51.483862976Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:03:52.848425356Z"
generated: "2021-09-07T09:00:55.798717819Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:03:57.511692086Z"
generated: "2021-09-07T09:01:00.123259868Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:04:02.232202166Z"
generated: "2021-09-07T09:01:04.447930536Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:04:07.135835838Z"
generated: "2021-09-07T09:01:08.955723008Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:04:12.125356419Z"
generated: "2021-09-07T09:01:13.398431804Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:04:17.095630808Z"
generated: "2021-09-07T09:01:17.663261481Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:04:21.94265733Z"
generated: "2021-09-07T09:01:21.996157102Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:04:26.786575984Z"
generated: "2021-09-07T09:01:26.421104434Z"

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 1.6.5
digest: sha256:4d6a5800bf583d56e3754870aff98c69bd81decbd35a4e70ec50d05c91e6fdf6
generated: "2021-09-07T08:04:32.453675391Z"
generated: "2021-09-07T09:01:31.752283359Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:04:38.261909417Z"
generated: "2021-09-07T09:01:36.970236087Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:04:43.205954138Z"
generated: "2021-09-07T09:01:41.33218362Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:04:48.137910577Z"
generated: "2021-09-07T09:01:45.865803107Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:04:53.053688678Z"
generated: "2021-09-07T09:01:50.406677374Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:04:57.92184727Z"
generated: "2021-09-07T09:01:54.900753841Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:02.731616184Z"
generated: "2021-09-07T09:01:59.22377308Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:05:07.649313785Z"
generated: "2021-09-07T09:02:03.605571434Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:12.356141226Z"
generated: "2021-09-07T09:02:08.140883385Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:16.993469387Z"
generated: "2021-09-07T09:02:12.52663995Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:21.731819292Z"
generated: "2021-09-07T09:02:16.849056923Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:05:26.412448284Z"
generated: "2021-09-07T09:02:21.125517748Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:31.047833793Z"
generated: "2021-09-07T09:02:25.692255395Z"

View File

@ -0,0 +1,8 @@
# 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" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### 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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T09:02:30.336707211Z"

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.8
deprecated: false
description: home-assistant App for TrueNAS SCALE
home: https://github.com/truecharts/apps/tree/master/charts/stable/home-assistant
icon: https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Home_Assistant_Logo.svg/519px-Home_Assistant_Logo.svg.png
keywords:
- home-assistant
- hass
- homeassistant
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
- email: 35702532+tprelog@users.noreply.github.com
name: tprelog
url: truecharts.org
name: home-assistant
sources:
- https://github.com/home-assistant/home-assistant
- https://github.com/cdr/code-server
type: application
version: 6.11.15

View File

@ -0,0 +1,38 @@
# Introduction
home-assistant App for TrueNAS SCALE
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://github.com/home-assistant/home-assistant>
* <https://github.com/cdr/code-server>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) 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,4 @@
home-assistant App for TrueNAS SCALE
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
home-assistant App for TrueNAS SCALE

Binary file not shown.

View File

@ -0,0 +1,39 @@
# 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 |
|-----|------|---------|-------------|
| env | object | `{}` | |
| git.deployKey | string | `""` | |
| git.deployKeyBase64 | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"homeassistant/home-assistant"` | |
| image.tag | string | `"2021.8.8"` | |
| influxdb.architecture | string | `"standalone"` | |
| influxdb.authEnabled | bool | `false` | |
| influxdb.database | string | `"home_assistant"` | |
| influxdb.enabled | bool | `false` | |
| influxdb.persistence.enabled | bool | `false` | |
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
| postgresql.enabled | bool | `false` | |
| postgresql.persistence.enabled | bool | `false` | |
| postgresql.postgresqlDatabase | string | `"home-assistant"` | |
| postgresql.postgresqlPassword | string | `"home-assistant-pass"` | |
| postgresql.postgresqlUsername | string | `"home-assistant"` | |
| prometheus.serviceMonitor.enabled | bool | `false` | |
| service.main.ports.main.port | int | `8123` | |
| strategy.type | string | `"Recreate"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,15 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: homeassistant/home-assistant
pullPolicy: IfNotPresent
tag: 2021.9.4
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,15 @@
{{- if or .Values.git.deployKey .Values.git.deployKeyBase64 }}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "common.names.fullname" . }}-deploykey
labels:
{{- include "common.labels" . | nindent 4 }}
type: Opaque
data:
{{- if .Values.git.deployKey }}
id_rsa: {{ .Values.git.deployKey | b64enc | quote }}
{{- else }}
id_rsa: {{ .Values.git.deployKeyBase64 | quote }}
{{- end }}
{{- end }}

View File

@ -0,0 +1,85 @@
# Default values for Home Assistant
image:
repository: homeassistant/home-assistant
pullPolicy: IfNotPresent
tag: 2021.9.4
strategy:
type: Recreate
env: {}
# TZ:
service:
main:
ports:
main:
port: 8123
# # Enable devices to be discoverable
# hostNetwork: true
# # When hostNetwork is true set dnsPolicy to ClusterFirstWithHostNet
# dnsPolicy: ClusterFirstWithHostNet
# # Enable passing thru a USB device to Home Assistant
# securityContext:
# privileged: true
# Allow access a Git repository by passing in a private SSH key
git:
# Raw SSH private key
deployKey: ""
# Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence.
deployKeyBase64: ""
# Enable a prometheus-operator servicemonitor
prometheus:
serviceMonitor:
enabled: false
# interval: 1m
# additionalLabels: {}
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
# # Path to your Z-Wave / Zigbee device in the container
# additionalVolumeMounts:
# - name: zwave-usb
# mountPath: /dev/serial/by-id/usb-0658_0200-if00
# # Path to your Z-Wave / Zigbee device on the host
# additionalVolumes:
# - name: zwave-usb
# hostPath:
# path: /dev/serial/by-id/usb-0658_0200-if00
# Enabled postgres
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
postgresql:
enabled: false
postgresqlUsername: home-assistant
postgresqlPassword: home-assistant-pass
postgresqlDatabase: home-assistant
persistence:
enabled: false
# storageClass: ""
# Enable influxdb
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/influxdb
influxdb:
enabled: false
architecture: standalone
database: home_assistant
authEnabled: false
persistence:
enabled: false
# storageClass: ""
# size: 8Gi

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:05:40.41648452Z"
generated: "2021-09-07T09:02:34.594874389Z"

View File

@ -0,0 +1,8 @@
# 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" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### 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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T09:02:38.884374704Z"

View File

@ -0,0 +1,27 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.8
deprecated: false
description: API Support for your favorite torrent trackers.
home: https://github.com/truecharts/apps/tree/master/charts/stable/jackett
icon: https://truecharts.org/_static/img/jackett-icon.png
keywords:
- jackett
- torrent
- usenet
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
- email: kjeld@schouten-lebbing.nl
name: Ornias1993
url: truecharts.org
name: jackett
sources:
- https://github.com/Jackett/Jackett
type: application
version: 6.11.18

View File

@ -0,0 +1,37 @@
# Introduction
API Support for your favorite torrent trackers.
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://github.com/Jackett/Jackett>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) 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,4 @@
API Support for your favorite torrent trackers.
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
API Support for your favorite torrent trackers.

Binary file not shown.

View File

@ -0,0 +1,30 @@
# 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 |
|-----|------|---------|-------------|
| env | object | `{}` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | |
| image.tag | string | `"v0.18.636"` | |
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
| probes.liveness.path | string | `"/UI/Login"` | |
| probes.readiness.path | string | `"/UI/Login"` | |
| probes.startup.path | string | `"/UI/Login"` | |
| service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `9117` | |
| strategy.type | string | `"Recreate"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,25 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: ghcr.io/k8s-at-home/jackett
pullPolicy: IfNotPresent
tag: v0.18.686
probes:
liveness:
path: "/UI/Login"
readiness:
path: "/UI/Login"
startup:
path: "/UI/Login"
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,41 @@
# Default values for Jackett.
image:
repository: ghcr.io/k8s-at-home/jackett
pullPolicy: IfNotPresent
tag: v0.18.686
strategy:
type: Recreate
service:
main:
enabled: true
ports:
main:
port: 9117
probes:
liveness:
path: "/UI/Login"
readiness:
path: "/UI/Login"
startup:
path: "/UI/Login"
env: {}
# TZ: UTC
# PUID: 1001
# PGID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:49.840113651Z"
generated: "2021-09-07T09:02:43.201384044Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:54.604904156Z"
generated: "2021-09-07T09:02:47.560982992Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:05:59.258142725Z"
generated: "2021-09-07T09:02:52.014420083Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:03.88562713Z"
generated: "2021-09-07T09:02:56.35039691Z"

View File

@ -0,0 +1,8 @@
# 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" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### 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,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T09:03:00.784968814Z"

View File

@ -0,0 +1,24 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org
version: 6.13.8
description: A comics/mangas server to serve/stream pages via API
home: https://github.com/truechartsapps/tree/master/charts/incubator/komga
icon: https://komga.org/assets/media/logo.svg
keywords:
- komga
- comics
- mangas
- server
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: truecharts
url: https://truecharts.org
name: komga
sources:
- https://komga.org/
- https://github.com/gotson/komga
version: 1.9.18

View File

@ -0,0 +1,38 @@
# Introduction
A comics/mangas server to serve/stream pages via API
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://komga.org/>
* <https://github.com/gotson/komga>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 6.13.7 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) 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,4 @@
A comics/mangas server to serve/stream pages via API
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
A comics/mangas server to serve/stream pages via API

Binary file not shown.

View File

@ -0,0 +1,21 @@
# 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 |
|-----|------|---------|-------------|
| env | object | See below | environment variables. See more environment variables in the [komga documentation](https://komga.org/installation/configuration.html#optional-configuration). |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"gotson/komga"` | image repository |
| image.tag | string | `"0.120.1"` | image tag |
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
| service | object | See values.yaml | Configures service settings for the chart. |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,15 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: gotson/komga
pullPolicy: IfNotPresent
tag: 0.123.0
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,40 @@
#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
#
image:
# -- image repository
repository: gotson/komga
# -- image tag
tag: 0.123.0
# -- image pull policy
pullPolicy: IfNotPresent
# -- environment variables. See more environment variables in the [komga documentation](https://komga.org/installation/configuration.html#optional-configuration).
# @default -- See below
env: {}
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 8080
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /config
data:
enabled: false
mountPath: /data

View File

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:13.586553054Z"
generated: "2021-09-07T09:03:05.216143064Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:06:18.547193543Z"
generated: "2021-09-07T09:03:09.6454035Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:23.44800274Z"
generated: "2021-09-07T09:03:14.009565546Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:28.318433843Z"
generated: "2021-09-07T09:03:18.290394479Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:33.100658339Z"
generated: "2021-09-07T09:03:22.633401098Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:37.818078691Z"
generated: "2021-09-07T09:03:26.862751301Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:42.493597054Z"
generated: "2021-09-07T09:03:31.11610382Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:06:47.358591906Z"
generated: "2021-09-07T09:03:35.292946326Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:06:52.369513139Z"
generated: "2021-09-07T09:03:39.639587734Z"

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 15.3.1
digest: sha256:9b60ad9c2e2d09a112a54fb1b46b836d458abf2f29aa38210bc91f063152e562
generated: "2021-09-07T08:06:59.664654844Z"
generated: "2021-09-07T09:03:46.288198919Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:07:08.181012472Z"
generated: "2021-09-07T09:03:54.120199425Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:07:12.993559146Z"
generated: "2021-09-07T09:03:58.381584709Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:07:17.845494491Z"
generated: "2021-09-07T09:04:02.63018457Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.8
digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823
generated: "2021-09-07T08:07:22.556020513Z"
generated: "2021-09-07T09:04:06.846209159Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:07:27.255296471Z"
generated: "2021-09-07T09:04:11.191072342Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.8
digest: sha256:1c5edc9e3d2af2e1527e88ae154d0011d152373d02417f7482b4b94237c0503f
generated: "2021-09-07T08:07:32.064593274Z"
generated: "2021-09-07T09:04:15.520926391Z"

Some files were not shown because too many files have changed in this diff Show More