Compare commits
20 Commits
zalando-po
...
oauth2-pro
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e853c19868 | ||
|
|
3767232a34 | ||
|
|
13d028db2f | ||
|
|
57477f7f45 | ||
|
|
93502f1946 | ||
|
|
02471a1b11 | ||
|
|
0d2abb800f | ||
|
|
a227188fae | ||
|
|
8f284df2f5 | ||
|
|
47f4ce2ffe | ||
|
|
1726590f14 | ||
|
|
56a328e8cb | ||
|
|
dfd04a3e67 | ||
|
|
841275dcef | ||
|
|
0302182b3c | ||
|
|
da42d2b8d6 | ||
|
|
a0c91706e2 | ||
|
|
0b95691902 | ||
|
|
e3a7855ce0 | ||
|
|
164459390b |
@@ -103,6 +103,60 @@
|
|||||||
"contributions": [
|
"contributions": [
|
||||||
"code"
|
"code"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "Ardetus",
|
||||||
|
"name": "Ardetus",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/2253935?v=4",
|
||||||
|
"profile": "https://github.com/Ardetus",
|
||||||
|
"contributions": [
|
||||||
|
"code"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "dynamicat",
|
||||||
|
"name": "Chris Golden",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/12977282?v=4",
|
||||||
|
"profile": "https://github.com/dynamicat",
|
||||||
|
"contributions": [
|
||||||
|
"code"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "psychopenguin",
|
||||||
|
"name": "Fabio Brito d'Araujo e Oliveira",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/1420115?v=4",
|
||||||
|
"profile": "https://github.com/psychopenguin",
|
||||||
|
"contributions": [
|
||||||
|
"code"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "allenporter",
|
||||||
|
"name": "Allen Porter",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/6026418?v=4",
|
||||||
|
"profile": "https://github.com/allenporter",
|
||||||
|
"contributions": [
|
||||||
|
"code"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "rasmustwh",
|
||||||
|
"name": "Rasmus Hermansen",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/2485005?v=4",
|
||||||
|
"profile": "https://github.com/rasmustwh",
|
||||||
|
"contributions": [
|
||||||
|
"code"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "FlipEnergy",
|
||||||
|
"name": "Dennis Zhang",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/7714381?v=4",
|
||||||
|
"profile": "http://pleasenoddos.com",
|
||||||
|
"contributions": [
|
||||||
|
"code"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"contributorsPerLine": 7,
|
"contributorsPerLine": 7,
|
||||||
|
|||||||
75
.github/workflows/charts-lint-test.yaml
vendored
75
.github/workflows/charts-lint-test.yaml
vendored
@@ -82,14 +82,13 @@ jobs:
|
|||||||
echo "::set-output name=detected::true"
|
echo "::set-output name=detected::true"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
lint:
|
check_version:
|
||||||
needs:
|
needs:
|
||||||
- changes-lint
|
- changes-lint
|
||||||
if: |
|
if: |
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
!contains(github.event.head_commit.message, '[ci-skip]') &&
|
||||||
&&
|
|
||||||
needs.changes-lint.outputs.detected == 'true'
|
needs.changes-lint.outputs.detected == 'true'
|
||||||
name: Lint charts
|
name: Check chart version numbers
|
||||||
strategy:
|
strategy:
|
||||||
matrix: ${{ fromJson(needs.changes-lint.outputs.matrix) }}
|
matrix: ${{ fromJson(needs.changes-lint.outputs.matrix) }}
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
@@ -101,11 +100,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Install Helm
|
|
||||||
uses: azure/setup-helm@v1
|
|
||||||
with:
|
|
||||||
version: v3.5.3
|
|
||||||
|
|
||||||
- name: Get version
|
- name: Get version
|
||||||
id: version-get
|
id: version-get
|
||||||
run: |
|
run: |
|
||||||
@@ -129,24 +123,58 @@ jobs:
|
|||||||
case $TYPE in
|
case $TYPE in
|
||||||
stable)
|
stable)
|
||||||
if [[ ${{ steps.version-parse.outputs.major }} -lt 1 ]]; then
|
if [[ ${{ steps.version-parse.outputs.major }} -lt 1 ]]; then
|
||||||
echo "Chart version for \"$TYPE\" charts must be >= 1.0.0"
|
echo "::error file=${{ matrix.chart }}::Chart version for \"$TYPE\" charts must be >= 1.0.0"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
incubator)
|
incubator)
|
||||||
if [[ ${{ steps.version-parse.outputs.major }} -gt 0 ]]; then
|
if [[ ${{ steps.version-parse.outputs.major }} -gt 0 ]]; then
|
||||||
echo "Chart version for \"$TYPE\" charts must be < 1.0.0"
|
echo "::error file=${{ matrix.chart }}::Chart version for \"$TYPE\" charts must be < 1.0.0"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
echo "Unhandled chart type: $TYPE"
|
echo "::error file=${{ matrix.chart }}::Unhandled chart type: $TYPE"
|
||||||
exit 1
|
exit 1
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
||||||
|
check_version_success:
|
||||||
|
needs:
|
||||||
|
- changes-lint
|
||||||
|
- check_version
|
||||||
|
if: ${{ always() }}
|
||||||
|
name: Version check successful
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Check Version matrix status
|
||||||
|
if: ${{ !contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-lint.outputs.detected == 'true' && needs.check_version.result != 'success' }}
|
||||||
|
run: |
|
||||||
|
exit 1
|
||||||
|
|
||||||
|
lint:
|
||||||
|
needs:
|
||||||
|
- changes-lint
|
||||||
|
if: |
|
||||||
|
!contains(github.event.head_commit.message, '[ci-skip]')
|
||||||
|
&&
|
||||||
|
needs.changes-lint.outputs.detected == 'true'
|
||||||
|
name: Lint charts
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Install Helm
|
||||||
|
uses: azure/setup-helm@v1
|
||||||
|
with:
|
||||||
|
version: v3.5.3
|
||||||
|
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
@@ -156,23 +184,19 @@ jobs:
|
|||||||
|
|
||||||
- name: Run chart-testing (lint)
|
- name: Run chart-testing (lint)
|
||||||
id: lint
|
id: lint
|
||||||
run: ct lint --config .github/ct-lint.yaml --charts ${{ matrix.chart }}
|
run: ct lint --config .github/ct-lint.yaml
|
||||||
|
|
||||||
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
||||||
lint_success:
|
lint_success:
|
||||||
needs:
|
needs:
|
||||||
|
- changes-lint
|
||||||
- lint
|
- lint
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
name: Lint successful
|
name: Lint successful
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Check lint matrix status
|
- name: Check lint matrix status
|
||||||
if: |
|
if: ${{ !contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-lint.outputs.detected == 'true' && needs.lint.result != 'success' }}
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
&&
|
|
||||||
needs.changes-lint.outputs.detected == 'true'
|
|
||||||
&&
|
|
||||||
needs.lint.result != 'success'
|
|
||||||
run: exit 1
|
run: exit 1
|
||||||
|
|
||||||
unittest:
|
unittest:
|
||||||
@@ -214,6 +238,7 @@ jobs:
|
|||||||
install:
|
install:
|
||||||
needs:
|
needs:
|
||||||
- changes-install
|
- changes-install
|
||||||
|
- check_version_success
|
||||||
- lint_success
|
- lint_success
|
||||||
if: |
|
if: |
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
!contains(github.event.head_commit.message, '[ci-skip]')
|
||||||
@@ -248,22 +273,22 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
version: v1.19
|
version: v1.19
|
||||||
|
|
||||||
|
- name: Remove node taints
|
||||||
|
run: |
|
||||||
|
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
|
||||||
|
|
||||||
- name: Run chart-testing (install)
|
- name: Run chart-testing (install)
|
||||||
run: ct install --config .github/ct-install.yaml --charts ${{ matrix.chart }}
|
run: ct install --config .github/ct-install.yaml --charts ${{ matrix.chart }}
|
||||||
|
|
||||||
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
||||||
install_success:
|
install_success:
|
||||||
needs:
|
needs:
|
||||||
|
- changes-install
|
||||||
- install
|
- install
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
name: Install successful
|
name: Install successful
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Check install matrix status
|
- name: Check install matrix status
|
||||||
if: |
|
if: ${{ !contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-install.outputs.detected == 'true' && needs.install.result != 'success' }}
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
&&
|
|
||||||
needs.changes-install.outputs.detected == 'true'
|
|
||||||
&&
|
|
||||||
needs.install.result != 'success'
|
|
||||||
run: exit 1
|
run: exit 1
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -1,6 +1,6 @@
|
|||||||
# Helm charts
|
# Helm charts
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
[](#contributors-)
|
[](#contributors-)
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
|
|
||||||
[](https://docs.k8s-at-home.com/)
|
[](https://docs.k8s-at-home.com/)
|
||||||
@@ -47,10 +47,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|||||||
<!-- markdownlint-disable -->
|
<!-- markdownlint-disable -->
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/bjw-s"><img src="https://avatars.githubusercontent.com/u/6213398?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=bjw-s" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/devfaz"><img src="https://avatars.githubusercontent.com/u/4060372?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Fabian Zimmermann</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=devfaz" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="https://github.com/onedr0p"><img src="https://avatars.githubusercontent.com/u/213795?v=4?s=100" width="100px;" alt=""/><br /><sub><b>ᗪєνιη ᗷυнʟ</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=onedr0p" title="Code">💻</a></td>
|
|
||||||
<td align="center"><a href="https://github.com/angelnu"><img src="https://avatars.githubusercontent.com/u/4406403?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Vegetto</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=angelnu" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/angelnu"><img src="https://avatars.githubusercontent.com/u/4406403?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Vegetto</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=angelnu" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="https://github.com/trly"><img src="https://avatars.githubusercontent.com/u/212733?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Travis Lyons</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=trly" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/trly"><img src="https://avatars.githubusercontent.com/u/212733?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Travis Lyons</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=trly" title="Code">💻</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/bjw-s"><img src="https://avatars.githubusercontent.com/u/6213398?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=bjw-s" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="http://schouten-lebbing.nl"><img src="https://avatars.githubusercontent.com/u/7613738?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Kjeld Schouten-Lebbing</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=Ornias1993" title="Code">💻</a></td>
|
<td align="center"><a href="http://schouten-lebbing.nl"><img src="https://avatars.githubusercontent.com/u/7613738?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Kjeld Schouten-Lebbing</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=Ornias1993" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="https://www.meetup.com/nl-NL/I-I-Inspiratie-Innovatie/"><img src="https://avatars.githubusercontent.com/u/30292281?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rolf Berkenbosch</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=rolfberkenbosch" title="Code">💻</a></td>
|
<td align="center"><a href="https://www.meetup.com/nl-NL/I-I-Inspiratie-Innovatie/"><img src="https://avatars.githubusercontent.com/u/30292281?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rolf Berkenbosch</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=rolfberkenbosch" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="https://github.com/auricom"><img src="https://avatars.githubusercontent.com/u/27022259?v=4?s=100" width="100px;" alt=""/><br /><sub><b>auricom</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=auricom" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/auricom"><img src="https://avatars.githubusercontent.com/u/27022259?v=4?s=100" width="100px;" alt=""/><br /><sub><b>auricom</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=auricom" title="Code">💻</a></td>
|
||||||
@@ -59,7 +59,15 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|||||||
<td align="center"><a href="http://aaronjohnson.io"><img src="https://avatars.githubusercontent.com/u/1386238?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Johnson</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=acjohnson" title="Code">💻</a></td>
|
<td align="center"><a href="http://aaronjohnson.io"><img src="https://avatars.githubusercontent.com/u/1386238?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Johnson</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=acjohnson" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="https://github.com/brujoand"><img src="https://avatars.githubusercontent.com/u/124421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders Brujordet</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=brujoand" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/brujoand"><img src="https://avatars.githubusercontent.com/u/124421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders Brujordet</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=brujoand" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="https://github.com/Diaoul"><img src="https://avatars.githubusercontent.com/u/319220?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Antoine Bertin</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=Diaoul" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/Diaoul"><img src="https://avatars.githubusercontent.com/u/319220?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Antoine Bertin</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=Diaoul" title="Code">💻</a></td>
|
||||||
<td align="center"><a href="https://github.com/devfaz"><img src="https://avatars.githubusercontent.com/u/4060372?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Fabian Zimmermann</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=devfaz" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/onedr0p"><img src="https://avatars.githubusercontent.com/u/213795?v=4?s=100" width="100px;" alt=""/><br /><sub><b>ᗪєνιη ᗷυнʟ</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=onedr0p" title="Code">💻</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/Ardetus"><img src="https://avatars.githubusercontent.com/u/2253935?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ardetus</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=Ardetus" title="Code">💻</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/dynamicat"><img src="https://avatars.githubusercontent.com/u/12977282?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Golden</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=dynamicat" title="Code">💻</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/psychopenguin"><img src="https://avatars.githubusercontent.com/u/1420115?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Fabio Brito d'Araujo e Oliveira</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=psychopenguin" title="Code">💻</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><a href="https://github.com/allenporter"><img src="https://avatars.githubusercontent.com/u/6026418?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allen Porter</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=allenporter" title="Code">💻</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/rasmustwh"><img src="https://avatars.githubusercontent.com/u/2485005?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rasmus Hermansen</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=rasmustwh" title="Code">💻</a></td>
|
||||||
|
<td align="center"><a href="http://pleasenoddos.com"><img src="https://avatars.githubusercontent.com/u/7714381?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dennis Zhang</b></sub></a><br /><a href="https://github.com/k8s-at-home/charts/commits?author=FlipEnergy" title="Code">💻</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.105.2
|
appVersion: v0.105.2
|
||||||
description: DNS proxy as ad-blocker for local network
|
description: DNS proxy as ad-blocker for local network
|
||||||
name: adguard-home
|
name: adguard-home
|
||||||
version: 3.0.0
|
version: 3.1.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- adguard-home
|
- adguard-home
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# adguard-home
|
# adguard-home
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
DNS proxy as ad-blocker for local network
|
DNS proxy as ad-blocker for local network
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.1.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 10.6.2
|
appVersion: 10.6.2
|
||||||
description: Airsonic is a Free and Open Source community driven media server
|
description: Airsonic is a Free and Open Source community driven media server
|
||||||
name: airsonic
|
name: airsonic
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- airsonic
|
- airsonic
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# airsonic
|
# airsonic
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Airsonic is a Free and Open Source community driven media server
|
Airsonic is a Free and Open Source community driven media server
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -84,18 +84,18 @@ by not constantly monitoring media folders.
|
|||||||
| image.repository | string | `"linuxserver/airsonic"` | |
|
| image.repository | string | `"linuxserver/airsonic"` | |
|
||||||
| image.tag | string | `"v10.6.2-ls97"` | |
|
| image.tag | string | `"v10.6.2-ls97"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.media.emptyDir | bool | `false` | |
|
| persistence.media.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.media.enabled | bool | `false` | |
|
| persistence.media.enabled | bool | `false` | |
|
||||||
| persistence.media.mountPath | string | `"/media"` | |
|
| persistence.media.mountPath | string | `"/media"` | |
|
||||||
| persistence.music.emptyDir | bool | `false` | |
|
| persistence.music.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.music.enabled | bool | `false` | |
|
| persistence.music.enabled | bool | `false` | |
|
||||||
| persistence.music.mountPath | string | `"/music"` | |
|
| persistence.music.mountPath | string | `"/music"` | |
|
||||||
| persistence.playlists.emptyDir | bool | `false` | |
|
| persistence.playlists.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.playlists.enabled | bool | `false` | |
|
| persistence.playlists.enabled | bool | `false` | |
|
||||||
| persistence.playlists.mountPath | string | `"/playlists"` | |
|
| persistence.playlists.mountPath | string | `"/playlists"` | |
|
||||||
| persistence.podcasts.emptyDir | bool | `false` | |
|
| persistence.podcasts.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.podcasts.enabled | bool | `false` | |
|
| persistence.podcasts.enabled | bool | `false` | |
|
||||||
| persistence.podcasts.mountPath | string | `"/podcasts"` | |
|
| persistence.podcasts.mountPath | string | `"/podcasts"` | |
|
||||||
| service.port.port | int | `4040` | |
|
| service.port.port | int | `4040` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 0.4.2
|
appVersion: 0.4.2
|
||||||
description: Bot for Prometheus Alertmanager
|
description: Bot for Prometheus Alertmanager
|
||||||
name: alertmanager-bot
|
name: alertmanager-bot
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- alertmanager
|
- alertmanager
|
||||||
@@ -19,4 +19,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# alertmanager-bot
|
# alertmanager-bot
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Bot for Prometheus Alertmanager
|
Bot for Prometheus Alertmanager
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -82,7 +82,7 @@ N/A
|
|||||||
| image.repository | string | `"metalmatze/alertmanager-bot"` | |
|
| image.repository | string | `"metalmatze/alertmanager-bot"` | |
|
||||||
| image.tag | string | `"0.4.2"` | |
|
| image.tag | string | `"0.4.2"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.data.emptyDir | bool | `false` | |
|
| persistence.data.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.data.enabled | bool | `false` | |
|
| persistence.data.enabled | bool | `false` | |
|
||||||
| probes.liveness.enabled | bool | `false` | |
|
| probes.liveness.enabled | bool | `false` | |
|
||||||
| probes.readiness.enabled | bool | `false` | |
|
| probes.readiness.enabled | bool | `false` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 4.0.5
|
appVersion: 4.0.5
|
||||||
description: AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution environment for writing automation apps for various types of Home Automation Software including Home Assistant and MQTT.
|
description: AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution environment for writing automation apps for various types of Home Automation Software including Home Assistant and MQTT.
|
||||||
name: appdaemon
|
name: appdaemon
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- appdaemon
|
- appdaemon
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# appdaemon
|
# appdaemon
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution environment for writing automation apps for various types of Home Automation Software including Home Assistant and MQTT.
|
AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution environment for writing automation apps for various types of Home Automation Software including Home Assistant and MQTT.
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -80,7 +80,7 @@ N/A
|
|||||||
| image.repository | string | `"k8sathome/appdaemon"` | |
|
| image.repository | string | `"k8sathome/appdaemon"` | |
|
||||||
| image.tag | string | `"v4.0.5"` | |
|
| image.tag | string | `"v4.0.5"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| service.port.port | int | `5050` | |
|
| service.port.port | int | `5050` | |
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|||||||
26
charts/stable/baikal/.helmignore
Normal file
26
charts/stable/baikal/.helmignore
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# Patterns to ignore when building packages.
|
||||||
|
# This supports shell glob matching, relative path matching, and
|
||||||
|
# negation (prefixed with !). Only one pattern per line.
|
||||||
|
.DS_Store
|
||||||
|
# Common VCS dirs
|
||||||
|
.git/
|
||||||
|
.gitignore
|
||||||
|
.bzr/
|
||||||
|
.bzrignore
|
||||||
|
.hg/
|
||||||
|
.hgignore
|
||||||
|
.svn/
|
||||||
|
# Common backup files
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*~
|
||||||
|
# Various IDEs
|
||||||
|
.project
|
||||||
|
.idea/
|
||||||
|
*.tmproj
|
||||||
|
.vscode/
|
||||||
|
# OWNERS file for Kubernetes
|
||||||
|
OWNERS
|
||||||
|
# helm-docs templates
|
||||||
|
*.gotmpl
|
||||||
28
charts/stable/baikal/Chart.yaml
Normal file
28
charts/stable/baikal/Chart.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
appVersion: 0.8.0
|
||||||
|
description: Baïkal is a lightweight CalDAV+CardDAV server. It offers a web interface with management of users, address books and calendars.
|
||||||
|
name: baikal
|
||||||
|
version: 1.1.0
|
||||||
|
kubeVersion: ">=1.16.0-0"
|
||||||
|
keywords:
|
||||||
|
- baikal
|
||||||
|
- caldav
|
||||||
|
- carddav
|
||||||
|
- contacts
|
||||||
|
- calendar
|
||||||
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/baikal
|
||||||
|
icon: https://avatars.githubusercontent.com/u/28524376?s=400&v=4
|
||||||
|
sources:
|
||||||
|
- https://github.com/sabre-io/Baikal
|
||||||
|
- https://github.com/ckulka/baikal-docker
|
||||||
|
maintainers:
|
||||||
|
- name: billimek
|
||||||
|
email: jeff@billimek.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.2.0
|
||||||
|
- name: mariadb
|
||||||
|
version: 9.3.6
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
condition: mariadb.enabled
|
||||||
123
charts/stable/baikal/README.md
Normal file
123
charts/stable/baikal/README.md
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
# baikal
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Baïkal is a lightweight CalDAV+CardDAV server. It offers a web interface with management of users, address books and calendars.
|
||||||
|
|
||||||
|
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)**
|
||||||
|
|
||||||
|
## Source Code
|
||||||
|
|
||||||
|
* <https://github.com/sabre-io/Baikal>
|
||||||
|
* <https://github.com/ckulka/baikal-docker>
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
Kubernetes: `>=1.16.0-0`
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
| Repository | Name | Version |
|
||||||
|
|------------|------|---------|
|
||||||
|
| https://charts.bitnami.com/bitnami | mariadb | 9.3.6 |
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
|
## TL;DR
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm repo add k8s-at-home https://k8s-at-home.com/charts/
|
||||||
|
helm repo update
|
||||||
|
helm install baikal k8s-at-home/baikal
|
||||||
|
```
|
||||||
|
|
||||||
|
## Installing the Chart
|
||||||
|
|
||||||
|
To install the chart with the release name `baikal`
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install baikal k8s-at-home/baikal
|
||||||
|
```
|
||||||
|
|
||||||
|
## Uninstalling the Chart
|
||||||
|
|
||||||
|
To uninstall the `baikal` deployment
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm uninstall baikal
|
||||||
|
```
|
||||||
|
|
||||||
|
The command removes all the Kubernetes components associated with the chart **including persistent volumes** and deletes the release.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Read through the [values.yaml](./values.yaml) file. It has several commented out suggested values.
|
||||||
|
Other values may be used from the [values.yaml](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml) from the [common library](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common).
|
||||||
|
|
||||||
|
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install baikal \
|
||||||
|
--set env.TZ="America/New York" \
|
||||||
|
k8s-at-home/baikal
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install baikal k8s-at-home/baikal -f values.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
## Custom configuration
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Values
|
||||||
|
|
||||||
|
**Important**: When deploying an application Helm chart you can add more values from our common library chart [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common)
|
||||||
|
|
||||||
|
| Key | Type | Default | Description |
|
||||||
|
|-----|------|---------|-------------|
|
||||||
|
| env | object | `{}` | |
|
||||||
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
|
| image.repository | string | `"ckulka/baikal"` | |
|
||||||
|
| image.tag | string | `"0.8.0"` | Image tag. For available image variants see https://github.com/ckulka/baikal-docker#image-variants |
|
||||||
|
| ingress.enabled | bool | `false` | |
|
||||||
|
| mariadb.architecture | string | `"standalone"` | |
|
||||||
|
| mariadb.auth.database | string | `"baikal"` | |
|
||||||
|
| mariadb.auth.password | string | `"baikal"` | |
|
||||||
|
| mariadb.auth.rootPassword | string | `"baikal-rootpass"` | |
|
||||||
|
| mariadb.auth.username | string | `"baikal"` | |
|
||||||
|
| mariadb.enabled | bool | `false` | |
|
||||||
|
| mariadb.primary.persistence.enabled | bool | `false` | |
|
||||||
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
|
| persistence.config.enabled | bool | `false` | |
|
||||||
|
| persistence.config.mountPath | string | `"/var/www/baikal/config"` | |
|
||||||
|
| persistence.data.emptyDir.enabled | bool | `false` | |
|
||||||
|
| persistence.data.enabled | bool | `false` | |
|
||||||
|
| persistence.data.mountPath | string | `"/var/www/baikal/Specific"` | |
|
||||||
|
| service.port.port | int | `80` | |
|
||||||
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
All notable changes to this application Helm chart will be documented in this file but does not include changes from our common library. To read those click [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#changelog).
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [1.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial version
|
||||||
|
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
||||||
|
- Open an [issue](https://github.com/k8s-at-home/charts/issues/new/choose)
|
||||||
|
- Ask a [question](https://github.com/k8s-at-home/organization/discussions)
|
||||||
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
|
----------------------------------------------
|
||||||
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
145
charts/stable/baikal/README.md.gotmpl
Normal file
145
charts/stable/baikal/README.md.gotmpl
Normal file
@@ -0,0 +1,145 @@
|
|||||||
|
{{- define "custom.repository.organization" -}}
|
||||||
|
k8s-at-home
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.repository.url" -}}
|
||||||
|
https://github.com/k8s-at-home/charts
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.helm.url" -}}
|
||||||
|
https://k8s-at-home.com/charts/
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.helm.path" -}}
|
||||||
|
{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.notes" -}}
|
||||||
|
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)**
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.requirements" -}}
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
{{ template "chart.kubeVersionLine" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.dependencies" -}}
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
{{ template "chart.requirementsTable" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.install.tldr" -}}
|
||||||
|
## TL;DR
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm repo add {{ template "custom.repository.organization" . }} {{ template "custom.helm.url" . }}
|
||||||
|
helm repo update
|
||||||
|
helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }}
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.install" -}}
|
||||||
|
## Installing the Chart
|
||||||
|
|
||||||
|
To install the chart with the release name `{{ template "chart.name" . }}`
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }}
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.uninstall" -}}
|
||||||
|
## Uninstalling the Chart
|
||||||
|
|
||||||
|
To uninstall the `{{ template "chart.name" . }}` deployment
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm uninstall {{ template "chart.name" . }}
|
||||||
|
```
|
||||||
|
|
||||||
|
The command removes all the Kubernetes components associated with the chart **including persistent volumes** and deletes the release.
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.header" -}}
|
||||||
|
## Configuration
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.readValues" -}}
|
||||||
|
Read through the [values.yaml](./values.yaml) file. It has several commented out suggested values.
|
||||||
|
Other values may be used from the [values.yaml](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml) from the [common library](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common).
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.example.set" -}}
|
||||||
|
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install {{ template "chart.name" . }} \
|
||||||
|
--set env.TZ="America/New York" \
|
||||||
|
{{ template "custom.helm.path" . }}
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.example.file" -}}
|
||||||
|
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -f values.yaml
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.valuesSection" -}}
|
||||||
|
## Values
|
||||||
|
|
||||||
|
**Important**: When deploying an application Helm chart you can add more values from our common library chart [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common)
|
||||||
|
|
||||||
|
{{ template "chart.valuesTable" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.support" -}}
|
||||||
|
## Support
|
||||||
|
|
||||||
|
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
||||||
|
- Open an [issue](https://github.com/k8s-at-home/charts/issues/new/choose)
|
||||||
|
- Ask a [question](https://github.com/k8s-at-home/organization/discussions)
|
||||||
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
|
||||||
|
{{ template "chart.description" . }}
|
||||||
|
|
||||||
|
{{ template "custom.notes" . }}
|
||||||
|
|
||||||
|
{{ template "chart.sourcesSection" . }}
|
||||||
|
|
||||||
|
{{ template "custom.requirements" . }}
|
||||||
|
|
||||||
|
{{ template "custom.dependencies" . }}
|
||||||
|
|
||||||
|
{{ template "custom.install.tldr" . }}
|
||||||
|
|
||||||
|
{{ template "custom.install" . }}
|
||||||
|
|
||||||
|
{{ template "custom.uninstall" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.header" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.readValues" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.example.set" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.example.file" . }}
|
||||||
|
|
||||||
|
{{ template "custom.custom.configuration" . }}
|
||||||
|
|
||||||
|
{{ template "custom.valuesSection" . }}
|
||||||
|
|
||||||
|
{{ template "custom.changelog" . }}
|
||||||
|
|
||||||
|
{{ template "custom.support" . }}
|
||||||
|
|
||||||
|
{{ template "helm-docs.versionFooter" . }}
|
||||||
19
charts/stable/baikal/README_CHANGELOG.md.gotmpl
Normal file
19
charts/stable/baikal/README_CHANGELOG.md.gotmpl
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{{- define "custom.changelog.header" -}}
|
||||||
|
## Changelog
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ template "custom.changelog.header" . }}
|
||||||
|
|
||||||
|
All notable changes to this application Helm chart will be documented in this file but does not include changes from our common library. To read those click [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#changelog).
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [1.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial version
|
||||||
|
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
|
{{- end -}}
|
||||||
9
charts/stable/baikal/README_CONFIG.md.gotmpl
Normal file
9
charts/stable/baikal/README_CONFIG.md.gotmpl
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{{- define "custom.custom.configuration.header" -}}
|
||||||
|
## Custom configuration
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.custom.configuration" -}}
|
||||||
|
{{ template "custom.custom.configuration.header" . }}
|
||||||
|
|
||||||
|
N/A
|
||||||
|
{{- end -}}
|
||||||
1
charts/stable/baikal/templates/NOTES.txt
Normal file
1
charts/stable/baikal/templates/NOTES.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
1
charts/stable/baikal/templates/common.yaml
Normal file
1
charts/stable/baikal/templates/common.yaml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{ include "common.all" . }}
|
||||||
64
charts/stable/baikal/values.yaml
Normal file
64
charts/stable/baikal/values.yaml
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
#
|
||||||
|
# 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:
|
||||||
|
repository: ckulka/baikal
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
# -- Image tag. For available image variants see https://github.com/ckulka/baikal-docker#image-variants
|
||||||
|
tag: 0.8.0
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
|
||||||
|
env: {}
|
||||||
|
# TZ:
|
||||||
|
|
||||||
|
service:
|
||||||
|
port:
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: false
|
||||||
|
emptyDir:
|
||||||
|
enabled: false
|
||||||
|
mountPath: /var/www/baikal/config
|
||||||
|
data:
|
||||||
|
enabled: false
|
||||||
|
emptyDir:
|
||||||
|
enabled: false
|
||||||
|
mountPath: /var/www/baikal/Specific
|
||||||
|
## Persistent Volume Storage Class
|
||||||
|
## If defined, storageClassName: <storageClass>
|
||||||
|
## If set to "-", storageClassName: "", which disables dynamic provisioning
|
||||||
|
## If undefined (the default) or set to null, no storageClassName spec is
|
||||||
|
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
||||||
|
## GKE, AWS & OpenStack)
|
||||||
|
# storageClass: "-"
|
||||||
|
# accessMode: ReadWriteOnce
|
||||||
|
# size: 1Gi
|
||||||
|
## Do not delete the pvc upon helm uninstall
|
||||||
|
# skipuninstall: false
|
||||||
|
# existingClaim: ""
|
||||||
|
|
||||||
|
# Enables mariadb
|
||||||
|
# ... for configuration options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb
|
||||||
|
mariadb:
|
||||||
|
enabled: false
|
||||||
|
architecture: standalone
|
||||||
|
auth:
|
||||||
|
database: baikal
|
||||||
|
username: baikal
|
||||||
|
password: baikal
|
||||||
|
rootPassword: baikal-rootpass
|
||||||
|
primary:
|
||||||
|
persistence:
|
||||||
|
enabled: false
|
||||||
|
# storageClass: ""
|
||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.9.0.5
|
appVersion: v0.9.0.5
|
||||||
description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
|
description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
|
||||||
name: bazarr
|
name: bazarr
|
||||||
version: 7.1.1
|
version: 7.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- bazarr
|
- bazarr
|
||||||
@@ -22,4 +22,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# bazarr
|
# bazarr
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
|
Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,9 +81,9 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/bazarr"` | |
|
| image.repository | string | `"linuxserver/bazarr"` | |
|
||||||
| image.tag | string | `"version-v0.9.0.5"` | |
|
| image.tag | string | `"version-v0.9.0.5"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.media.emptyDir | bool | `false` | |
|
| persistence.media.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.media.enabled | bool | `false` | |
|
| persistence.media.enabled | bool | `false` | |
|
||||||
| persistence.media.mountPath | string | `"/media"` | |
|
| persistence.media.mountPath | string | `"/media"` | |
|
||||||
| service.port.port | int | `6767` | |
|
| service.port.port | int | `6767` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: bitwardenrs
|
name: bitwardenrs
|
||||||
description: Unofficial Bitwarden compatible server written in Rust
|
description: Unofficial Bitwarden compatible server written in Rust
|
||||||
type: application
|
type: application
|
||||||
version: 2.1.0
|
version: 2.1.4
|
||||||
appVersion: 1.18.0
|
appVersion: 1.18.0
|
||||||
keywords:
|
keywords:
|
||||||
- bitwarden
|
- bitwarden
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# bitwardenrs
|
# bitwardenrs
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
Unofficial Bitwarden compatible server written in Rust
|
Unofficial Bitwarden compatible server written in Rust
|
||||||
|
|
||||||
@@ -185,7 +185,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[2.0.1]: #2.0.1
|
[2.1.3]: #2.1.3
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
|||||||
@@ -25,5 +25,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[2.0.1]: #2.0.1
|
[2.1.3]: #2.1.3
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{{- if and (.Values.ldapSync.enabled) (not .Values.ldapSync.existinSecret) }}
|
{{- if and (.Values.ldapSync.enabled) (not .Values.ldapSync.existingSecret) }}
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{{- if and (.Values.ldapSync.enabled) (not .Values.ldapSync.existinSecret) }}
|
{{- if .Values.ldapSync.enabled }}
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
data:
|
data:
|
||||||
config.toml: {{ .Values.ldapSync.configToml | b64enc }}
|
config.toml: {{ .Values.ldapSync.configToml | b64enc }}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.13
|
appVersion: v0.13
|
||||||
description: DNS proxy as ad-blocker for local network
|
description: DNS proxy as ad-blocker for local network
|
||||||
name: blocky
|
name: blocky
|
||||||
version: 6.1.1
|
version: 6.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- blocky
|
- blocky
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v2009.1.0
|
appVersion: v2009.1.0
|
||||||
description: Booksonic is a platform for accessing the audibooks you own wherever you are
|
description: Booksonic is a platform for accessing the audibooks you own wherever you are
|
||||||
name: booksonic-air
|
name: booksonic-air
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- booksonic
|
- booksonic
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# booksonic-air
|
# booksonic-air
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Booksonic is a platform for accessing the audibooks you own wherever you are
|
Booksonic is a platform for accessing the audibooks you own wherever you are
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -83,15 +83,15 @@ by not constantly monitoring media folders.
|
|||||||
| image.repository | string | `"linuxserver/booksonic-air"` | |
|
| image.repository | string | `"linuxserver/booksonic-air"` | |
|
||||||
| image.tag | string | `"v2009.1.0-ls2"` | |
|
| image.tag | string | `"v2009.1.0-ls2"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.audiobooks.emptyDir | bool | `false` | |
|
| persistence.audiobooks.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.audiobooks.enabled | bool | `false` | |
|
| persistence.audiobooks.enabled | bool | `false` | |
|
||||||
| persistence.audiobooks.mountPath | string | `"/audiobooks"` | |
|
| persistence.audiobooks.mountPath | string | `"/audiobooks"` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.othermedia.emptyDir | bool | `false` | |
|
| persistence.othermedia.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.othermedia.enabled | bool | `false` | |
|
| persistence.othermedia.enabled | bool | `false` | |
|
||||||
| persistence.othermedia.mountPath | string | `"/othermedia"` | |
|
| persistence.othermedia.mountPath | string | `"/othermedia"` | |
|
||||||
| persistence.podcasts.emptyDir | bool | `false` | |
|
| persistence.podcasts.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.podcasts.enabled | bool | `false` | |
|
| persistence.podcasts.enabled | bool | `false` | |
|
||||||
| persistence.podcasts.mountPath | string | `"/podcasts"` | |
|
| persistence.podcasts.mountPath | string | `"/podcasts"` | |
|
||||||
| service.port.port | int | `4040` | |
|
| service.port.port | int | `4040` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 0.6.9
|
appVersion: 0.6.9
|
||||||
description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
||||||
name: calibre-web
|
name: calibre-web
|
||||||
version: 6.1.1
|
version: 6.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- calibre
|
- calibre
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# calibre-web
|
# calibre-web
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,9 +81,9 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/calibre-web"` | |
|
| image.repository | string | `"linuxserver/calibre-web"` | |
|
||||||
| image.tag | string | `"version-0.6.9"` | |
|
| image.tag | string | `"version-0.6.9"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.books.emptyDir | bool | `false` | |
|
| persistence.books.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.books.enabled | bool | `false` | |
|
| persistence.books.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| service.port.port | int | `8083` | |
|
| service.port.port | int | `8083` | |
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 5.13.0
|
appVersion: 5.14.0
|
||||||
description: Calibre is a powerful and easy to use e-book manager.
|
description: Calibre is a powerful and easy to use e-book manager.
|
||||||
name: calibre
|
name: calibre
|
||||||
version: 2.1.1
|
version: 3.1.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- calibre
|
- calibre
|
||||||
@@ -19,4 +19,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# calibre
|
# calibre
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Calibre is a powerful and easy to use e-book manager.
|
Calibre is a powerful and easy to use e-book manager.
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -77,22 +77,21 @@ N/A
|
|||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| env.CLI_ARGS | string | `nil` | Optionally pass cli start arguments to calibre. |
|
| env.CLI_ARGS | string | `nil` | Optionally pass cli start arguments to calibre. |
|
||||||
| env.GUAC_PASS | string | `nil` | Password's md5 hash for the calibre desktop gui |
|
| env.GUAC_PASS | string | `nil` | Password's md5 hash for the calibre gui |
|
||||||
| env.GUAC_USER | string | `nil` | Username for the calibre desktop gui |
|
| env.GUAC_USER | string | `nil` | Username for the calibre gui |
|
||||||
| env.PGID | string | `"1000"` | for GroupID |
|
| env.PGID | string | `"1000"` | for GroupID |
|
||||||
| env.PUID | string | `"1000"` | for UserID |
|
| env.PUID | string | `"1000"` | for UserID |
|
||||||
| env.TZ | string | `nil` | Set the time zone, e.g. Europe/Amsterdam |
|
| env.TZ | string | `nil` | Set the time zone, e.g. Europe/Amsterdam |
|
||||||
| env.UMASK_SET | string | `"022"` | for umask setting of Calibre, default if left unset is 022. |
|
| env.UMASK_SET | string | `"022"` | for umask setting of Calibre, default if left unset is 022. |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| image.repository | string | `"linuxserver/calibre"` | |
|
| image.repository | string | `"linuxserver/calibre"` | |
|
||||||
| image.tag | string | `"version-v5.13.0"` | |
|
| image.tag | string | `"version-v5.14.0"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| nodeSelector."kubernetes.io/arch" | string | `"amd64"` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.config.size | string | `"1Gi"` | |
|
| service.additionalPorts[0].name | string | `"calibre-server"` | |
|
||||||
| service.port | object | `{"name":"desktopgui","port":8080,"targetPort":8080}` | The default port is 8080 |
|
| service.additionalPorts[0].port | int | `8081` | |
|
||||||
|
| service.port | object | `{"name":"gui","port":8080}` | The default port is 8080 |
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
@@ -101,21 +100,30 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
### [0.0.1]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- First version of the helm chart for wikijs
|
- Added additional port to the service for when calibre-server is running.
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- N/A
|
- Updated default image tag to `version-v5.14.0`
|
||||||
|
- Renamed default port from `desktopgui` to `gui`
|
||||||
|
|
||||||
#### Removed
|
#### Removed
|
||||||
|
|
||||||
- N/A
|
- Removed default `nodeSelector`
|
||||||
|
- Removed default values for `accessMode` and `size` under `persistence.config`.
|
||||||
|
|
||||||
[0.0.1]: #0.0.1
|
### [1.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial version
|
||||||
|
|
||||||
|
[3.0.0]: #2.0.0
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
|||||||
@@ -9,19 +9,29 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
### [0.0.1]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- First version of the helm chart for wikijs
|
- Added additional port to the service for when calibre-server is running.
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- N/A
|
- Updated default image tag to `version-v5.14.0`
|
||||||
|
- Renamed default port from `desktopgui` to `gui`
|
||||||
|
|
||||||
#### Removed
|
#### Removed
|
||||||
|
|
||||||
- N/A
|
- Removed default `nodeSelector`
|
||||||
|
- Removed default values for `accessMode` and `size` under `persistence.config`.
|
||||||
|
|
||||||
[0.0.1]: #0.0.1
|
|
||||||
|
### [1.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial version
|
||||||
|
|
||||||
|
[3.0.0]: #2.0.0
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
image:
|
image:
|
||||||
repository: linuxserver/calibre
|
repository: linuxserver/calibre
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: version-v5.13.0
|
tag: version-v5.14.0
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
@@ -23,9 +23,9 @@ env:
|
|||||||
PUID: "1000"
|
PUID: "1000"
|
||||||
# -- for GroupID
|
# -- for GroupID
|
||||||
PGID: "1000"
|
PGID: "1000"
|
||||||
# -- Username for the calibre desktop gui
|
# -- Username for the calibre gui
|
||||||
GUAC_USER:
|
GUAC_USER:
|
||||||
# -- Password's md5 hash for the calibre desktop gui
|
# -- Password's md5 hash for the calibre gui
|
||||||
GUAC_PASS:
|
GUAC_PASS:
|
||||||
# -- for umask setting of Calibre, default if left unset is 022.
|
# -- for umask setting of Calibre, default if left unset is 022.
|
||||||
UMASK_SET: "022"
|
UMASK_SET: "022"
|
||||||
@@ -36,20 +36,16 @@ service:
|
|||||||
# -- The default port is 8080
|
# -- The default port is 8080
|
||||||
port:
|
port:
|
||||||
port: 8080
|
port: 8080
|
||||||
targetPort: 8080
|
name: gui
|
||||||
name: desktopgui
|
additionalPorts:
|
||||||
|
- name: calibre-server
|
||||||
|
port: 8081
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
# enable this if you would like to access you wiki
|
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: amd64
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: false
|
enabled: false
|
||||||
emptyDir:
|
emptyDir:
|
||||||
enabled: false
|
enabled: false
|
||||||
accessMode: "ReadWriteOnce"
|
|
||||||
size: "1Gi"
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: comcast
|
name: comcast
|
||||||
version: 3.0.2
|
version: 3.0.3
|
||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: periodic comcast data usage checks and save the results to InfluxDB
|
description: periodic comcast data usage checks and save the results to InfluxDB
|
||||||
keywords:
|
keywords:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# comcast
|
# comcast
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
periodic comcast data usage checks and save the results to InfluxDB
|
periodic comcast data usage checks and save the results to InfluxDB
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2.10.03
|
appVersion: 2.10.03
|
||||||
description: deCONZ is an easy to use control software, with which you can set up and control Zigbee networks of any size without further programming effort.
|
description: deCONZ is an easy to use control software, with which you can set up and control Zigbee networks of any size without further programming effort.
|
||||||
name: deconz
|
name: deconz
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- deconz
|
- deconz
|
||||||
@@ -20,4 +20,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# deconz
|
# deconz
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
deCONZ is an easy to use control software, with which you can set up and control Zigbee networks of any size without further programming effort.
|
deCONZ is an easy to use control software, with which you can set up and control Zigbee networks of any size without further programming effort.
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v2.0.3-2201906121747
|
appVersion: v2.0.3-2201906121747
|
||||||
description: Deluge is a torrent download client
|
description: Deluge is a torrent download client
|
||||||
name: deluge
|
name: deluge
|
||||||
version: 3.1.1
|
version: 3.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- deluge
|
- deluge
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# deluge
|
# deluge
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Deluge is a torrent download client
|
Deluge is a torrent download client
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -83,10 +83,10 @@ The default login details (change ASAP) are:
|
|||||||
| image.repository | string | `"linuxserver/deluge"` | |
|
| image.repository | string | `"linuxserver/deluge"` | |
|
||||||
| image.tag | string | `"version-2.0.3-2201906121747ubuntu18.04.1"` | |
|
| image.tag | string | `"version-2.0.3-2201906121747ubuntu18.04.1"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.config.mountPath | string | `"/config"` | |
|
| persistence.config.mountPath | string | `"/config"` | |
|
||||||
| persistence.downloads.emptyDir | bool | `false` | |
|
| persistence.downloads.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.downloads.enabled | bool | `false` | |
|
| persistence.downloads.enabled | bool | `false` | |
|
||||||
| persistence.downloads.mountPath | string | `"/downloads"` | |
|
| persistence.downloads.mountPath | string | `"/downloads"` | |
|
||||||
| service.port.port | int | `8112` | |
|
| service.port.port | int | `8112` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.3.0
|
appVersion: 1.3.0
|
||||||
description: Create live TV channel streams from media on your Plex servers.
|
description: Create live TV channel streams from media on your Plex servers.
|
||||||
name: dizquetv
|
name: dizquetv
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- dizqueTV
|
- dizqueTV
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# dizquetv
|
# dizquetv
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Create live TV channel streams from media on your Plex servers.
|
Create live TV channel streams from media on your Plex servers.
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ N/A
|
|||||||
| image.repository | string | `"vexorian/dizquetv"` | |
|
| image.repository | string | `"vexorian/dizquetv"` | |
|
||||||
| image.tag | string | `"1.3.0"` | |
|
| image.tag | string | `"1.3.0"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.config.mountPath | string | `"/home/node/app/.dizquetv"` | |
|
| persistence.config.mountPath | string | `"/home/node/app/.dizquetv"` | |
|
||||||
| service.port.port | int | `8000` | |
|
| service.port.port | int | `8000` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: Cert-Manager Webhook for DNSMadeEasy
|
description: Cert-Manager Webhook for DNSMadeEasy
|
||||||
name: dnsmadeeasy-webhook
|
name: dnsmadeeasy-webhook
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
keywords:
|
keywords:
|
||||||
- cert-manager
|
- cert-manager
|
||||||
- dnsmadeeasy
|
- dnsmadeeasy
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# dnsmadeeasy-webhook
|
# dnsmadeeasy-webhook
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Cert-Manager Webhook for DNSMadeEasy
|
Cert-Manager Webhook for DNSMadeEasy
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ Cert-Manager Webhook for DNSMadeEasy
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v4.9.0
|
appVersion: v4.9.0
|
||||||
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
||||||
name: dsmr-reader
|
name: dsmr-reader
|
||||||
version: 3.1.1
|
version: 3.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- dsmr-reader
|
- dsmr-reader
|
||||||
@@ -18,8 +18,8 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.7
|
version: 10.3.15
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# dsmr-reader
|
# dsmr-reader
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
||||||
|
|
||||||
@@ -19,8 +19,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.3.7 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.3.15 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v2.0.5.1
|
appVersion: v2.0.5.1
|
||||||
description: Store securely encrypted backups on cloud storage services!
|
description: Store securely encrypted backups on cloud storage services!
|
||||||
name: duplicati
|
name: duplicati
|
||||||
version: 2.1.2
|
version: 2.1.3
|
||||||
keywords:
|
keywords:
|
||||||
- duplicati
|
- duplicati
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/duplicati
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/duplicati
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# duplicati
|
# duplicati
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Store securely encrypted backups on cloud storage services!
|
Store securely encrypted backups on cloud storage services!
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.16.2
|
appVersion: 1.16.2
|
||||||
description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
|
description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
|
||||||
name: esphome
|
name: esphome
|
||||||
version: 6.2.1
|
version: 6.3.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- esphome
|
- esphome
|
||||||
@@ -17,4 +17,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# esphome
|
# esphome
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
|
ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -78,9 +78,9 @@ N/A
|
|||||||
| env | object | `{}` | |
|
| env | object | `{}` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| image.repository | string | `"esphome/esphome"` | |
|
| image.repository | string | `"esphome/esphome"` | |
|
||||||
| image.tag | string | `"1.15.3"` | |
|
| image.tag | string | `"1.16.2"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| service.port.port | int | `6052` | |
|
| service.port.port | int | `6052` | |
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v1.2.3
|
appVersion: v1.2.3
|
||||||
description: FlareSolverr is a proxy server to bypass Cloudflare protection
|
description: FlareSolverr is a proxy server to bypass Cloudflare protection
|
||||||
name: flaresolverr
|
name: flaresolverr
|
||||||
version: 3.1.1
|
version: 3.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- flaresolverr
|
- flaresolverr
|
||||||
@@ -17,4 +17,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# flaresolverr
|
# flaresolverr
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
FlareSolverr is a proxy server to bypass Cloudflare protection
|
FlareSolverr is a proxy server to bypass Cloudflare protection
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 4.1.1
|
appVersion: 4.1.1
|
||||||
description: Flood is a monitoring service for various torrent clients
|
description: Flood is a monitoring service for various torrent clients
|
||||||
name: flood
|
name: flood
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- flood
|
- flood
|
||||||
@@ -20,4 +20,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# flood
|
# flood
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Flood is a monitoring service for various torrent clients
|
Flood is a monitoring service for various torrent clients
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ N/A
|
|||||||
| image.repository | string | `"jesec/flood"` | |
|
| image.repository | string | `"jesec/flood"` | |
|
||||||
| image.tag | string | `"4.1.1"` | |
|
| image.tag | string | `"4.1.1"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.data.emptyDir | bool | `false` | |
|
| persistence.data.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.data.enabled | bool | `false` | |
|
| persistence.data.enabled | bool | `false` | |
|
||||||
| persistence.data.mountPath | string | `"/data"` | |
|
| persistence.data.mountPath | string | `"/data"` | |
|
||||||
| service.port.port | int | `3000` | |
|
| service.port.port | int | `3000` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.17.0
|
appVersion: 1.17.0
|
||||||
description: FreshRSS is a self-hosted RSS feed aggregator
|
description: FreshRSS is a self-hosted RSS feed aggregator
|
||||||
name: freshrss
|
name: freshrss
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- freshrss
|
- freshrss
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# freshrss
|
# freshrss
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
FreshRSS is a self-hosted RSS feed aggregator
|
FreshRSS is a self-hosted RSS feed aggregator
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/freshrss"` | |
|
| image.repository | string | `"linuxserver/freshrss"` | |
|
||||||
| image.tag | string | `"version-1.17.0"` | |
|
| image.tag | string | `"version-1.17.0"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| service.port.port | int | `80` | |
|
| service.port.port | int | `80` | |
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: latest
|
appVersion: latest
|
||||||
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
|
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
|
||||||
name: gaps
|
name: gaps
|
||||||
version: 3.1.1
|
version: 3.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- plex
|
- plex
|
||||||
@@ -17,4 +17,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# gaps
|
# gaps
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
|
Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -80,7 +80,7 @@ N/A
|
|||||||
| image.repository | string | `"housewrecker/gaps"` | |
|
| image.repository | string | `"housewrecker/gaps"` | |
|
||||||
| image.tag | string | `"latest"` | |
|
| image.tag | string | `"latest"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.data.emptyDir | bool | `false` | |
|
| persistence.data.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.data.enabled | bool | `false` | |
|
| persistence.data.enabled | bool | `false` | |
|
||||||
| persistence.data.mountPath | string | `"/usr/data"` | |
|
| persistence.data.mountPath | string | `"/usr/data"` | |
|
||||||
| service.port.port | int | `8484` | |
|
| service.port.port | int | `8484` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.12.0
|
appVersion: v0.12.0
|
||||||
description: Music streaming server / subsonic server API implementation
|
description: Music streaming server / subsonic server API implementation
|
||||||
name: gonic
|
name: gonic
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- music
|
- music
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# gonic
|
# gonic
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Music streaming server / subsonic server API implementation
|
Music streaming server / subsonic server API implementation
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,14 +81,14 @@ N/A
|
|||||||
| image.repository | string | `"sentriz/gonic"` | |
|
| image.repository | string | `"sentriz/gonic"` | |
|
||||||
| image.tag | string | `"v0.12.0"` | |
|
| image.tag | string | `"v0.12.0"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.cache.emptyDir | bool | `false` | |
|
| persistence.cache.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.cache.enabled | bool | `false` | |
|
| persistence.cache.enabled | bool | `false` | |
|
||||||
| persistence.data.emptyDir | bool | `false` | |
|
| persistence.data.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.data.enabled | bool | `false` | |
|
| persistence.data.enabled | bool | `false` | |
|
||||||
| persistence.music.emptyDir | bool | `false` | |
|
| persistence.music.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.music.enabled | bool | `false` | |
|
| persistence.music.enabled | bool | `false` | |
|
||||||
| persistence.music.mountPath | string | `"/music"` | |
|
| persistence.music.mountPath | string | `"/music"` | |
|
||||||
| persistence.podcasts.emptyDir | bool | `false` | |
|
| persistence.podcasts.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.podcasts.enabled | bool | `false` | |
|
| persistence.podcasts.enabled | bool | `false` | |
|
||||||
| service.port.port | int | `80` | |
|
| service.port.port | int | `80` | |
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v2.7.1
|
appVersion: v2.7.1
|
||||||
description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
|
description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
|
||||||
name: grocy
|
name: grocy
|
||||||
version: 6.1.1
|
version: 6.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- grocy
|
- grocy
|
||||||
@@ -16,4 +16,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# grocy
|
# grocy
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
|
ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://k8s-at-home.com/charts/ | common | 3.1.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -80,7 +80,7 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/grocy"` | |
|
| image.repository | string | `"linuxserver/grocy"` | |
|
||||||
| image.tag | string | `"version-v2.7.1"` | |
|
| image.tag | string | `"version-v2.7.1"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| service.port.port | int | `80` | |
|
| service.port.port | int | `80` | |
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.19.0
|
appVersion: 1.19.0
|
||||||
description: Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts.
|
description: Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts.
|
||||||
name: healthchecks
|
name: healthchecks
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
keywords:
|
keywords:
|
||||||
- cron
|
- cron
|
||||||
- monitoring
|
- monitoring
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# healthchecks
|
# healthchecks
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts.
|
Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts.
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ Healthchecks is a cron job monitoring service. It listens for HTTP requests and
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/healthchecks"` | healthchecks image |
|
| image.repository | string | `"linuxserver/healthchecks"` | healthchecks image |
|
||||||
| image.tag | string | `"v1.19.0-ls79"` | healthchecks image tag |
|
| image.tag | string | `"v1.19.0-ls79"` | healthchecks image tag |
|
||||||
| nodeSelector | object | `{}` | Node labels for pod assignment of the GUI |
|
| nodeSelector | object | `{}` | Node labels for pod assignment of the GUI |
|
||||||
| persistence.config | object | `{"emptyDir":false,"enabled":false,"mountpath":"/config"}` | Volume used for configuration |
|
| persistence.config | object | `{"emptyDir":{"enabled":false},"enabled":false,"mountpath":"/config"}` | Volume used for configuration |
|
||||||
| podAnnotations | object | `{}` | Pod annotations |
|
| podAnnotations | object | `{}` | Pod annotations |
|
||||||
| resources | object | `{}` | |
|
| resources | object | `{}` | |
|
||||||
| service.port.port | int | `8000` | Kubernetes port where the GUI is exposed |
|
| service.port.port | int | `8000` | Kubernetes port where the GUI is exposed |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2.2.2
|
appVersion: 2.2.2
|
||||||
description: An Application dashboard and launcher
|
description: An Application dashboard and launcher
|
||||||
name: heimdall
|
name: heimdall
|
||||||
version: 6.1.1
|
version: 6.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- heimdall
|
- heimdall
|
||||||
@@ -17,4 +17,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# heimdall
|
# heimdall
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
An Application dashboard and launcher
|
An Application dashboard and launcher
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://k8s-at-home.com/charts/ | common | 3.1.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/heimdall"` | |
|
| image.repository | string | `"linuxserver/heimdall"` | |
|
||||||
| image.tag | string | `"version-2.2.2"` | |
|
| image.tag | string | `"version-2.2.2"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| probes.startup.enabled | bool | `true` | |
|
| probes.startup.enabled | bool | `true` | |
|
||||||
| service.port.port | int | `80` | |
|
| service.port.port | int | `80` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2021.3.4
|
appVersion: 2021.3.4
|
||||||
description: Home Assistant
|
description: Home Assistant
|
||||||
name: home-assistant
|
name: home-assistant
|
||||||
version: 7.2.1
|
version: 7.3.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- home-assistant
|
- home-assistant
|
||||||
@@ -13,20 +13,20 @@ icon: https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Home_Assistant_L
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/home-assistant/home-assistant
|
- https://github.com/home-assistant/home-assistant
|
||||||
- https://github.com/cdr/code-server
|
- https://github.com/cdr/code-server
|
||||||
- https://github.com/k8s-at-home/charts/tree/master/charts/home-assistant
|
- https://github.com/k8s-at-home/charts/tree/master/charts/stable/home-assistant
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.7
|
version: 10.3.15
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.3.4
|
version: 9.3.6
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
- name: influxdb
|
- name: influxdb
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# home-assistant
|
# home-assistant
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Home Assistant
|
Home Assistant
|
||||||
|
|
||||||
@@ -10,7 +10,7 @@ Home Assistant
|
|||||||
|
|
||||||
* <https://github.com/home-assistant/home-assistant>
|
* <https://github.com/home-assistant/home-assistant>
|
||||||
* <https://github.com/cdr/code-server>
|
* <https://github.com/cdr/code-server>
|
||||||
* <https://github.com/k8s-at-home/charts/tree/master/charts/home-assistant>
|
* <https://github.com/k8s-at-home/charts/tree/master/charts/stable/home-assistant>
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
@@ -21,9 +21,9 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | influxdb | 1.1.9 |
|
| https://charts.bitnami.com/bitnami | influxdb | 1.1.9 |
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.3.4 |
|
| https://charts.bitnami.com/bitnami | mariadb | 9.3.6 |
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.3.7 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.3.15 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -131,7 +131,7 @@ The value derived is the name of the kubernetes service object for home-assistan
|
|||||||
| git.deployKeyBase64 | string | `""` | |
|
| git.deployKeyBase64 | string | `""` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| image.repository | string | `"homeassistant/home-assistant"` | |
|
| image.repository | string | `"homeassistant/home-assistant"` | |
|
||||||
| image.tag | string | `"2021.1.5"` | |
|
| image.tag | string | `"2021.3.4"` | |
|
||||||
| influxdb.architecture | string | `"standalone"` | |
|
| influxdb.architecture | string | `"standalone"` | |
|
||||||
| influxdb.authEnabled | bool | `false` | |
|
| influxdb.authEnabled | bool | `false` | |
|
||||||
| influxdb.database | string | `"home_assistant"` | |
|
| influxdb.database | string | `"home_assistant"` | |
|
||||||
@@ -145,7 +145,7 @@ The value derived is the name of the kubernetes service object for home-assistan
|
|||||||
| mariadb.auth.username | string | `"home-assistant"` | |
|
| mariadb.auth.username | string | `"home-assistant"` | |
|
||||||
| mariadb.enabled | bool | `false` | |
|
| mariadb.enabled | bool | `false` | |
|
||||||
| mariadb.primary.persistence.enabled | bool | `false` | |
|
| mariadb.primary.persistence.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| postgresql.enabled | bool | `false` | |
|
| postgresql.enabled | bool | `false` | |
|
||||||
| postgresql.persistence.enabled | bool | `false` | |
|
| postgresql.persistence.enabled | bool | `false` | |
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 3.1.0
|
appVersion: 3.1.0
|
||||||
version: 1.0.4
|
version: 1.0.5
|
||||||
name: homebridge
|
name: homebridge
|
||||||
description: A lightweight NodeJS server that emulates the iOS HomeKit API
|
description: A lightweight NodeJS server that emulates the iOS HomeKit API
|
||||||
type: application
|
type: application
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# homebridge
|
# homebridge
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
A lightweight NodeJS server that emulates the iOS HomeKit API
|
A lightweight NodeJS server that emulates the iOS HomeKit API
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ description: A dead simple static HOMepage for your servER to keep your services
|
|||||||
icon: https://raw.githubusercontent.com/bastienwirtz/homer/main/public/logo.png
|
icon: https://raw.githubusercontent.com/bastienwirtz/homer/main/public/logo.png
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/homer
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/homer
|
||||||
name: homer
|
name: homer
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/bastienwirtz/homer
|
- https://github.com/bastienwirtz/homer
|
||||||
@@ -14,4 +14,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# homer
|
# homer
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A dead simple static HOMepage for your servER to keep your services on hand, from a simple yaml configuration file.
|
A dead simple static HOMepage for your servER to keep your services on hand, from a simple yaml configuration file.
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://k8s-at-home.com/charts/ | common | 3.1.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -82,7 +82,7 @@ N/A
|
|||||||
| image.repository | string | `"b4bz/homer"` | |
|
| image.repository | string | `"b4bz/homer"` | |
|
||||||
| image.tag | string | `"20.09.1"` | |
|
| image.tag | string | `"20.09.1"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.config.mountPath | string | `"/www/assets"` | |
|
| persistence.config.mountPath | string | `"/www/assets"` | |
|
||||||
| service.port.port | int | `8080` | |
|
| service.port.port | int | `8080` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2.0.0-alpha9
|
appVersion: 2.0.0-alpha9
|
||||||
description: Hyperion is an opensource Bias or Ambient Lighting implementation
|
description: Hyperion is an opensource Bias or Ambient Lighting implementation
|
||||||
name: hyperion-ng
|
name: hyperion-ng
|
||||||
version: 3.1.1
|
version: 3.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- hyperion-ng
|
- hyperion-ng
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# hyperion-ng
|
# hyperion-ng
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Hyperion is an opensource Bias or Ambient Lighting implementation
|
Hyperion is an opensource Bias or Ambient Lighting implementation
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ N/A
|
|||||||
| image.repository | string | `"sirfragalot/hyperion.ng"` | |
|
| image.repository | string | `"sirfragalot/hyperion.ng"` | |
|
||||||
| image.tag | string | `"2.0.0-alpha.9-x86_64"` | |
|
| image.tag | string | `"2.0.0-alpha.9-x86_64"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.config.mountPath | string | `"/root/.hyperion"` | |
|
| persistence.config.mountPath | string | `"/root/.hyperion"` | |
|
||||||
| service.additionalPorts[0].name | string | `"jsonservice"` | |
|
| service.additionalPorts[0].name | string | `"jsonservice"` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2021.2.0
|
appVersion: 2021.2.0
|
||||||
description: Create live map data from Valetudo powered robots
|
description: Create live map data from Valetudo powered robots
|
||||||
name: icantbelieveitsnotvaletudo
|
name: icantbelieveitsnotvaletudo
|
||||||
version: 3.1.1
|
version: 3.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- icantbelieveitsnotvaletudo
|
- icantbelieveitsnotvaletudo
|
||||||
@@ -20,4 +20,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# icantbelieveitsnotvaletudo
|
# icantbelieveitsnotvaletudo
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Create live map data from Valetudo powered robots
|
Create live map data from Valetudo powered robots
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: intel-gpu-plugin
|
name: intel-gpu-plugin
|
||||||
version: 1.2.1
|
version: 1.2.3
|
||||||
appVersion: 0.19.0
|
appVersion: 0.20.0
|
||||||
description: The Intel GPU plugin facilitates offloading the processing of computation intensive workloads to GPU hardware
|
description: The Intel GPU plugin facilitates offloading the processing of computation intensive workloads to GPU hardware
|
||||||
keywords:
|
keywords:
|
||||||
- kubernetes
|
- kubernetes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# intel-gpu-plugin
|
# intel-gpu-plugin
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
The Intel GPU plugin facilitates offloading the processing of computation intensive workloads to GPU hardware
|
The Intel GPU plugin facilitates offloading the processing of computation intensive workloads to GPU hardware
|
||||||
|
|
||||||
@@ -90,7 +90,7 @@ affinity:
|
|||||||
| fullnameOverride | string | `""` | |
|
| fullnameOverride | string | `""` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
|
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
|
||||||
| image.repository | string | `"intel/intel-gpu-plugin"` | Image repository |
|
| image.repository | string | `"intel/intel-gpu-plugin"` | Image repository |
|
||||||
| image.tag | string | `"0.19.0"` | Image tag. Possible values listed [here](https://hub.docker.com/r/intel/intel-gpu-plugin/tags) |
|
| image.tag | string | `"0.20.0"` | Image tag. Possible values listed [here](https://hub.docker.com/r/intel/intel-gpu-plugin/tags) |
|
||||||
| imagePullSecrets | list | `[]` | |
|
| imagePullSecrets | list | `[]` | |
|
||||||
| nameOverride | string | `""` | |
|
| nameOverride | string | `""` | |
|
||||||
| nodeSelector | object | `{}` | |
|
| nodeSelector | object | `{}` | |
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ image:
|
|||||||
# -- Image pull policy
|
# -- Image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# -- Image tag. Possible values listed [here](https://hub.docker.com/r/intel/intel-gpu-plugin/tags)
|
# -- Image tag. Possible values listed [here](https://hub.docker.com/r/intel/intel-gpu-plugin/tags)
|
||||||
tag: 0.19.0
|
tag: 0.20.0
|
||||||
|
|
||||||
# -- Specifies the strategy used to replace old Pods by new ones
|
# -- Specifies the strategy used to replace old Pods by new ones
|
||||||
strategyType: Recreate
|
strategyType: Recreate
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.17.591
|
appVersion: v0.17.591
|
||||||
description: API Support for your favorite torrent trackers
|
description: API Support for your favorite torrent trackers
|
||||||
name: jackett
|
name: jackett
|
||||||
version: 8.1.1
|
version: 8.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- jackett
|
- jackett
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# jackett
|
# jackett
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
API Support for your favorite torrent trackers
|
API Support for your favorite torrent trackers
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,9 +81,9 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/jackett"` | |
|
| image.repository | string | `"linuxserver/jackett"` | |
|
||||||
| image.tag | string | `"version-v0.17.591"` | |
|
| image.tag | string | `"version-v0.17.591"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.torrentblackhole.emptyDir | bool | `false` | |
|
| persistence.torrentblackhole.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.torrentblackhole.enabled | bool | `false` | |
|
| persistence.torrentblackhole.enabled | bool | `false` | |
|
||||||
| persistence.torrentblackhole.mountPath | string | `"/downloads"` | |
|
| persistence.torrentblackhole.mountPath | string | `"/downloads"` | |
|
||||||
| service.port.port | int | `9117` | |
|
| service.port.port | int | `9117` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 10.7.0
|
appVersion: 10.7.0
|
||||||
description: Jellyfin is a Free Software Media System
|
description: Jellyfin is a Free Software Media System
|
||||||
name: jellyfin
|
name: jellyfin
|
||||||
version: 7.1.1
|
version: 7.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- jellyfin
|
- jellyfin
|
||||||
@@ -19,4 +19,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# jellyfin
|
# jellyfin
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Jellyfin is a Free Software Media System
|
Jellyfin is a Free Software Media System
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -80,12 +80,12 @@ N/A
|
|||||||
| image.repository | string | `"jellyfin/jellyfin"` | |
|
| image.repository | string | `"jellyfin/jellyfin"` | |
|
||||||
| image.tag | string | `"10.7.0"` | |
|
| image.tag | string | `"10.7.0"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.cache.emptyDir | bool | `false` | |
|
| persistence.cache.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.cache.enabled | bool | `false` | |
|
| persistence.cache.enabled | bool | `false` | |
|
||||||
| persistence.cache.mountPath | string | `"/cache"` | |
|
| persistence.cache.mountPath | string | `"/cache"` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.media.emptyDir | bool | `false` | |
|
| persistence.media.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.media.enabled | bool | `false` | |
|
| persistence.media.enabled | bool | `false` | |
|
||||||
| persistence.media.mountPath | string | `"/media"` | |
|
| persistence.media.mountPath | string | `"/media"` | |
|
||||||
| service.port.port | int | `8096` | |
|
| service.port.port | int | `8096` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.7.2
|
appVersion: 1.7.2
|
||||||
description: This server allows you to sync any Joplin client
|
description: This server allows you to sync any Joplin client
|
||||||
name: joplin-server
|
name: joplin-server
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
keywords:
|
keywords:
|
||||||
- joplin
|
- joplin
|
||||||
- notes
|
- notes
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# joplin-server
|
# joplin-server
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
This server allows you to sync any Joplin client
|
This server allows you to sync any Joplin client
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ This server allows you to sync any Joplin client
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v1.2.18
|
appVersion: v1.2.18
|
||||||
description: Kanboard is a free and open source Kanban project management software.
|
description: Kanboard is a free and open source Kanban project management software.
|
||||||
name: kanboard
|
name: kanboard
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- kanboard
|
- kanboard
|
||||||
@@ -17,8 +17,8 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.7
|
version: 10.3.15
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# kanboard
|
# kanboard
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Kanboard is a free and open source Kanban project management software.
|
Kanboard is a free and open source Kanban project management software.
|
||||||
|
|
||||||
@@ -18,8 +18,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.3.7 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.3.15 |
|
||||||
| https://k8s-at-home.com/charts/ | common | 3.1.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -97,8 +97,8 @@ N/A
|
|||||||
| image.repository | string | `"kanboard/kanboard"` | |
|
| image.repository | string | `"kanboard/kanboard"` | |
|
||||||
| image.tag | string | `"v1.2.18"` | |
|
| image.tag | string | `"v1.2.18"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.data | object | `{"accessMode":"ReadWriteOnce","emptyDir":false,"enabled":false,"mountPath":"/var/www/app/data","size":"1Gi"}` | enable data persistence |
|
| persistence.data | object | `{"accessMode":"ReadWriteOnce","emptyDir":{"enabled":false},"enabled":false,"mountPath":"/var/www/app/data","size":"1Gi"}` | enable data persistence |
|
||||||
| persistence.ssl | object | `{"emptyDir":false,"enabled":false,"mountPath":"/etc/nginx/ssl"}` | enable SSL persistence |
|
| persistence.ssl | object | `{"emptyDir":{"enabled":false},"enabled":false,"mountPath":"/etc/nginx/ssl"}` | enable SSL persistence |
|
||||||
| postgresql | object | `{"enabled":false,"persistence":{"enabled":false},"postgresqlDatabase":"kanboard","postgresqlPassword":"kanboard","postgresqlUsername":"kanboard"}` | Bitnami postgres chart. For more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql |
|
| postgresql | object | `{"enabled":false,"persistence":{"enabled":false},"postgresqlDatabase":"kanboard","postgresqlPassword":"kanboard","postgresqlUsername":"kanboard"}` | Bitnami postgres chart. For more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql |
|
||||||
| postgresql.enabled | bool | `false` | true: use bitnami postgres instance -- false: use your own postgres instance |
|
| postgresql.enabled | bool | `false` | true: use bitnami postgres instance -- false: use your own postgres instance |
|
||||||
| postgresql.persistence.enabled | bool | `false` | if database is stored to a PVC. Set to true when you are done testing. |
|
| postgresql.persistence.enabled | bool | `false` | if database is stored to a PVC. Set to true when you are done testing. |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.7.2
|
appVersion: 1.7.2
|
||||||
name: lazylibrarian
|
name: lazylibrarian
|
||||||
description: A Helm chart for deploying LazyLibrarian
|
description: A Helm chart for deploying LazyLibrarian
|
||||||
version: 5.1.1
|
version: 5.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- lazylibrarian
|
- lazylibrarian
|
||||||
@@ -18,4 +18,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# lazylibrarian
|
# lazylibrarian
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A Helm chart for deploying LazyLibrarian
|
A Helm chart for deploying LazyLibrarian
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,9 +81,9 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/lazylibrarian"` | |
|
| image.repository | string | `"linuxserver/lazylibrarian"` | |
|
||||||
| image.tag | string | `"version-047f91af"` | |
|
| image.tag | string | `"version-047f91af"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.media.emptyDir | bool | `false` | |
|
| persistence.media.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.media.enabled | bool | `false` | |
|
| persistence.media.enabled | bool | `false` | |
|
||||||
| persistence.media.mountPath | string | `"/media"` | |
|
| persistence.media.mountPath | string | `"/media"` | |
|
||||||
| service.port.port | int | `5299` | |
|
| service.port.port | int | `5299` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.0.6-12
|
appVersion: 1.0.6-12
|
||||||
description: Librespeed is a HTML5 webpage to test upload and download speeds
|
description: Librespeed is a HTML5 webpage to test upload and download speeds
|
||||||
name: librespeed
|
name: librespeed
|
||||||
version: 2.0.2
|
version: 2.0.3
|
||||||
keywords:
|
keywords:
|
||||||
- librespeed
|
- librespeed
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/librespeed
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/librespeed
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# librespeed
|
# librespeed
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Librespeed is a HTML5 webpage to test upload and download speeds
|
Librespeed is a HTML5 webpage to test upload and download speeds
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 0.8.0.1886
|
appVersion: 0.8.0.1886
|
||||||
description: Looks and smells like Sonarr but made for music
|
description: Looks and smells like Sonarr but made for music
|
||||||
name: lidarr
|
name: lidarr
|
||||||
version: 8.1.1
|
version: 8.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- lidarr
|
- lidarr
|
||||||
@@ -19,4 +19,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# lidarr
|
# lidarr
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Looks and smells like Sonarr but made for music
|
Looks and smells like Sonarr but made for music
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,9 +81,9 @@ N/A
|
|||||||
| image.repository | string | `"linuxserver/lidarr"` | |
|
| image.repository | string | `"linuxserver/lidarr"` | |
|
||||||
| image.tag | string | `"version-0.8.0.1886"` | |
|
| image.tag | string | `"version-0.8.0.1886"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.media.emptyDir | bool | `false` | |
|
| persistence.media.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.media.enabled | bool | `false` | |
|
| persistence.media.enabled | bool | `false` | |
|
||||||
| persistence.media.mountPath | string | `"/media"` | |
|
| persistence.media.mountPath | string | `"/media"` | |
|
||||||
| probes.liveness.custom | bool | `true` | |
|
| probes.liveness.custom | bool | `true` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 4.0.8
|
appVersion: 4.0.8
|
||||||
description: Lychee is a free photo-management tool, which runs on your server or web-space
|
description: Lychee is a free photo-management tool, which runs on your server or web-space
|
||||||
name: lychee
|
name: lychee
|
||||||
version: 4.1.1
|
version: 4.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- lychee
|
- lychee
|
||||||
@@ -19,4 +19,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# lychee
|
# lychee
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Lychee is a free photo-management tool, which runs on your server or web-space
|
Lychee is a free photo-management tool, which runs on your server or web-space
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,13 +81,13 @@ N/A
|
|||||||
| image.repository | string | `"lycheeorg/lychee-laravel"` | |
|
| image.repository | string | `"lycheeorg/lychee-laravel"` | |
|
||||||
| image.tag | string | `"v4.0.8"` | |
|
| image.tag | string | `"v4.0.8"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence.config.emptyDir | bool | `false` | |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| persistence.config.mountPath | string | `"/conf"` | |
|
| persistence.config.mountPath | string | `"/conf"` | |
|
||||||
| persistence.sym.emptyDir | bool | `false` | |
|
| persistence.sym.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.sym.enabled | bool | `false` | |
|
| persistence.sym.enabled | bool | `false` | |
|
||||||
| persistence.sym.mountPath | string | `"/sym"` | |
|
| persistence.sym.mountPath | string | `"/sym"` | |
|
||||||
| persistence.uploads.emptyDir | bool | `false` | |
|
| persistence.uploads.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.uploads.enabled | bool | `false` | |
|
| persistence.uploads.enabled | bool | `false` | |
|
||||||
| persistence.uploads.mountPath | string | `"/uploads"` | |
|
| persistence.uploads.mountPath | string | `"/uploads"` | |
|
||||||
| service.port.port | int | `80` | |
|
| service.port.port | int | `80` | |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v2.14.0
|
appVersion: v2.14.0
|
||||||
description: magic-mirror helm package
|
description: magic-mirror helm package
|
||||||
name: magic-mirror
|
name: magic-mirror
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- magic-mirror
|
- magic-mirror
|
||||||
@@ -16,4 +16,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.1.0
|
version: 2.2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# magic-mirror
|
# magic-mirror
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
magic-mirror helm package
|
magic-mirror helm package
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 1.0.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user