mirror of
https://ghproxy.com/https://github.com/truecharts/charts.git
synced 2026-07-17 17:20:24 +08:00
Common 4.0 App Refactor Part 1 - Ornias
remove common references to the addons (we don't use them yet) (+23 squashed commit) Squashed commit: [042fc006] try slight modification to testing framework [6955bdad] another small qbittorrent fix [30af6b78] fix one bitwarden error (anotherone left [ac54db9f] enable firefly port [a9e58eca] push qbittorrent fix [99840038] fixed transmission [ffe8a49e] template all the things... [26c7b4d1] this should just work (tm) [fcacae4c] try a transmission fix [8d21bd91] merge unittests and app tests to limit amount of running jobs [343ba579] more services polish [c133342f] some small fixes [5979e653] fix some port references [15a1defa] oops [2458d7e9] increase common version again [7f74f1cf] change way ports are handled [73c479cb] fix services naming scheme [501aeffc] update common version again [726954b0] fix emptydir reference for tests [66774955] pump major versions [6fa711d1] update common-version for all [671a7b31] PUID and PGID changes for automated tests (non-gui changes) [3dc21053] hostpathmounts and gpu changes
This commit is contained in:
86
.github/workflows/apps.yaml
vendored
86
.github/workflows/apps.yaml
vendored
@@ -59,15 +59,18 @@ jobs:
|
||||
echo "::set-output name=empty_matrix::false"
|
||||
fi
|
||||
|
||||
app-unit-tests:
|
||||
app-tests:
|
||||
needs: [changes]
|
||||
if: ${{ needs.changes.outputs.empty_matrix == 'false' }}
|
||||
name: App Unit Tests
|
||||
name: App Tests
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.changes.outputs.matrix) }}
|
||||
fail-fast: false
|
||||
steps:
|
||||
##
|
||||
# GENERAL SECTION
|
||||
##
|
||||
- name: Checkout
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
uses: actions/checkout@v2
|
||||
@@ -93,24 +96,44 @@ jobs:
|
||||
fi
|
||||
echo ::set-output name=train::${train}
|
||||
if test -d "./charts/${train}/${{ matrix.app }}/tests/"; then
|
||||
unittests='true'
|
||||
unittests='true'
|
||||
echo "::set-output name=unittests::true"
|
||||
else
|
||||
unittests="false"
|
||||
echo "::set-output name=unittests::false"
|
||||
fi
|
||||
|
||||
- name: Install Helm
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
uses: azure/setup-helm@v1
|
||||
with:
|
||||
version: v3.5.3
|
||||
|
||||
- uses: actions/setup-python@v2
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
with:
|
||||
python-version: 3.7
|
||||
|
||||
- name: Set up chart-testing
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
uses: helm/chart-testing-action@v2.0.1
|
||||
|
||||
- uses: actions/setup-go@v2
|
||||
if: ${{ steps.prep-lint.outputs.unittests == 'true' }}
|
||||
with:
|
||||
go-version: '^1.16'
|
||||
|
||||
##
|
||||
# Unit-Test section
|
||||
##
|
||||
|
||||
# Get values for cache paths to be used in later steps
|
||||
- id: go-cache-paths
|
||||
if: ${{ steps.prep-lint.outputs.unittests == 'true' }}
|
||||
run: |
|
||||
echo "::set-output name=go-build::$(go env GOCACHE)"
|
||||
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
|
||||
|
||||
# Cache go build cache, used to speedup go test
|
||||
- name: Go Build Cache
|
||||
if: ${{ steps.prep-lint.outputs.unittests == 'true' }}
|
||||
@@ -133,54 +156,10 @@ jobs:
|
||||
with:
|
||||
test-results: test.json
|
||||
|
||||
app-tests:
|
||||
needs: [changes]
|
||||
if: ${{ needs.changes.outputs.empty_matrix == 'false' }}
|
||||
name: App Tests
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.changes.outputs.matrix) }}
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: Checkout
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Prepare-Lint
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
id: prep-lint
|
||||
run: |
|
||||
if test -f "./charts/stable/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="stable"
|
||||
elif test -f "./charts/incubator/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="incubator"
|
||||
elif test -f "./charts/deprecated/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="deprecated"
|
||||
elif test -f "./charts/non-free/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="non-free"
|
||||
elif test -f "./charts/library/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="library"
|
||||
else
|
||||
train="develop"
|
||||
fi
|
||||
echo ::set-output name=train::${train}
|
||||
|
||||
- name: Install Helm
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
uses: azure/setup-helm@v1
|
||||
with:
|
||||
version: v3.5.3
|
||||
|
||||
- uses: actions/setup-python@v2
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
with:
|
||||
python-version: 3.7
|
||||
|
||||
- name: Set up chart-testing
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
uses: helm/chart-testing-action@v2.0.1
|
||||
##
|
||||
# Chart-Testing Section
|
||||
##
|
||||
|
||||
- name: Run chart-testing (lint)
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
@@ -199,7 +178,7 @@ jobs:
|
||||
run: ct install --config .github/ct-install.yaml --charts 'charts/${{ steps.prep-lint.outputs.train }}/${{ matrix.app }}'
|
||||
|
||||
app-tests-complete:
|
||||
needs: [app-tests, app-unit-tests]
|
||||
needs: [app-tests]
|
||||
name: Apps Test Complete
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@@ -207,7 +186,7 @@ jobs:
|
||||
run: echo "App Tests Completed Successfully"
|
||||
|
||||
pre-release:
|
||||
needs: [app-tests, app-unit-tests]
|
||||
needs: [app-tests]
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
release: ${{ steps.prep.outputs.release }}
|
||||
@@ -233,10 +212,8 @@ jobs:
|
||||
catalog-release:
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre-release
|
||||
if: needs.pre-release.outputs.release == 'true'
|
||||
container:
|
||||
image: ixsystems/catalog_validation:latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
name: Checkout
|
||||
@@ -323,6 +300,7 @@ jobs:
|
||||
cd catalog
|
||||
/bin/bash -c "PWD=${pwd}; /usr/local/bin/catalog_validate validate --path $PWD"
|
||||
- name: Commit and Push new App releases
|
||||
if: ${{ steps.pre-release.outputs.release == 'true' }}
|
||||
run: |
|
||||
cd catalog
|
||||
git config user.name "TrueCharts-Bot"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: nzbhydra
|
||||
version: 3.1.7
|
||||
version: 4.0.0
|
||||
upstream_version: 5.3.1
|
||||
appVersion: "auto"
|
||||
description: Usenet meta search
|
||||
@@ -20,7 +20,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers: []
|
||||
# annotations:
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,10 +8,11 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 5076
|
||||
ports:
|
||||
main:
|
||||
port: 5076
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -26,7 +27,7 @@ probes:
|
||||
failureThreshold: 5
|
||||
httpGet:
|
||||
path: /actuator/health/livenessState
|
||||
port: http
|
||||
port: main
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 10
|
||||
@@ -37,7 +38,7 @@ probes:
|
||||
failureThreshold: 5
|
||||
httpGet:
|
||||
path: /actuator/health/readinessState
|
||||
port: http
|
||||
port: main
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 10
|
||||
@@ -48,7 +49,7 @@ probes:
|
||||
failureThreshold: 5
|
||||
httpGet:
|
||||
path: /actuator/health/readinessState
|
||||
port: http
|
||||
port: main
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 10
|
||||
@@ -58,7 +59,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: appdaemon
|
||||
version: 0.1.4
|
||||
version: 1.0.0
|
||||
appVersion: v4.0.8
|
||||
description: AppDaemon is a loosely coupled, multithreaded, sandboxed python execution environment for writing automation apps for Home Assistant home automation software. It also provides a configurable dashboard (HADashboard) suitable for wall mounted tablets.
|
||||
type: application
|
||||
@@ -16,7 +16,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
email: info@truecharts.org
|
||||
|
||||
@@ -215,7 +215,7 @@ questions:
|
||||
required: true
|
||||
## TrueCharts Specific
|
||||
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -21,19 +21,21 @@ env:
|
||||
ELEVATION: 1217
|
||||
DASH_URL: "http://0.0.0.0:5050"
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 5050
|
||||
ports:
|
||||
main:
|
||||
port: 5050
|
||||
tcp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51050
|
||||
protocol: TCP
|
||||
targetPort: 51050
|
||||
ports:
|
||||
tcp:
|
||||
enabled: true
|
||||
port: 51050
|
||||
protocol: TCP
|
||||
|
||||
customStorage:
|
||||
hostPathMounts:
|
||||
- name: config
|
||||
enabled: true
|
||||
mountPath: /conf
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: bazarr
|
||||
version: 3.1.7
|
||||
version: 4.0.0
|
||||
upstream_version: 5.2.1
|
||||
appVersion: "auto"
|
||||
description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements
|
||||
@@ -24,7 +24,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,10 +8,11 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 6767
|
||||
ports:
|
||||
main:
|
||||
port: 6767
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -22,7 +23,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: calibre-web
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 4.3.1
|
||||
appVersion: "auto"
|
||||
description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -220,7 +220,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,10 +15,11 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8083
|
||||
ports:
|
||||
main:
|
||||
port: 8083
|
||||
|
||||
env: {}
|
||||
# TZ:
|
||||
@@ -31,7 +32,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: deluge
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
# upstream_version:
|
||||
appVersion: "auto"
|
||||
description: Deluge App for TrueNAS SCALE
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -149,7 +149,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,30 +15,31 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8112
|
||||
tcp:
|
||||
ports:
|
||||
main:
|
||||
port: 8112
|
||||
torrent:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51413
|
||||
protocol: TCP
|
||||
targetPort: 51413
|
||||
udp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51413
|
||||
protocol: UDP
|
||||
targetPort: 51413
|
||||
ports:
|
||||
tcp:
|
||||
enabled: true
|
||||
port: 51413
|
||||
protocol: TCP
|
||||
udp:
|
||||
enabled: true
|
||||
port: 51413
|
||||
protocol: UDP
|
||||
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: fireflyiii
|
||||
version: 1.0.2
|
||||
version: 2.0.2
|
||||
appVersion: "auto"
|
||||
description: A free and open source personal finance manager
|
||||
type: application
|
||||
@@ -16,7 +16,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
- name: postgresql
|
||||
version: 10.4.3
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
|
||||
@@ -347,7 +347,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "common.labels" . | nindent 4 }}
|
||||
name: dbcreds
|
||||
{{- $previous := lookup "v1" "Secret" .Release.Namespace "dbcreds" }}
|
||||
{{- $dbPass := "" }}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Default values for Bitwarden.
|
||||
# Default values for fireflyIII.
|
||||
|
||||
image:
|
||||
repository: jc5x/firefly-iii
|
||||
@@ -14,17 +14,19 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8080
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
tcp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51080
|
||||
protocol: TCP
|
||||
targetPort: 51080
|
||||
ports:
|
||||
tcp:
|
||||
enabled: true
|
||||
port: 51080
|
||||
protocol: TCP
|
||||
|
||||
env:
|
||||
DB_USERNAME: firefly
|
||||
@@ -47,20 +49,23 @@ persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/var/www/html/storage/upload"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
db:
|
||||
nameOverride: "db"
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
dbbackup:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: freshrss
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 2.3.1
|
||||
appVersion: "auto"
|
||||
description: FreshRSS is a self-hosted RSS feed aggregator
|
||||
@@ -20,7 +20,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -222,7 +222,7 @@ questions:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,10 +15,11 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 80
|
||||
ports:
|
||||
main:
|
||||
port: 80
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -29,7 +30,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: gaps
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 1.1.1
|
||||
appVersion: "auto"
|
||||
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
|
||||
@@ -20,7 +20,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -222,7 +222,7 @@ questions:
|
||||
default: "100Gi"
|
||||
|
||||
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,10 +8,11 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8484
|
||||
ports:
|
||||
main:
|
||||
port: 8484
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -20,7 +21,8 @@ persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/usr/data"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: grocy
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 4.3.1
|
||||
appVersion: "auto"
|
||||
description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
|
||||
@@ -18,7 +18,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -220,7 +220,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,10 +15,11 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 80
|
||||
ports:
|
||||
main:
|
||||
port: 80
|
||||
|
||||
env: {}
|
||||
# TZ:
|
||||
@@ -29,7 +30,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: heimdall
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 4.1.1
|
||||
appVersion: "auto"
|
||||
description: An Application dashboard and launcher
|
||||
@@ -17,7 +17,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,10 +15,11 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 80
|
||||
ports:
|
||||
main:
|
||||
port: 80
|
||||
|
||||
env: {}
|
||||
# TZ:
|
||||
@@ -33,7 +34,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: lazylibrarian
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 2.1.0
|
||||
appVersion: "latest"
|
||||
description: Get all your books, like series with Sonarr...
|
||||
@@ -20,7 +20,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -222,7 +222,7 @@ questions:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,10 +15,11 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 5299
|
||||
ports:
|
||||
main:
|
||||
port: 5299
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -29,7 +30,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: lychee
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 2.3.1
|
||||
appVersion: "auto"
|
||||
description: Lychee is a free photo-management tool, which runs on your server or web-space
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,10 +15,11 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 80
|
||||
ports:
|
||||
main:
|
||||
port: 80
|
||||
|
||||
env: {}
|
||||
# PHP_TZ: UTC
|
||||
@@ -29,7 +30,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: navidrome
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 2.3.1
|
||||
appVersion: "auto"
|
||||
description: Navidrome is an open source web-based music collection server and streamer
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,10 +8,11 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 4533
|
||||
ports:
|
||||
main:
|
||||
port: 4533
|
||||
|
||||
env:
|
||||
ND_SCANINTERVAL: "15m"
|
||||
@@ -24,7 +25,8 @@ persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/data"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: node-red
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 5.2.1
|
||||
appVersion: "auto"
|
||||
description: Node-RED is low-code programming for event-driven applications
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -17,16 +17,18 @@ env: {}
|
||||
# NODE_RED_ENABLE_SAFE_MODE:
|
||||
# FLOWS:
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 1880
|
||||
ports:
|
||||
main:
|
||||
port: 1880
|
||||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/data"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: nzbget
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 7.3.1
|
||||
appVersion: "auto"
|
||||
description: NZBGet is a Usenet downloader client
|
||||
@@ -20,7 +20,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,16 +8,18 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 6789
|
||||
ports:
|
||||
main:
|
||||
port: 6789
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: organizr
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 3.2.1
|
||||
appVersion: "latest"
|
||||
description: HTPC/Homelab Services Organizer
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -273,7 +273,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,10 +15,11 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 80
|
||||
ports:
|
||||
main:
|
||||
port: 80
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -29,7 +30,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: podgrab
|
||||
version: 1.0.4
|
||||
version: 2.0.0
|
||||
upstream_version: 1.0.0
|
||||
appVersion: "latest"
|
||||
description: A self-hosted podcast manager to download episodes as soon as they become live.
|
||||
@@ -17,7 +17,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
email: info@truecharts.org
|
||||
|
||||
@@ -245,7 +245,7 @@ questions:
|
||||
type: string
|
||||
default: "1Gi"
|
||||
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -15,17 +15,19 @@ podSecurityContext:
|
||||
runAsGroup: 568
|
||||
fsGroup: 568
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8080
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
tcp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51080
|
||||
protocol: TCP
|
||||
targetPort: 51080
|
||||
ports:
|
||||
tcp:
|
||||
enabled: true
|
||||
port: 51080
|
||||
protocol: TCP
|
||||
|
||||
env:
|
||||
PASSWORD: secretpasswordgoeshere
|
||||
@@ -35,12 +37,13 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
customStorage:
|
||||
hostPathMounts:
|
||||
- name: assets
|
||||
enabled: true
|
||||
mountPath: "/assets"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: qbittorrent
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 7.2.1
|
||||
appVersion: "auto"
|
||||
description: qBittorrent is a cross-platform free and open-source BitTorrent client
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -348,7 +348,7 @@ questions:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -1,21 +1,7 @@
|
||||
##
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# `SPDX-License-Identifier: Apache-2.0`
|
||||
#
|
||||
# This file is considered to be modified by the TrueCharts Project.
|
||||
##
|
||||
{{/* Define the configmap */}}
|
||||
{{- define "qbittorrent.configmap" -}}
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
@@ -24,7 +10,7 @@ metadata:
|
||||
{{- include "common.labels" . | nindent 4 }}
|
||||
data:
|
||||
{{- $bittorrentPort := "" -}}
|
||||
{{- $bittorrentPort = .Values.services.tcp.port.port -}}
|
||||
{{- $bittorrentPort = .Values.service.torrent.ports.tcp.port -}}
|
||||
{{- if $bittorrentPort }}
|
||||
31-update-port: |-
|
||||
#!/bin/bash
|
||||
@@ -43,3 +29,4 @@ data:
|
||||
fi
|
||||
fi
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
@@ -1 +1,6 @@
|
||||
{{/* Render the templates */}}
|
||||
{{ include "common.all" . }}
|
||||
|
||||
|
||||
{{/* Render the configmap */}}
|
||||
{{ include "qbittorrent.configmap" . }}
|
||||
|
||||
@@ -14,31 +14,30 @@ env: {}
|
||||
# PGID: 1001
|
||||
# UMASK: 022
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8080
|
||||
tcp:
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
torrent:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 6881
|
||||
protocol: TCP
|
||||
targetPort: 51413
|
||||
udp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 6881
|
||||
protocol: UDP
|
||||
targetPort: 51413
|
||||
|
||||
ports:
|
||||
tcp:
|
||||
enabled: true
|
||||
port: 6881
|
||||
protocol: TCP
|
||||
udp:
|
||||
enabled: true
|
||||
port: 6881
|
||||
protocol: UDP
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
@@ -54,7 +53,3 @@ additionalVolumes:
|
||||
additionalVolumeMounts:
|
||||
- mountPath: /config/custom-cont-init.d
|
||||
name: qbittorrent-scripts
|
||||
|
||||
|
||||
appAdditionalServicesEnabled: true
|
||||
appAdditionalServices:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: readarr
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 2.1.0
|
||||
appVersion: "auto"
|
||||
description: A fork of Radarr to work with Books & AudioBooks
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -221,7 +221,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,10 +8,11 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8787
|
||||
ports:
|
||||
main:
|
||||
port: 8787
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -43,7 +44,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: sabnzbd
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 5.0.1
|
||||
appVersion: "auto"
|
||||
description: Free and easy binary newsreader
|
||||
@@ -20,7 +20,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -237,7 +237,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,10 +8,11 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8080
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
@@ -22,7 +23,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: tvheadend
|
||||
version: 4.1.6
|
||||
version: 5.0.0
|
||||
upstream_version: 1.1.2
|
||||
appVersion: "latest"
|
||||
description: TVheadend - a TV streaming server and digital video recorder
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -263,7 +263,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -22,23 +22,26 @@ env: {}
|
||||
# TZ: Europe/London
|
||||
# RUN_OPTS: <run options here>
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 9981
|
||||
ports:
|
||||
main:
|
||||
port: 9981
|
||||
htsp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 9982
|
||||
protocol: TCP
|
||||
targetPort: 9982
|
||||
ports:
|
||||
htsp:
|
||||
enabled: true
|
||||
port: 9982
|
||||
protocol: TCP
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: unifi
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 1.5.1
|
||||
appVersion: "auto"
|
||||
description: Ubiquiti Network's Unifi Controller
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -12,8 +12,8 @@ image:
|
||||
|
||||
envTpl:
|
||||
# Permissions Settings
|
||||
UNIFI_GID: "{{ .Values.PUID }}"
|
||||
UNIFI_UID: "{{ .Values.PGID }}"
|
||||
UNIFI_GID: "568"
|
||||
UNIFI_UID: "568"
|
||||
|
||||
##
|
||||
# Most other defaults are set in questions.yaml
|
||||
|
||||
@@ -348,7 +348,7 @@ questions:
|
||||
default: "100Gi"
|
||||
|
||||
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -17,27 +17,26 @@ podSecurityContext:
|
||||
|
||||
envTpl:
|
||||
# Permissions Settings
|
||||
UNIFI_GID: "{{ .Values.PUID }}"
|
||||
UNIFI_UID: "{{ .Values.PGID }}"
|
||||
UNIFI_GID: "568"
|
||||
UNIFI_UID: "568"
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8443
|
||||
tcp:
|
||||
ports:
|
||||
main:
|
||||
port: 8443
|
||||
conn:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 8080
|
||||
protocol: TCP
|
||||
targetPort: 8080
|
||||
udp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 3478
|
||||
protocol: UDP
|
||||
targetPort: 3478
|
||||
ports:
|
||||
http:
|
||||
enabled: true
|
||||
port: 8080
|
||||
protocol: TCP
|
||||
stun:
|
||||
enabled: true
|
||||
port: 3478
|
||||
protocol: UDP
|
||||
|
||||
env: {}
|
||||
# TZ:
|
||||
@@ -48,7 +47,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/unifi"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -3,7 +3,8 @@ image:
|
||||
tag: latest
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8080
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
|
||||
@@ -236,7 +236,7 @@ service:
|
||||
# -- Port protocol.
|
||||
# Support values are `HTTP`, `HTTPS`, `TCP` and `UDP`.
|
||||
# HTTPS and HTTPS spawn a TCP service and get used for internal URL and name generation
|
||||
protocol: HTTP
|
||||
protocol: HTTP
|
||||
|
||||
# -- Specify a service targetPort if you wish to differ the service port from the application port.
|
||||
# If `targetPort` is specified, this port number is used in the container definition instead of
|
||||
@@ -412,239 +412,3 @@ resources: {}
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
# -- The common chart supports several add-ons. These can be configured under this key.
|
||||
# @default -- See below
|
||||
addons:
|
||||
|
||||
# -- The common chart supports adding a VPN add-on. It can be configured under this key.
|
||||
# For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#wireguard-vpn)
|
||||
# @default -- See values.yaml
|
||||
vpn:
|
||||
# -- Enable running a VPN in the pod to route traffic through a VPN
|
||||
enabled: false
|
||||
|
||||
# -- Specify the VPN type. Valid options are openvpn or wireguard
|
||||
type: openvpn
|
||||
|
||||
# -- OpenVPN specific configuration
|
||||
# @default -- See below
|
||||
openvpn:
|
||||
image:
|
||||
# -- Specify the openvpn client image
|
||||
repository: dperson/openvpn-client
|
||||
# -- Specify the openvpn client image tag
|
||||
tag: latest
|
||||
# -- Specify the openvpn client image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# -- Credentials to connect to the VPN Service (used with -a)
|
||||
auth: # "user;password"
|
||||
# -- Optionally specify an existing secret that contains the credentials.
|
||||
# Credentials should be stored under the `VPN_AUTH` key
|
||||
authSecret: # my-vpn-secret
|
||||
|
||||
# -- WireGuard specific configuration
|
||||
# @default -- See below
|
||||
wireguard:
|
||||
image:
|
||||
# -- Specify the WireGuard image
|
||||
repository: docker pull ghcr.io/k8s-at-home/wireguard
|
||||
# -- Specify the WireGuard image tag
|
||||
tag: v1.0.20210424
|
||||
# -- Specify the WireGuard image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# -- Set the VPN container securityContext
|
||||
# @default -- See values.yaml
|
||||
securityContext:
|
||||
capabilities:
|
||||
add:
|
||||
- NET_ADMIN
|
||||
- SYS_MODULE
|
||||
|
||||
# -- All variables specified here will be added to the vpn sidecar container
|
||||
# See the documentation of the VPN image for all config values
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
|
||||
# -- Provide a customized vpn configuration file to be used by the VPN.
|
||||
configFile: # |-
|
||||
# Some Example Config
|
||||
# remote greatvpnhost.com 8888
|
||||
# auth-user-pass
|
||||
# Cipher AES
|
||||
|
||||
# -- Reference an existing secret that contains the VPN configuration file
|
||||
# The chart expects it to be present under the `vpnConfigfile` key.
|
||||
configFileSecret:
|
||||
|
||||
# -- Provide custom up/down scripts that can be used by the vpn configuration.
|
||||
# @default -- See values.yaml
|
||||
scripts:
|
||||
up: # |-
|
||||
# #!/bin/bash
|
||||
# echo "connected" > /shared/vpnstatus
|
||||
down: # |-
|
||||
# #!/bin/bash
|
||||
# echo "disconnected" > /shared/vpnstatus
|
||||
|
||||
additionalVolumeMounts: []
|
||||
|
||||
# -- Optionally specify a livenessProbe, e.g. to check if the connection is still
|
||||
# being protected by the VPN
|
||||
livenessProbe: {}
|
||||
# exec:
|
||||
# command:
|
||||
# - sh
|
||||
# - -c
|
||||
# - if [ $(curl -s https://ipinfo.io/country) == 'US' ]; then exit 0; else exit $?; fi
|
||||
# initialDelaySeconds: 30
|
||||
# periodSeconds: 60
|
||||
# failureThreshold: 1
|
||||
|
||||
# If set to true, will deploy a network policy that blocks all outbound
|
||||
# traffic except traffic specified as allowed
|
||||
networkPolicy:
|
||||
enabled: false
|
||||
|
||||
# The egress configuration for your network policy, All outbound traffic
|
||||
# From the pod will be blocked unless specified here. Your cluster must
|
||||
# have a CNI that supports network policies (Canal, Calico, etc...)
|
||||
# https://kubernetes.io/docs/concepts/services-networking/network-policies/
|
||||
# https://github.com/ahmetb/kubernetes-network-policy-recipes
|
||||
egress:
|
||||
# - to:
|
||||
# - ipBlock:
|
||||
# cidr: 0.0.0.0/0
|
||||
# ports:
|
||||
# - port: 53
|
||||
# protocol: UDP
|
||||
# - port: 53
|
||||
# protocol: TCP
|
||||
|
||||
# -- The common library supports adding a code-server add-on to access files. It can be configured under this key.
|
||||
# For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#code-server)
|
||||
# @default -- See values.yaml
|
||||
codeserver:
|
||||
# -- Enable running a code-server container in the pod
|
||||
enabled: false
|
||||
|
||||
image:
|
||||
# -- Specify the code-server image
|
||||
repository: codercom/code-server
|
||||
# -- Specify the code-server image tag
|
||||
tag: 3.9.2
|
||||
# -- Specify the code-server image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# -- Set any environment variables for code-server here
|
||||
env: {}
|
||||
# TZ: UTC
|
||||
|
||||
# -- Set codeserver command line arguments.
|
||||
# Consider setting --user-data-dir to a persistent location to preserve code-server setting changes
|
||||
args:
|
||||
- --auth
|
||||
- none
|
||||
# - --user-data-dir
|
||||
# - "/config/.vscode"
|
||||
|
||||
# -- Specify a list of volumes that get mounted in the code-server container.
|
||||
# At least 1 volumeMount is required!
|
||||
volumeMounts: []
|
||||
# - name: config
|
||||
# mountPath: /data/config
|
||||
|
||||
# -- Specify the working dir that will be opened when code-server starts
|
||||
# If not given, the app will default to the mountpah of the first specified volumeMount
|
||||
workingDir: ""
|
||||
|
||||
# -- Optionally allow access a Git repository by passing in a private SSH key
|
||||
# @default -- See below
|
||||
git:
|
||||
# -- Raw SSH private key
|
||||
deployKey: ""
|
||||
# -- Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence.
|
||||
deployKeyBase64: ""
|
||||
# -- Existing secret containing SSH private key
|
||||
# The chart expects it to be present under the `id_rsa` key.
|
||||
deployKeySecret: ""
|
||||
|
||||
service:
|
||||
# -- Enable a service for the code-server add-on.
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
# Specify the default port information
|
||||
ports:
|
||||
codeserver:
|
||||
port: 12321
|
||||
enabled: true
|
||||
protocol: TCP
|
||||
targetPort: codeserver
|
||||
## Specify the nodePort value for the LoadBalancer and NodePort service types.
|
||||
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
|
||||
##
|
||||
# nodePort:
|
||||
annotations: {}
|
||||
labels: {}
|
||||
|
||||
ingress:
|
||||
# -- Enable an ingress for the code-server add-on.
|
||||
enabled: false
|
||||
nameOverride: codeserver
|
||||
annotations: {}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
labels: {}
|
||||
hosts:
|
||||
- host: code.chart-example.local
|
||||
paths:
|
||||
- path: /
|
||||
# Ignored if not kubeVersion >= 1.14-0
|
||||
pathType: Prefix
|
||||
tls: []
|
||||
# - secretName: chart-example-tls
|
||||
# hosts:
|
||||
# - code.chart-example.local
|
||||
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
|
||||
# -- The common library supports adding a promtail add-on to to access logs and ship them to loki. It can be configured under this key.
|
||||
# @default -- See values.yaml
|
||||
promtail:
|
||||
# -- Enable running a promtail container in the pod
|
||||
enabled: false
|
||||
|
||||
image:
|
||||
# -- Specify the promtail image
|
||||
repository: grafana/promtail
|
||||
# -- Specify the promtail image tag
|
||||
tag: 2.2.0
|
||||
# -- Specify the promtail image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# -- Set any environment variables for promtail here
|
||||
env: {}
|
||||
|
||||
# -- Set promtail command line arguments
|
||||
args: []
|
||||
|
||||
# -- The URL to Loki
|
||||
loki: ""
|
||||
|
||||
# -- The paths to logs on the volume
|
||||
logs: []
|
||||
# - name: log
|
||||
# path: /config/logs/*.log
|
||||
|
||||
# -- Specify a list of volumes that get mounted in the promtail container.
|
||||
# At least 1 volumeMount is required!
|
||||
volumeMounts: []
|
||||
# - name: config
|
||||
# mountPath: /config
|
||||
# readOnly: true
|
||||
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: bitwarden
|
||||
version: 1.2.6
|
||||
version: 2.0.0
|
||||
upstream_version: 2.1.5
|
||||
appVersion: "auto"
|
||||
description: Unofficial Bitwarden compatible server written in Rust
|
||||
@@ -22,7 +22,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
- name: postgresql
|
||||
version: 10.4.3
|
||||
|
||||
@@ -692,7 +692,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
{{/* Define the configmap */}}
|
||||
{{- define "bitwarden.configmap" -}}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: bitwardenconfig
|
||||
labels:
|
||||
{{- include "common.labels" . | nindent 4 }}
|
||||
data:
|
||||
ROCKET_PORT: "8080"
|
||||
SIGNUPS_ALLOWED: {{ .Values.bitwardenrs.allowSignups | quote }}
|
||||
@@ -112,3 +113,4 @@ data:
|
||||
{{- else }}
|
||||
ENABLE_DB_WAL: "false"
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
@@ -1,3 +1,6 @@
|
||||
{{/* Define the secrets */}}
|
||||
{{- define "bitwarden.secrets" -}}
|
||||
|
||||
{{- $adminToken := "" }}
|
||||
{{- if eq .Values.bitwardenrs.admin.enabled true }}
|
||||
{{- $adminToken = .Values.bitwardenrs.admin.token | default (randAlphaNum 48) | b64enc | quote }}
|
||||
@@ -17,8 +20,6 @@ apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: bitwardensecret
|
||||
labels:
|
||||
{{- include "common.labels" . | nindent 4 }}
|
||||
data:
|
||||
{{- if ne $adminToken "" }}
|
||||
ADMIN_TOKEN: {{ $adminToken }}
|
||||
@@ -54,3 +55,4 @@ data:
|
||||
{{- end }}
|
||||
url: {{ ( printf "%v%v:%v@%v-%v:%v/%v" "postgresql://" .Values.postgresql.postgresqlUsername $dbPass .Release.Name "postgresql" "5432" .Values.postgresql.postgresqlDatabase ) | b64enc | quote }}
|
||||
type: Opaque
|
||||
{{- end -}}
|
||||
@@ -4,5 +4,11 @@
|
||||
{{/* Render the templates */}}
|
||||
{{ include "common.all" . }}
|
||||
|
||||
{{/* Render configmap for bitwarden */}}
|
||||
{{- include "bitwarden.configmap" . }}
|
||||
|
||||
{{/* Render secrets for bitwarden */}}
|
||||
{{- include "bitwarden.secrets" . }}
|
||||
|
||||
{{/* Render special ingress for bitwarden */}}
|
||||
{{- include "bitwarden.ingress" . }}
|
||||
|
||||
@@ -8,13 +8,16 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8080
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
ws:
|
||||
port:
|
||||
port: 3012
|
||||
ports:
|
||||
ws:
|
||||
enabled: true
|
||||
port: 3012
|
||||
|
||||
env: {}
|
||||
|
||||
@@ -146,20 +149,23 @@ persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/data"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
db:
|
||||
nameOverride: "db"
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
dbbackup:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: collabora-online
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
# upstream_version:
|
||||
appVersion: "auto"
|
||||
description: Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use.
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -210,7 +210,7 @@ questions:
|
||||
default: 36004
|
||||
required: true
|
||||
# Reverse Proxy
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -13,12 +13,12 @@ podSecurityContext:
|
||||
runAsGroup: null
|
||||
fsGroup: null
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
type: NodePort
|
||||
port:
|
||||
port: 9980
|
||||
nodePort: 30980
|
||||
ports:
|
||||
main:
|
||||
port: 9980
|
||||
|
||||
env:
|
||||
domain: nextcloud\.domain\.tld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: deepstack-cpu
|
||||
version: 1.0.4
|
||||
version: 2.0.0
|
||||
# upstream_version:
|
||||
appVersion: "auto"
|
||||
description: DeepStack AI provides AI features including Face Recognition, Object Detection, Scene Recognition and custom AI Models
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -18,8 +18,8 @@ podSecurityContext:
|
||||
|
||||
envTpl:
|
||||
# Permissions Settings
|
||||
USER_ID: "{{ .Values.PUID }}"
|
||||
GROUP_ID: "{{ .Values.PGID }}"
|
||||
USER_ID: "568"
|
||||
GROUP_ID: "568"
|
||||
|
||||
##
|
||||
# Most other defaults are set in questions.yaml
|
||||
|
||||
@@ -286,7 +286,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,11 +8,12 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
enabled: true
|
||||
port:
|
||||
port: 5000
|
||||
ports:
|
||||
main:
|
||||
port: 5000
|
||||
|
||||
podSecurityContext:
|
||||
runAsNonRoot: false
|
||||
@@ -22,8 +23,8 @@ podSecurityContext:
|
||||
|
||||
envTpl:
|
||||
# Permissions Settings
|
||||
USER_ID: "{{ .Values.PUID }}"
|
||||
GROUP_ID: "{{ .Values.PGID }}"
|
||||
USER_ID: "568"
|
||||
GROUP_ID: "568"
|
||||
|
||||
env:
|
||||
# TZ: UTC
|
||||
@@ -39,13 +40,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/datastore"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
## TrueCharts Values
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: false
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: emby
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
# upstream_version:
|
||||
appVersion: "auto"
|
||||
description: Emby Server is a home media server
|
||||
@@ -20,7 +20,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -220,7 +220,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
@@ -275,13 +275,13 @@ questions:
|
||||
type: hostpath
|
||||
required: true
|
||||
# Specify GPU configuration
|
||||
- variable: gpuConfiguration
|
||||
- variable: scaleGPU
|
||||
label: "GPU Configuration"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: dict
|
||||
$ref:
|
||||
- "definitions/gpuConfiguration"
|
||||
- "definitions/scaleGPU"
|
||||
attrs: []
|
||||
- variable: ingress
|
||||
label: ""
|
||||
|
||||
@@ -13,16 +13,18 @@ strategy:
|
||||
podSecurityContext:
|
||||
supplementalGroups: [44, 107]
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8096
|
||||
ports:
|
||||
main:
|
||||
port: 8096
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: esphome
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 4.3.1
|
||||
appVersion: "auto"
|
||||
description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -271,7 +271,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -8,10 +8,11 @@ image:
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 6052
|
||||
ports:
|
||||
main:
|
||||
port: 6052
|
||||
|
||||
env: {}
|
||||
# ESPHOME_DASHBOARD_USE_PING: true
|
||||
@@ -26,7 +27,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: handbrake
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
# upstream_version:
|
||||
appVersion: "auto"
|
||||
description: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
@@ -20,8 +20,8 @@ podSecurityContext:
|
||||
#All values here are set as the docker defaults.
|
||||
envTpl:
|
||||
# Permissions Settings
|
||||
USER_ID: "{{ .Values.PUID }}"
|
||||
GROUP_ID: "{{ .Values.PGID }}"
|
||||
USER_ID: "568"
|
||||
GROUP_ID: "568"
|
||||
|
||||
##
|
||||
# Most other defaults are set in questions.yaml
|
||||
|
||||
@@ -369,7 +369,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -16,23 +16,25 @@ podSecurityContext:
|
||||
fsGroup: 0
|
||||
supplementalGroups: [24, 44, 107]
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 5800
|
||||
ports:
|
||||
main:
|
||||
port: 5800
|
||||
vnc:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 5900
|
||||
protocol: "TCP"
|
||||
targetPort: 5900
|
||||
ports:
|
||||
vnc:
|
||||
enabled: true
|
||||
port: 5900
|
||||
protocol: "TCP"
|
||||
|
||||
# All values here are set as the docker defaults.
|
||||
envTpl:
|
||||
# Permissions Settings
|
||||
USER_ID: "{{ .Values.PUID }}"
|
||||
GROUP_ID: "{{ .Values.PGID }}"
|
||||
USER_ID: "568"
|
||||
GROUP_ID: "568"
|
||||
|
||||
env:
|
||||
# General Settings
|
||||
@@ -53,7 +55,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: home-assistant
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 5.3.0
|
||||
appVersion: "auto"
|
||||
description: home-assistant App for TrueNAS SCALE
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
# ## postgresql is currently not ported to SCALE yet.
|
||||
# - name: postgresql
|
||||
|
||||
@@ -235,7 +235,7 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
- variable: hostPathMounts
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
|
||||
@@ -19,11 +19,11 @@ podSecurityContext:
|
||||
env: {}
|
||||
# TZ:
|
||||
|
||||
services:
|
||||
service:
|
||||
main:
|
||||
port:
|
||||
port: 8123
|
||||
nodePort: 30023
|
||||
ports:
|
||||
main:
|
||||
port: 8123
|
||||
|
||||
# # Enable devices to be discoverable
|
||||
# hostNetwork: true
|
||||
@@ -53,7 +53,8 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
emptyDir: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
storageClass: ""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: jackett
|
||||
version: 3.1.6
|
||||
version: 4.0.0
|
||||
upstream_version: 7.0.1
|
||||
appVersion: "auto"
|
||||
description: API Support for your favorite torrent trackers.
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 3.5.8
|
||||
version: 4.1.1
|
||||
# condition:
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user