Compare commits
43 Commits
bookstack-
...
statping-3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5226ba5eea | ||
|
|
21e50dd6ec | ||
|
|
1cf1012236 | ||
|
|
703496c543 | ||
|
|
f8e1cf060e | ||
|
|
0413be10c0 | ||
|
|
728d6348db | ||
|
|
df9cc45dea | ||
|
|
05db852d35 | ||
|
|
e8d2ffafaa | ||
|
|
4eec8994ef | ||
|
|
0258032687 | ||
|
|
2c91a14ee7 | ||
|
|
9e4786989d | ||
|
|
9d4d0aac04 | ||
|
|
7ea17d2597 | ||
|
|
71b339bad2 | ||
|
|
534de68571 | ||
|
|
29ae29acf9 | ||
|
|
fedf396ed3 | ||
|
|
60819426c1 | ||
|
|
84ab22ed6b | ||
|
|
6ee5e4054c | ||
|
|
a16132ba7d | ||
|
|
4bde90909a | ||
|
|
590bb3f597 | ||
|
|
110a4d4d82 | ||
|
|
a9898bb895 | ||
|
|
e6718e2234 | ||
|
|
a98f42b657 | ||
|
|
8394533292 | ||
|
|
f5e0e308b9 | ||
|
|
9a6dd78778 | ||
|
|
66a7ab60e2 | ||
|
|
e145839479 | ||
|
|
c89748678f | ||
|
|
c2a547db04 | ||
|
|
2a88f60800 | ||
|
|
d55b98d49e | ||
|
|
bcb2c84cfa | ||
|
|
34edb83ab8 | ||
|
|
068bb15c54 | ||
|
|
7241334173 |
108
.github/workflows/charts-lint-test.yaml
vendored
108
.github/workflows/charts-lint-test.yaml
vendored
@@ -82,86 +82,10 @@ jobs:
|
|||||||
echo "::set-output name=detected::true"
|
echo "::set-output name=detected::true"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
check_version:
|
|
||||||
needs:
|
|
||||||
- changes-lint
|
|
||||||
if: |
|
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]') &&
|
|
||||||
needs.changes-lint.outputs.detected == 'true'
|
|
||||||
name: Check chart version numbers
|
|
||||||
strategy:
|
|
||||||
matrix: ${{ fromJson(needs.changes-lint.outputs.matrix) }}
|
|
||||||
fail-fast: true
|
|
||||||
max-parallel: 15
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Get version
|
|
||||||
id: version-get
|
|
||||||
run: |
|
|
||||||
shopt -s extglob
|
|
||||||
OUTPUT=$(helm inspect chart ${{ matrix.chart }} | grep "^version:")
|
|
||||||
VERSION=${OUTPUT#"version:"}
|
|
||||||
echo "::set-output name=version::${VERSION##*( )}"
|
|
||||||
shopt -u extglob
|
|
||||||
|
|
||||||
- name: Parse version
|
|
||||||
id: version-parse
|
|
||||||
uses: apexskier/github-semver-parse@v1
|
|
||||||
with:
|
|
||||||
version: ${{ steps.version-get.outputs.version }}
|
|
||||||
|
|
||||||
- name: Check version
|
|
||||||
id: version-check
|
|
||||||
run: |
|
|
||||||
if [[ ${{ matrix.chart }} =~ ^charts\/(.*)\/.* ]]; then
|
|
||||||
TYPE="${BASH_REMATCH[1]}"
|
|
||||||
case $TYPE in
|
|
||||||
stable)
|
|
||||||
if [[ ${{ steps.version-parse.outputs.major }} -lt 1 ]]; then
|
|
||||||
echo "::error file=${{ matrix.chart }}::Chart version for \"$TYPE\" charts must be >= 1.0.0"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
incubator)
|
|
||||||
if [[ ${{ steps.version-parse.outputs.major }} -gt 0 ]]; then
|
|
||||||
echo "::error file=${{ matrix.chart }}::Chart version for \"$TYPE\" charts must be < 1.0.0"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "::error file=${{ matrix.chart }}::Unhandled chart type: $TYPE"
|
|
||||||
exit 1
|
|
||||||
esac
|
|
||||||
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:
|
lint:
|
||||||
needs:
|
needs:
|
||||||
- changes-lint
|
- changes-lint
|
||||||
if: |
|
if: "!contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-lint.outputs.detected == 'true'"
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
&&
|
|
||||||
needs.changes-lint.outputs.detected == 'true'
|
|
||||||
name: Lint charts
|
name: Lint charts
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
@@ -186,24 +110,10 @@ jobs:
|
|||||||
id: lint
|
id: lint
|
||||||
run: ct lint --config .github/ct-lint.yaml
|
run: ct lint --config .github/ct-lint.yaml
|
||||||
|
|
||||||
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
|
||||||
lint_success:
|
|
||||||
needs:
|
|
||||||
- changes-lint
|
|
||||||
- lint
|
|
||||||
if: ${{ always() }}
|
|
||||||
name: Lint successful
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Check lint matrix status
|
|
||||||
if: ${{ !contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-lint.outputs.detected == 'true' && needs.lint.result != 'success' }}
|
|
||||||
run: exit 1
|
|
||||||
|
|
||||||
unittest:
|
unittest:
|
||||||
needs:
|
needs:
|
||||||
- lint_success
|
- lint
|
||||||
if: |
|
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
name: Run unit tests
|
name: Run unit tests
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
@@ -238,12 +148,8 @@ jobs:
|
|||||||
install:
|
install:
|
||||||
needs:
|
needs:
|
||||||
- changes-install
|
- changes-install
|
||||||
- check_version_success
|
- lint
|
||||||
- lint_success
|
if: "!contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-install.outputs.detected == 'true'"
|
||||||
if: |
|
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
&&
|
|
||||||
needs.changes-install.outputs.detected == 'true'
|
|
||||||
name: Install charts
|
name: Install charts
|
||||||
strategy:
|
strategy:
|
||||||
matrix: ${{ fromJson(needs.changes-install.outputs.matrix) }}
|
matrix: ${{ fromJson(needs.changes-install.outputs.matrix) }}
|
||||||
@@ -282,7 +188,7 @@ jobs:
|
|||||||
|
|
||||||
# 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
|
- changes-install
|
||||||
- install
|
- install
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
|
|||||||
22
.github/workflows/charts-release.yaml
vendored
22
.github/workflows/charts-release.yaml
vendored
@@ -1,5 +1,7 @@
|
|||||||
name: "Charts: Release"
|
name: "Charts: Release"
|
||||||
|
|
||||||
|
concurrency: helm-release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
@@ -13,30 +15,10 @@ on:
|
|||||||
- '!charts/**/README_CONFIG.md.gotmpl'
|
- '!charts/**/README_CONFIG.md.gotmpl'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pre-release:
|
|
||||||
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
timeout-minutes: 5
|
|
||||||
steps:
|
|
||||||
- name: Block concurrent jobs
|
|
||||||
uses: softprops/turnstyle@v1
|
|
||||||
with:
|
|
||||||
continue-after-seconds: 180
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
||||||
needs: pre-release
|
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Block concurrent jobs
|
|
||||||
uses: softprops/turnstyle@v1
|
|
||||||
with:
|
|
||||||
continue-after-seconds: 180
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
|||||||
38
.github/workflows/pre-commit-check.yaml
vendored
Normal file
38
.github/workflows/pre-commit-check.yaml
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
name: "Pre-commit consistency check"
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
pre-commit-check:
|
||||||
|
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
||||||
|
name: Run pre-commit checks
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- uses: dorny/paths-filter@v2
|
||||||
|
id: filter
|
||||||
|
with:
|
||||||
|
list-files: shell
|
||||||
|
filters: |
|
||||||
|
addedOrModified:
|
||||||
|
- added|modified: '**'
|
||||||
|
|
||||||
|
# run only if changed files were detected
|
||||||
|
- name: Run against changes
|
||||||
|
uses: pre-commit/action@v2.0.3
|
||||||
|
if: steps.filter.outputs.addedOrModified == 'true'
|
||||||
|
with:
|
||||||
|
extra_args: --files ${{ steps.filter.outputs.addedOrModified_files }}
|
||||||
|
|
||||||
|
# run if no changed files were detected (e.g. workflow_dispatch on master branch)
|
||||||
|
- name: Run against all files
|
||||||
|
uses: pre-commit/action@v2.0.3
|
||||||
|
if: steps.filter.outputs.addedOrModified != 'true'
|
||||||
|
with:
|
||||||
|
extra_args: --all-files
|
||||||
@@ -7,15 +7,11 @@ repos:
|
|||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
- id: fix-byte-order-marker
|
- id: fix-byte-order-marker
|
||||||
- id: mixed-line-ending
|
- id: mixed-line-ending
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- id: check-case-conflict
|
||||||
|
|
||||||
- repo: local
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
||||||
|
rev: v1.1.10
|
||||||
hooks:
|
hooks:
|
||||||
- id: ct-lint
|
- id: remove-crlf
|
||||||
name: "Chart Test: Lint"
|
- id: remove-tabs
|
||||||
language: docker_image
|
|
||||||
pass_filenames: false
|
|
||||||
types: ['file']
|
|
||||||
files: '^charts/.*(\.ya?ml|\.tpl|\.helmignore|NOTES.txt)'
|
|
||||||
entry: -u 0 quay.io/helmpack/chart-testing:v3.0.0 ct
|
|
||||||
args:
|
|
||||||
- lint
|
|
||||||
|
|||||||
2
Gemfile
2
Gemfile
@@ -7,6 +7,6 @@ group :test do
|
|||||||
gem 'minitest', "5.14.4"
|
gem 'minitest', "5.14.4"
|
||||||
gem 'minitest-implicit-subject'
|
gem 'minitest-implicit-subject'
|
||||||
gem 'minitest-reporters', "1.4.3"
|
gem 'minitest-reporters', "1.4.3"
|
||||||
gem 'pry', "0.14.0"
|
gem 'pry', "0.14.1"
|
||||||
gem 'ruby-jq'
|
gem 'ruby-jq'
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -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.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- alertmanager
|
- alertmanager
|
||||||
@@ -10,6 +10,7 @@ keywords:
|
|||||||
- bot
|
- bot
|
||||||
- alerting
|
- alerting
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/alertmanager-bot
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/alertmanager-bot
|
||||||
|
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
|
||||||
sources:
|
sources:
|
||||||
- https://hub.docker.com/r/metalmatze/alertmanager-bot
|
- https://hub.docker.com/r/metalmatze/alertmanager-bot
|
||||||
- https://github.com/metalmatze/alertmanager-bot
|
- https://github.com/metalmatze/alertmanager-bot
|
||||||
|
|||||||
@@ -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 | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -96,6 +96,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -110,6 +124,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -120,4 +135,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,17 +1,21 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: comcast
|
name: comcast
|
||||||
version: 3.0.3
|
version: 4.0.0
|
||||||
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:
|
||||||
- comcast
|
- comcast
|
||||||
- influxdb
|
- influxdb
|
||||||
- xfinity
|
- xfinity
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/comcast
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/comcast
|
||||||
icon: https://i.imgur.com/iR1dUpp.png
|
icon: https://i.imgur.com/iR1dUpp.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/billimek/comcastUsage-for-influxdb
|
- https://github.com/billimek/comcastUsage-for-influxdb
|
||||||
- https://github.com/k8s-at-home/charts
|
- https://github.com/k8s-at-home/charts
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ periodic comcast data usage checks and save the results to InfluxDB
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,21 +82,13 @@ helm install comcast k8s-at-home/comcast -f values.yaml
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| config.comcast.password | string | `"somepassword"` | Comcast website login password |
|
| config | string | string | comcast's config.ini configuration |
|
||||||
| config.comcast.username | string | `"someuser"` | Comcast website login username |
|
| env | object | `{}` | |
|
||||||
| config.delay | int | `3600` | how many seconds to wait between checks |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| config.influxdb.database | string | `"comcast"` | InfluxDB database |
|
| image.repository | string | `"billimek/comcastusage-for-influxdb"` | |
|
||||||
| config.influxdb.host | string | `"influxdb-influxdb"` | InfluxDB hostname |
|
| image.tag | string | `"latest"` | |
|
||||||
| config.influxdb.port | int | `8086` | InfluxDB port |
|
| service.enabled | bool | `false` | |
|
||||||
| config.influxdb.ssl | bool | `false` | InfluxDB connection using SSL |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
| debug | bool | `false` | Display debugging output |
|
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | Comcast image pull policy |
|
|
||||||
| image.repository | string | `"billimek/comcastusage-for-influxdb"` | Comcast image |
|
|
||||||
| image.tag | string | `"latest"` | Comcast image tag |
|
|
||||||
| nodeSelector | object | `{}` | |
|
|
||||||
| podAnnotations | object | `{}` | Key-value pairs to add as pod annotations |
|
|
||||||
| replicaCount | int | `1` | |
|
|
||||||
| resources | object | `{}` | |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -103,6 +96,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -117,6 +124,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -127,4 +135,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,7 +1 @@
|
|||||||
You can connect to the container running comcast. To open a shell session in the pod run the following:
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
|
|
||||||
- kubectl exec -i -t --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "comcast.fullname" . }} -o jsonpath='{.items[0].metadata.name}') /bin/sh
|
|
||||||
|
|
||||||
To trail the logs for the comcast pod run the following:
|
|
||||||
|
|
||||||
- kubectl logs -f --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "comcast.fullname" . }} -o jsonpath='{ .items[0].metadata.name }')
|
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
{{/* vim: set filetype=mustache: */}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Expand the name of the chart.
|
|
||||||
*/}}
|
|
||||||
{{- define "comcast.name" -}}
|
|
||||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create a default fully qualified app name.
|
|
||||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
||||||
If release name contains chart name it will be used as a full name.
|
|
||||||
*/}}
|
|
||||||
{{- define "comcast.fullname" -}}
|
|
||||||
{{- if .Values.fullnameOverride -}}
|
|
||||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
||||||
{{- if contains $name .Release.Name -}}
|
|
||||||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
32
charts/stable/comcast/templates/common.yaml
Normal file
32
charts/stable/comcast/templates/common.yaml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
{{/* Make sure all variables are set properly */}}
|
||||||
|
{{- include "common.values.setup" . }}
|
||||||
|
|
||||||
|
{{/* Append the configMap to the additionalVolumes */}}
|
||||||
|
{{- define "comcast.configmap.volume" -}}
|
||||||
|
name: comcast-settings
|
||||||
|
configMap:
|
||||||
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volume := include "comcast.configmap.volume" . | fromYaml -}}
|
||||||
|
{{- if $volume -}}
|
||||||
|
{{- $additionalVolumes := append .Values.additionalVolumes $volume }}
|
||||||
|
{{- $_ := set .Values "additionalVolumes" (deepCopy $additionalVolumes) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Append the configMap volume to the additionalVolumeMounts */}}
|
||||||
|
{{- define "comcast.configmap.volumeMount" -}}
|
||||||
|
name: comcast-settings
|
||||||
|
mountPath: /src/config.ini
|
||||||
|
subPath: config.ini
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volumeMount := include "comcast.configmap.volumeMount" . | fromYaml -}}
|
||||||
|
{{- if $volumeMount -}}
|
||||||
|
{{- $additionalVolumeMounts := append .Values.additionalVolumeMounts $volumeMount }}
|
||||||
|
{{- $_ := set .Values "additionalVolumeMounts" (deepCopy $additionalVolumeMounts) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Render the templates */}}
|
||||||
|
{{ include "common.all" . }}
|
||||||
@@ -1,32 +1,10 @@
|
|||||||
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ template "comcast.fullname" . }}
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
labels:
|
labels:
|
||||||
app: {{ template "comcast.name" . }}
|
{{- include "common.labels" . | nindent 4 }}
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: "{{ .Release.Name }}"
|
|
||||||
heritage: "{{ .Release.Service }}"
|
|
||||||
data:
|
data:
|
||||||
config.ini: |
|
config.ini: |
|
||||||
[GENERAL]
|
{{- .Values.config | nindent 4 }}
|
||||||
Delay = {{ .Values.config.delay }}
|
|
||||||
{{- if .Values.debug }}
|
|
||||||
Output = True
|
|
||||||
{{- else }}
|
|
||||||
Output = False
|
|
||||||
{{- end }}
|
|
||||||
[INFLUXDB]
|
|
||||||
Address = {{ .Values.config.influxdb.host }}
|
|
||||||
Port = {{ .Values.config.influxdb.port }}
|
|
||||||
Database = {{ .Values.config.influxdb.database }}
|
|
||||||
Username = {{ .Values.config.influxdb.username }}
|
|
||||||
Password = {{ .Values.config.influxdb.password }}
|
|
||||||
{{- if .Values.config.influxdb.ssl }}
|
|
||||||
Verify_SSL = True
|
|
||||||
{{- else }}
|
|
||||||
Verify_SSL = False
|
|
||||||
{{- end }}
|
|
||||||
[COMCAST]
|
|
||||||
Username = {{ .Values.config.comcast.username }}
|
|
||||||
Password = {{ .Values.config.comcast.password }}
|
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ template "comcast.fullname" . }}
|
|
||||||
labels:
|
|
||||||
app: {{ template "comcast.name" . }}
|
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
heritage: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: {{ template "comcast.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
replicas: {{ default 1 .Values.replicas }}
|
|
||||||
revisionHistoryLimit: 3
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: {{ template "comcast.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
{{- if .Values.podAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.podAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
resources:
|
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
|
||||||
volumeMounts:
|
|
||||||
- name: {{ template "comcast.name" . }}
|
|
||||||
mountPath: /src/config.ini
|
|
||||||
subPath: config.ini
|
|
||||||
{{- if .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml .Values.nodeSelector | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
volumes:
|
|
||||||
- name: {{ template "comcast.name" . }}
|
|
||||||
configMap:
|
|
||||||
name: {{ template "comcast.fullname" . }}
|
|
||||||
items:
|
|
||||||
- key: config.ini
|
|
||||||
path: config.ini
|
|
||||||
@@ -1,48 +1,45 @@
|
|||||||
# Default values for comcast.
|
#
|
||||||
# This is a YAML-formatted file.
|
# IMPORTANT NOTE
|
||||||
# Declare variables to be passed into your templates.
|
#
|
||||||
replicaCount: 1
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- Comcast image
|
|
||||||
repository: billimek/comcastusage-for-influxdb
|
repository: billimek/comcastusage-for-influxdb
|
||||||
# -- Comcast image tag
|
|
||||||
tag: latest
|
|
||||||
# -- Comcast image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
resources: {}
|
tag: latest
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
||||||
# choice for the user. This also increases chances charts run on environments with little
|
|
||||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
||||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
# requests:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
nodeSelector: {}
|
|
||||||
# -- Display debugging output
|
|
||||||
debug: false
|
|
||||||
config:
|
|
||||||
# -- how many seconds to wait between checks
|
|
||||||
delay: 3600
|
|
||||||
influxdb:
|
|
||||||
# -- InfluxDB hostname
|
|
||||||
host: influxdb-influxdb
|
|
||||||
# -- InfluxDB port
|
|
||||||
port: 8086
|
|
||||||
# -- InfluxDB database
|
|
||||||
database: comcast
|
|
||||||
# username:
|
|
||||||
# password:
|
|
||||||
|
|
||||||
# -- InfluxDB connection using SSL
|
strategy:
|
||||||
ssl: false
|
type: Recreate
|
||||||
comcast:
|
|
||||||
# -- Comcast website login username
|
|
||||||
username: someuser
|
|
||||||
# -- Comcast website login password
|
|
||||||
password: somepassword
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as pod annotations
|
env: {}
|
||||||
podAnnotations: {}
|
|
||||||
|
# -- comcast's config.ini configuration
|
||||||
|
# @default -- string
|
||||||
|
config: |
|
||||||
|
[GENERAL]
|
||||||
|
Delay = 3600
|
||||||
|
Output = False
|
||||||
|
[INFLUXDB]
|
||||||
|
Address = influxdb-influxdb
|
||||||
|
Port = 8086
|
||||||
|
Database = comcast
|
||||||
|
Username =
|
||||||
|
Password =
|
||||||
|
Verify_SSL = False
|
||||||
|
[COMCAST]
|
||||||
|
Username = someuser
|
||||||
|
Password = somepassword
|
||||||
|
|
||||||
|
service:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
## Probes configuration
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: false
|
||||||
|
readiness:
|
||||||
|
enabled: false
|
||||||
|
startup:
|
||||||
|
enabled: false
|
||||||
|
|||||||
@@ -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.3.1
|
version: 2.3.2
|
||||||
keywords:
|
keywords:
|
||||||
- cert-manager
|
- cert-manager
|
||||||
- dnsmadeeasy
|
- dnsmadeeasy
|
||||||
|
|||||||
@@ -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 | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -102,6 +102,7 @@ N/A
|
|||||||
| service.port.name | string | `"https"` | |
|
| service.port.name | string | `"https"` | |
|
||||||
| service.port.port | int | `443` | |
|
| service.port.port | int | `443` | |
|
||||||
| service.port.targetPort | int | `4443` | |
|
| service.port.targetPort | int | `4443` | |
|
||||||
|
| serviceAccount.create | bool | `true` | Create service account |
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -139,7 +140,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[1.1.1]: #1.1.1
|
[2.3.2]: #2.3.2
|
||||||
|
|
||||||
|
### [2.3.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Fix: use created service account
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
|||||||
@@ -39,5 +39,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[1.1.1]: #1.1.1
|
[2.3.2]: #2.3.2
|
||||||
|
|
||||||
|
### [2.3.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Fix: use created service account
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,11 +1,3 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: ServiceAccount
|
|
||||||
metadata:
|
|
||||||
name: {{ include "common.names.fullname" . }}
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
labels:
|
|
||||||
{{- include "common.labels" . | nindent 4 }}
|
|
||||||
---
|
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRole
|
kind: ClusterRole
|
||||||
metadata:
|
metadata:
|
||||||
@@ -35,7 +27,7 @@ roleRef:
|
|||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.fullname" . }}
|
||||||
subjects:
|
subjects:
|
||||||
- kind: ServiceAccount
|
- kind: ServiceAccount
|
||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.serviceAccountName" . }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
---
|
---
|
||||||
# Grant the webhook permission to read the ConfigMap containing the Kubernetes
|
# Grant the webhook permission to read the ConfigMap containing the Kubernetes
|
||||||
@@ -55,7 +47,7 @@ roleRef:
|
|||||||
subjects:
|
subjects:
|
||||||
- apiGroup: ""
|
- apiGroup: ""
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.serviceAccountName" . }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
---
|
---
|
||||||
# apiserver gets the auth-delegator role to delegate auth decisions to
|
# apiserver gets the auth-delegator role to delegate auth decisions to
|
||||||
@@ -73,7 +65,7 @@ roleRef:
|
|||||||
subjects:
|
subjects:
|
||||||
- apiGroup: ""
|
- apiGroup: ""
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.serviceAccountName" . }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
---
|
---
|
||||||
# Grant cert-manager permission to validate using our apiserver
|
# Grant cert-manager permission to validate using our apiserver
|
||||||
|
|||||||
@@ -16,6 +16,10 @@ certManager:
|
|||||||
|
|
||||||
# Default values for dnsmadeeasy-webhook.
|
# Default values for dnsmadeeasy-webhook.
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
# -- Create service account
|
||||||
|
create: true
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- Image repository
|
# -- Image repository
|
||||||
repository: ghcr.io/k8s-at-home/dnsmadeeasy-webhook
|
repository: ghcr.io/k8s-at-home/dnsmadeeasy-webhook
|
||||||
|
|||||||
@@ -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.3.1
|
version: 3.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- dsmr-reader
|
- dsmr-reader
|
||||||
@@ -20,6 +20,6 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.3.1
|
version: 2.3.1
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.15
|
version: 10.4.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
|||||||
@@ -1,15 +1,19 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v2.0.5.1
|
appVersion: latest
|
||||||
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.3
|
version: 3.0.0
|
||||||
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
|
||||||
icon: https://i.imgur.com/KjnkhUJ.png
|
icon: https://avatars.githubusercontent.com/u/8270231?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://hub.docker.com/r/linuxserver/duplicati/
|
- https://hub.docker.com/r/linuxserver/duplicati/
|
||||||
- https://github.com/duplicati/duplicati
|
- https://github.com/duplicati/duplicati
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: simoncaron
|
- name: simoncaron
|
||||||
email: simon.caron@protonmail.com
|
email: simon.caron@protonmail.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# duplicati
|
# duplicati
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Store securely encrypted backups on cloud storage services!
|
Store securely encrypted backups on cloud storage services!
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ Store securely encrypted backups on cloud storage services!
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -78,52 +79,22 @@ If you get `Error: rendered manifests contain a resource that already exists. Un
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| affinity | object | `{}` | Affinity settings for pod assignment |
|
| env | object | `{}` | |
|
||||||
| cliArgs | string | `""` | Optionally specify any CLI variables you want to launch the app with |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| deploymentAnnotations | object | `{}` | Key-value pairs to add as deployment annotations |
|
| image.repository | string | `"linuxserver/duplicati"` | |
|
||||||
| fullnameOverride | string | `""` | |
|
| image.tag | string | `"latest"` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
|
| ingress.enabled | bool | `false` | |
|
||||||
| image.repository | string | `"linuxserver/duplicati"` | Image repository |
|
| persistence.backups.emptyDir.enabled | bool | `false` | |
|
||||||
| image.tag | string | `"v2.0.5.1-2.0.5.1_beta_2020-01-18-ls72"` | Image tag. Possible values listed [here](https://hub.docker.com/r/linuxserver/duplicati/tags/). |
|
| persistence.backups.enabled | bool | `false` | |
|
||||||
| ingress.annotations | object | `{}` | Ingress annotations |
|
| persistence.backups.mountPath | string | `"/backups"` | |
|
||||||
| ingress.enabled | bool | `false` | Enables Ingress |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| ingress.hosts | list | `["chart-example.local"]` | Ingress accepted hostnames |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| ingress.labels | object | `{}` | Custom labels |
|
| persistence.config.mountPath | string | `"/config"` | |
|
||||||
| ingress.path | string | `"/"` | Ingress path |
|
| persistence.source.emptyDir.enabled | bool | `false` | |
|
||||||
| ingress.tls | list | `[]` | Ingress TLS configuration |
|
| persistence.source.enabled | bool | `false` | |
|
||||||
| nameOverride | string | `""` | |
|
| persistence.source.mountPath | string | `"/source"` | |
|
||||||
| nodeSelector | object | `{}` | Node labels for pod assignment |
|
| service.port.port | int | `8200` | |
|
||||||
| persistence.backups.accessMode | string | `"ReadWriteOnce"` | Use an existing PVC to persist data existingClaim: your-claim -- Persistence access mode |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
| persistence.backups.enabled | bool | `true` | Use persistent volume to store backups data |
|
|
||||||
| persistence.backups.size | string | `"1Gi"` | Size of persistent volume claim |
|
|
||||||
| persistence.backups.skipuninstall | bool | `false` | Do not delete the pvc upon helm uninstall |
|
|
||||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | Use an existing PVC to persist data existingClaim: your-claim -- Persistence access mode |
|
|
||||||
| persistence.config.enabled | bool | `true` | Use persistent volume to store configuration data |
|
|
||||||
| persistence.config.size | string | `"1Gi"` | Size of persistent volume claim |
|
|
||||||
| persistence.config.skipuninstall | bool | `false` | Do not delete the pvc upon helm uninstall |
|
|
||||||
| persistence.extraExistingClaimMounts | list | `[]` | Optionally add multiple existing claims |
|
|
||||||
| persistence.source.accessMode | string | `"ReadWriteOnce"` | Use an existing PVC to persist data existingClaim: your-claim -- Persistence access mode |
|
|
||||||
| persistence.source.enabled | bool | `true` | Use persistent volume to store source data |
|
|
||||||
| persistence.source.size | string | `"1Gi"` | Size of persistent volume claim |
|
|
||||||
| persistence.source.skipuninstall | bool | `false` | Do not delete the pvc upon helm uninstall |
|
|
||||||
| pgid | int | `1001` | Process groupID the duplicati instance should run as |
|
|
||||||
| podAnnotations | object | `{}` | Key-value pairs to add as pod annotations |
|
|
||||||
| probes.liveness.failureThreshold | int | `5` | Specify liveness `failureThreshold` parameter for the deployment |
|
|
||||||
| probes.liveness.initialDelaySeconds | int | `60` | Specify liveness `initialDelaySeconds` parameter for the deployment |
|
|
||||||
| probes.liveness.timeoutSeconds | int | `10` | Specify liveness `timeoutSeconds` parameter for the deployment |
|
|
||||||
| probes.readiness.failureThreshold | int | `5` | Specify readiness `failureThreshold` parameter for the deployment |
|
|
||||||
| probes.readiness.initialDelaySeconds | int | `60` | Specify readiness `initialDelaySeconds` parameter for the deployment |
|
|
||||||
| probes.readiness.timeoutSeconds | int | `10` | Specify readiness `timeoutSeconds` parameter for the deployment |
|
|
||||||
| puid | int | `1001` | Process userID the duplicati instance should run as |
|
|
||||||
| resources | object | `{}` | CPU/Memory resource requests/limits |
|
|
||||||
| service.annotations | object | `{}` | Service annotations for the duplicati GUI |
|
|
||||||
| service.labels | object | `{}` | Custom labels |
|
|
||||||
| service.loadBalancerIP | string | `nil` | Loadbalance IP for the duplicati GUI |
|
|
||||||
| service.port | int | `8200` | Kubernetes port where the duplicati GUI is exposed |
|
|
||||||
| service.type | string | `"ClusterIP"` | Kubernetes service type for the duplicati GUI |
|
|
||||||
| strategyType | string | `"Recreate"` | Specifies the strategy used to replace old Pods by new ones |
|
|
||||||
| timezone | string | `"UTC"` | Timezone the duplicati instance should run as, e.g. 'America/New_York' |
|
|
||||||
| tolerations | list | `[]` | Toleration labels for pod assignment |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -131,6 +102,22 @@ 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).
|
||||||
|
|
||||||
|
### [3.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
- Updated icon.
|
||||||
|
- Changed image tag to latest
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.1.1]
|
### [2.1.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -145,6 +132,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.0.0]: #3.0.0
|
||||||
[2.1.1]: #2.1.1
|
[2.1.1]: #2.1.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -155,4 +143,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
@@ -9,6 +9,22 @@ 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).
|
||||||
|
|
||||||
|
### [3.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
- Updated icon.
|
||||||
|
- Changed image tag to latest
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.1.1]
|
### [2.1.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +39,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.0.0]: #3.0.0
|
||||||
[2.1.1]: #2.1.1
|
[2.1.1]: #2.1.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,19 +1 @@
|
|||||||
1. Get the application URL by running these commands:
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
{{- if .Values.ingress.enabled }}
|
|
||||||
{{- range .Values.ingress.hosts }}
|
|
||||||
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }}
|
|
||||||
{{- end }}
|
|
||||||
{{- else if contains "NodePort" .Values.service.type }}
|
|
||||||
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "duplicati.fullname" . }})
|
|
||||||
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
||||||
echo http://$NODE_IP:$NODE_PORT
|
|
||||||
{{- else if contains "LoadBalancer" .Values.service.type }}
|
|
||||||
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
||||||
You can watch the status of by running 'kubectl get svc -w {{ include "duplicati.fullname" . }}'
|
|
||||||
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "duplicati.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
|
|
||||||
echo http://$SERVICE_IP:{{ .Values.service.port }}
|
|
||||||
{{- else if contains "ClusterIP" .Values.service.type }}
|
|
||||||
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "duplicati.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
|
|
||||||
echo "Visit http://127.0.0.1:8080 to use your application"
|
|
||||||
kubectl port-forward $POD_NAME 8080:8200
|
|
||||||
{{- end }}
|
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
{{/* vim: set filetype=mustache: */}}
|
|
||||||
{{/*
|
|
||||||
Expand the name of the chart.
|
|
||||||
*/}}
|
|
||||||
{{- define "duplicati.name" -}}
|
|
||||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create a default fully qualified app name.
|
|
||||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
||||||
If release name contains chart name it will be used as a full name.
|
|
||||||
*/}}
|
|
||||||
{{- define "duplicati.fullname" -}}
|
|
||||||
{{- if .Values.fullnameOverride -}}
|
|
||||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
||||||
{{- if contains $name .Release.Name -}}
|
|
||||||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create chart name and version as used by the chart label.
|
|
||||||
*/}}
|
|
||||||
{{- define "duplicati.chart" -}}
|
|
||||||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
{{- if and .Values.persistence.backups.enabled (not .Values.persistence.backups.existingClaim) }}
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}-backups
|
|
||||||
{{- if .Values.persistence.backups.skipuninstall }}
|
|
||||||
annotations:
|
|
||||||
"helm.sh/resource-policy": keep
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- {{ .Values.persistence.backups.accessMode | quote }}
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.backups.size | quote }}
|
|
||||||
{{- if .Values.persistence.backups.storageClass }}
|
|
||||||
{{- if (eq "-" .Values.persistence.backups.storageClass) }}
|
|
||||||
storageClassName: ""
|
|
||||||
{{- else }}
|
|
||||||
storageClassName: "{{ .Values.persistence.backups.storageClass }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end -}}
|
|
||||||
1
charts/stable/duplicati/templates/common.yaml
Normal file
1
charts/stable/duplicati/templates/common.yaml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{ include "common.all" . }}
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
{{- if and .Values.persistence.config.enabled (not .Values.persistence.config.existingClaim) }}
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}-config
|
|
||||||
{{- if .Values.persistence.config.skipuninstall }}
|
|
||||||
annotations:
|
|
||||||
"helm.sh/resource-policy": keep
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- {{ .Values.persistence.config.accessMode | quote }}
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.config.size | quote }}
|
|
||||||
{{- if .Values.persistence.config.storageClass }}
|
|
||||||
{{- if (eq "-" .Values.persistence.config.storageClass) }}
|
|
||||||
storageClassName: ""
|
|
||||||
{{- else }}
|
|
||||||
storageClassName: "{{ .Values.persistence.config.storageClass }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end -}}
|
|
||||||
@@ -1,130 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ include "duplicati.fullname" . }}
|
|
||||||
{{- if .Values.deploymentAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.deploymentAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
revisionHistoryLimit: 3
|
|
||||||
strategy:
|
|
||||||
type: {{ .Values.strategyType }}
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
{{- if .Values.podAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.podAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
containerPort: 8200
|
|
||||||
protocol: TCP
|
|
||||||
livenessProbe:
|
|
||||||
tcpSocket:
|
|
||||||
port: http
|
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
|
||||||
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
|
|
||||||
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
|
|
||||||
readinessProbe:
|
|
||||||
tcpSocket:
|
|
||||||
port: http
|
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
|
||||||
failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
|
|
||||||
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
|
|
||||||
env:
|
|
||||||
- name: TZ
|
|
||||||
value: "{{ .Values.timezone }}"
|
|
||||||
- name: PUID
|
|
||||||
value: "{{ .Values.puid }}"
|
|
||||||
- name: PGID
|
|
||||||
value: "{{ .Values.pgid }}"
|
|
||||||
- name: CLI_ARGS
|
|
||||||
value: "{{ .Values.cliArgs }}"
|
|
||||||
volumeMounts:
|
|
||||||
- mountPath: /config
|
|
||||||
name: config
|
|
||||||
- mountPath: /source
|
|
||||||
name: source
|
|
||||||
{{- if .Values.persistence.source.subPath }}
|
|
||||||
subPath: {{ .Values.persistence.source.subPath }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.additionalVolumeMounts }}
|
|
||||||
{{- toYaml .Values.additionalVolumeMounts | nindent 12}}
|
|
||||||
{{- end }}
|
|
||||||
- mountPath: /backups
|
|
||||||
name: backups
|
|
||||||
{{- if .Values.persistence.backups.subPath }}
|
|
||||||
subPath: {{ .Values.persistence.backups.subPath }}
|
|
||||||
{{- end }}
|
|
||||||
{{- range .Values.persistence.extraExistingClaimMounts }}
|
|
||||||
- name: {{ .name }}
|
|
||||||
mountPath: {{ .mountPath }}
|
|
||||||
readOnly: {{ .readOnly }}
|
|
||||||
{{- end }}
|
|
||||||
resources:
|
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
|
||||||
volumes:
|
|
||||||
- name: config
|
|
||||||
{{- if .Values.persistence.config.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ if .Values.persistence.config.existingClaim }}{{ .Values.persistence.config.existingClaim }}{{- else }}{{ template "duplicati.fullname" . }}-config{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
|
||||||
- name: source
|
|
||||||
{{- if .Values.persistence.source.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ if .Values.persistence.source.existingClaim }}{{ .Values.persistence.source.existingClaim }}{{- else }}{{ template "duplicati.fullname" . }}-source{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.additionalVolumes }}
|
|
||||||
{{- toYaml .Values.additionalVolumes | nindent 6}}
|
|
||||||
{{- end }}
|
|
||||||
- name: backups
|
|
||||||
{{- if .Values.persistence.backups.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ if .Values.persistence.backups.existingClaim }}{{ .Values.persistence.backups.existingClaim }}{{- else }}{{ template "duplicati.fullname" . }}-backups{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
|
||||||
{{- range .Values.persistence.extraExistingClaimMounts }}
|
|
||||||
- name: {{ .name }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ .existingClaim }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
{{- if .Values.ingress.enabled -}}
|
|
||||||
{{- $fullName := include "duplicati.fullname" . -}}
|
|
||||||
{{- $ingressPath := .Values.ingress.path -}}
|
|
||||||
apiVersion: extensions/v1beta1
|
|
||||||
kind: Ingress
|
|
||||||
metadata:
|
|
||||||
name: {{ $fullName }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
{{- with .Values.ingress.labels -}}
|
|
||||||
{{ toYaml . | nindent 4 }}
|
|
||||||
{{- end -}}
|
|
||||||
{{- with .Values.ingress.annotations }}
|
|
||||||
annotations:
|
|
||||||
{{ toYaml . | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
{{- if .Values.ingress.tls }}
|
|
||||||
tls:
|
|
||||||
{{- range .Values.ingress.tls }}
|
|
||||||
- hosts:
|
|
||||||
{{- range .hosts }}
|
|
||||||
- {{ . | quote }}
|
|
||||||
{{- end }}
|
|
||||||
secretName: {{ .secretName }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
rules:
|
|
||||||
{{- range .Values.ingress.hosts }}
|
|
||||||
- host: {{ . | quote }}
|
|
||||||
http:
|
|
||||||
paths:
|
|
||||||
- path: {{ $ingressPath }}
|
|
||||||
backend:
|
|
||||||
serviceName: {{ $fullName }}
|
|
||||||
servicePort: http
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
{{- if .Values.service.labels }}
|
|
||||||
{{ toYaml .Values.service.labels | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.service.annotations }}
|
|
||||||
annotations:
|
|
||||||
{{ toYaml . | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
{{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }}
|
|
||||||
type: ClusterIP
|
|
||||||
{{- if .Values.service.clusterIP }}
|
|
||||||
clusterIP: {{ .Values.service.clusterIP }}
|
|
||||||
{{end}}
|
|
||||||
{{- else if eq .Values.service.type "LoadBalancer" }}
|
|
||||||
type: {{ .Values.service.type }}
|
|
||||||
{{- if .Values.service.loadBalancerIP }}
|
|
||||||
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.service.loadBalancerSourceRanges }}
|
|
||||||
loadBalancerSourceRanges:
|
|
||||||
{{ toYaml .Values.service.loadBalancerSourceRanges | indent 4 }}
|
|
||||||
{{- end -}}
|
|
||||||
{{- else }}
|
|
||||||
type: {{ .Values.service.type }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.service.externalIPs }}
|
|
||||||
externalIPs:
|
|
||||||
{{ toYaml .Values.service.externalIPs | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.service.externalTrafficPolicy }}
|
|
||||||
externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }}
|
|
||||||
{{- end }}
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
port: {{ .Values.service.port }}
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: http
|
|
||||||
{{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }}
|
|
||||||
nodePort: {{.Values.service.nodePort}}
|
|
||||||
{{ end }}
|
|
||||||
selector:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
{{- if and .Values.persistence.source.enabled (not .Values.persistence.source.existingClaim) }}
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}-source
|
|
||||||
{{- if .Values.persistence.source.skipuninstall }}
|
|
||||||
annotations:
|
|
||||||
"helm.sh/resource-policy": keep
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- {{ .Values.persistence.source.accessMode | quote }}
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.source.size | quote }}
|
|
||||||
{{- if .Values.persistence.source.storageClass }}
|
|
||||||
{{- if (eq "-" .Values.persistence.source.storageClass) }}
|
|
||||||
storageClassName: ""
|
|
||||||
{{- else }}
|
|
||||||
storageClassName: "{{ .Values.persistence.source.storageClass }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end -}}
|
|
||||||
@@ -1,166 +1,43 @@
|
|||||||
# Default values for duplicati.
|
#
|
||||||
# This is a YAML-formatted file.
|
# IMPORTANT NOTE
|
||||||
# Declare variables to be passed into your templates.
|
#
|
||||||
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- Image repository
|
|
||||||
repository: linuxserver/duplicati
|
repository: linuxserver/duplicati
|
||||||
# -- Image tag. Possible values listed [here](https://hub.docker.com/r/linuxserver/duplicati/tags/).
|
tag: latest
|
||||||
tag: v2.0.5.1-2.0.5.1_beta_2020-01-18-ls72
|
|
||||||
# -- Image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# -- Specifies the strategy used to replace old Pods by new ones
|
strategy:
|
||||||
strategyType: Recreate
|
type: Recreate
|
||||||
|
|
||||||
# Probes configuration
|
# See more environment variables in the duplicati documentation
|
||||||
probes:
|
# https://hub.docker.com/r/linuxserver/duplicati
|
||||||
liveness:
|
env: {}
|
||||||
# -- Specify liveness `initialDelaySeconds` parameter for the deployment
|
# TZ:
|
||||||
initialDelaySeconds: 60
|
|
||||||
# -- Specify liveness `failureThreshold` parameter for the deployment
|
|
||||||
failureThreshold: 5
|
|
||||||
# -- Specify liveness `timeoutSeconds` parameter for the deployment
|
|
||||||
timeoutSeconds: 10
|
|
||||||
readiness:
|
|
||||||
# -- Specify readiness `initialDelaySeconds` parameter for the deployment
|
|
||||||
initialDelaySeconds: 60
|
|
||||||
# -- Specify readiness `failureThreshold` parameter for the deployment
|
|
||||||
failureThreshold: 5
|
|
||||||
# -- Specify readiness `timeoutSeconds` parameter for the deployment
|
|
||||||
timeoutSeconds: 10
|
|
||||||
|
|
||||||
nameOverride: ""
|
|
||||||
fullnameOverride: ""
|
|
||||||
|
|
||||||
# -- Timezone the duplicati instance should run as, e.g. 'America/New_York'
|
|
||||||
timezone: UTC
|
|
||||||
# -- Process userID the duplicati instance should run as
|
|
||||||
puid: 1001
|
|
||||||
# -- Process groupID the duplicati instance should run as
|
|
||||||
pgid: 1001
|
|
||||||
# -- Optionally specify any CLI variables you want to launch the app with
|
|
||||||
cliArgs: ""
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
# -- Kubernetes service type for the duplicati GUI
|
port:
|
||||||
type: ClusterIP
|
port: 8200
|
||||||
# -- Kubernetes port where the duplicati GUI is exposed
|
|
||||||
port: 8200
|
|
||||||
## Specify the nodePort value for the LoadBalancer and NodePort service types.
|
|
||||||
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
|
|
||||||
##
|
|
||||||
# nodePort:
|
|
||||||
|
|
||||||
# -- Service annotations for the duplicati GUI
|
|
||||||
annotations: {}
|
|
||||||
# -- Custom labels
|
|
||||||
labels: {}
|
|
||||||
# -- Loadbalance IP for the duplicati GUI
|
|
||||||
loadBalancerIP:
|
|
||||||
# -- List of IP CIDRs allowed access to load balancer (if supported)
|
|
||||||
# loadBalancerSourceRanges: []
|
|
||||||
|
|
||||||
## Set the externalTrafficPolicy in the Service to either Cluster or Local
|
|
||||||
# externalTrafficPolicy: Cluster
|
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
# -- Enables Ingress
|
|
||||||
enabled: false
|
enabled: false
|
||||||
# -- Ingress annotations
|
|
||||||
annotations: {}
|
|
||||||
# -- Custom labels
|
|
||||||
labels: {}
|
|
||||||
# -- Ingress path
|
|
||||||
path: /
|
|
||||||
# -- Ingress accepted hostnames
|
|
||||||
hosts:
|
|
||||||
- chart-example.local
|
|
||||||
# -- Ingress TLS configuration
|
|
||||||
tls: []
|
|
||||||
# - secretName: chart-example-tls
|
|
||||||
# hosts:
|
|
||||||
# - chart-example.local
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
# -- Use persistent volume to store configuration data
|
enabled: false
|
||||||
enabled: true
|
emptyDir:
|
||||||
# -- Type of persistent volume claim
|
enabled: false
|
||||||
# storageClass: "-"
|
mountPath: /config
|
||||||
|
|
||||||
# -- Use an existing PVC to persist data
|
|
||||||
# existingClaim: your-claim
|
|
||||||
|
|
||||||
# -- Persistence access mode
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
# -- Size of persistent volume claim
|
|
||||||
size: 1Gi
|
|
||||||
# -- Do not delete the pvc upon helm uninstall
|
|
||||||
skipuninstall: false
|
|
||||||
source:
|
source:
|
||||||
# -- Use persistent volume to store source data
|
enabled: false
|
||||||
enabled: true
|
emptyDir:
|
||||||
# -- Type of persistent volume claim
|
enabled: false
|
||||||
# storageClass: "-"
|
mountPath: /source
|
||||||
|
|
||||||
# -- Use an existing PVC to persist data
|
|
||||||
# existingClaim: your-claim
|
|
||||||
|
|
||||||
# -- Persistence access mode
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
# -- Size of persistent volume claim
|
|
||||||
size: 1Gi
|
|
||||||
# -- Do not delete the pvc upon helm uninstall
|
|
||||||
skipuninstall: false
|
|
||||||
backups:
|
backups:
|
||||||
# -- Use persistent volume to store backups data
|
enabled: false
|
||||||
enabled: true
|
emptyDir:
|
||||||
# -- Type of persistent volume claim
|
enabled: false
|
||||||
# storageClass: "-"
|
mountPath: /backups
|
||||||
|
|
||||||
# -- Use an existing PVC to persist data
|
|
||||||
# existingClaim: your-claim
|
|
||||||
|
|
||||||
# -- Persistence access mode
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
# -- Size of persistent volume claim
|
|
||||||
size: 1Gi
|
|
||||||
# -- Do not delete the pvc upon helm uninstall
|
|
||||||
skipuninstall: false
|
|
||||||
# -- Optionally add multiple existing claims
|
|
||||||
extraExistingClaimMounts: []
|
|
||||||
# - name: external-mount
|
|
||||||
# mountPath: /srv/external-mount
|
|
||||||
## A manually managed Persistent Volume and Claim
|
|
||||||
## If defined, PVC must be created manually before volume will be bound
|
|
||||||
# existingClaim:
|
|
||||||
# readOnly: true
|
|
||||||
|
|
||||||
# -- CPU/Memory resource requests/limits
|
|
||||||
resources: {}
|
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
||||||
# choice for the user. This also increases chances charts run on environments with little
|
|
||||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
||||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
# requests:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
|
|
||||||
# -- Node labels for pod assignment
|
|
||||||
nodeSelector: {}
|
|
||||||
|
|
||||||
# -- Toleration labels for pod assignment
|
|
||||||
tolerations: []
|
|
||||||
|
|
||||||
# -- Affinity settings for pod assignment
|
|
||||||
affinity: {}
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as pod annotations
|
|
||||||
podAnnotations: {}
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as deployment annotations
|
|
||||||
deploymentAnnotations: {}
|
|
||||||
|
|||||||
26
charts/stable/emby/.helmignore
Normal file
26
charts/stable/emby/.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
|
||||||
23
charts/stable/emby/Chart.yaml
Normal file
23
charts/stable/emby/Chart.yaml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 4.5.4.0
|
||||||
|
description: Emby Server is a home media server
|
||||||
|
name: emby
|
||||||
|
version: 1.0.0
|
||||||
|
kubeVersion: ">=1.16.0-0"
|
||||||
|
keywords:
|
||||||
|
- emby
|
||||||
|
- jellyfin
|
||||||
|
- plex
|
||||||
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/emby
|
||||||
|
icon: https://truecharts.org/_static/img/emby-icon.png
|
||||||
|
sources:
|
||||||
|
- https://github.com/MediaBrowser
|
||||||
|
- https://github.com/k8s-at-home/container-images/tree/main/apps/emby
|
||||||
|
maintainers:
|
||||||
|
- name: nicholaswilde
|
||||||
|
email: ncwilde43@gmail.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
116
charts/stable/emby/README.md
Normal file
116
charts/stable/emby/README.md
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
# emby
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Emby Server is a home media server
|
||||||
|
|
||||||
|
**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/MediaBrowser>
|
||||||
|
* <https://github.com/k8s-at-home/container-images/tree/main/apps/emby>
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
Kubernetes: `>=1.16.0-0`
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
| Repository | Name | Version |
|
||||||
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
|
## TL;DR
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm repo add k8s-at-home https://k8s-at-home.com/charts/
|
||||||
|
helm repo update
|
||||||
|
helm install emby k8s-at-home/emby
|
||||||
|
```
|
||||||
|
|
||||||
|
## Installing the Chart
|
||||||
|
|
||||||
|
To install the chart with the release name `emby`
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install emby k8s-at-home/emby
|
||||||
|
```
|
||||||
|
|
||||||
|
## Uninstalling the Chart
|
||||||
|
|
||||||
|
To uninstall the `emby` deployment
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm uninstall emby
|
||||||
|
```
|
||||||
|
|
||||||
|
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 emby \
|
||||||
|
--set env.TZ="America/New York" \
|
||||||
|
k8s-at-home/emby
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install emby k8s-at-home/emby -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 | `"ghcr.io/k8s-at-home/emby"` | |
|
||||||
|
| image.tag | string | `"v4.5.4.0"` | |
|
||||||
|
| ingress.enabled | bool | `false` | |
|
||||||
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
|
| persistence.config.enabled | bool | `false` | |
|
||||||
|
| persistence.config.mountPath | string | `"/config"` | |
|
||||||
|
| persistence.media.emptyDir.enabled | bool | `false` | |
|
||||||
|
| persistence.media.enabled | bool | `false` | |
|
||||||
|
| persistence.media.mountPath | string | `"/media"` | |
|
||||||
|
| service.additionalPorts[0].name | string | `"https"` | |
|
||||||
|
| service.additionalPorts[0].port | int | `8920` | |
|
||||||
|
| service.additionalPorts[0].protocol | string | `"TCP"` | |
|
||||||
|
| service.port.port | int | `8096` | |
|
||||||
|
| 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
|
||||||
|
|
||||||
|
## 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/emby/README.md.gotmpl
Normal file
145
charts/stable/emby/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" . }}
|
||||||
27
charts/stable/emby/README_CHANGELOG.md.gotmpl
Normal file
27
charts/stable/emby/README_CHANGELOG.md.gotmpl
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{{- 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
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
|
{{- end -}}
|
||||||
9
charts/stable/emby/README_CONFIG.md.gotmpl
Normal file
9
charts/stable/emby/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/emby/templates/NOTES.txt
Normal file
1
charts/stable/emby/templates/NOTES.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
1
charts/stable/emby/templates/common.yaml
Normal file
1
charts/stable/emby/templates/common.yaml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{ include "common.all" . }}
|
||||||
42
charts/stable/emby/values.yaml
Normal file
42
charts/stable/emby/values.yaml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
#
|
||||||
|
# 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: ghcr.io/k8s-at-home/emby
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: v4.5.4.0
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
|
||||||
|
# See more environment variables in the emby documentation
|
||||||
|
# https://emby.org/docs
|
||||||
|
env: {}
|
||||||
|
# TZ:
|
||||||
|
|
||||||
|
service:
|
||||||
|
port:
|
||||||
|
port: 8096
|
||||||
|
additionalPorts:
|
||||||
|
- port: 8920
|
||||||
|
name: https
|
||||||
|
protocol: TCP
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: false
|
||||||
|
emptyDir:
|
||||||
|
enabled: false
|
||||||
|
mountPath: /config
|
||||||
|
media:
|
||||||
|
enabled: false
|
||||||
|
emptyDir:
|
||||||
|
enabled: false
|
||||||
|
mountPath: /media
|
||||||
@@ -2,12 +2,13 @@ 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.3.1
|
version: 3.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- flaresolverr
|
- flaresolverr
|
||||||
- jackett
|
- jackett
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/flaresolverr
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/flaresolverr
|
||||||
|
icon: https://raw.githubusercontent.com/FlareSolverr/FlareSolverr/master/resources/flaresolverr_logo.svg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/FlareSolverr/FlareSolverr
|
- https://github.com/FlareSolverr/FlareSolverr
|
||||||
- https://hub.docker.com/r/flaresolverr/flaresolverr
|
- https://hub.docker.com/r/flaresolverr/flaresolverr
|
||||||
|
|||||||
@@ -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 | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -90,6 +90,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -104,6 +118,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.3.2]: #3.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -114,4 +129,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.3.2]: #3.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: 0.6.5
|
appVersion: 0.6.5
|
||||||
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
||||||
name: focalboard
|
name: focalboard
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- focalboard
|
- focalboard
|
||||||
- kanban
|
- kanban
|
||||||
- project management
|
- project management
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/focalboard
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/focalboard
|
||||||
icon: https://www.focalboard.com/img/logo.svg
|
icon: https://github.com/mattermost/focalboard/raw/main/webapp/static/favicon.svg
|
||||||
sources:
|
sources:
|
||||||
- https://www.focalboard.com/
|
- https://www.focalboard.com/
|
||||||
- https://github.com/mattermost/focalboard
|
- https://github.com/mattermost/focalboard
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# focalboard
|
# focalboard
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
||||||
|
|
||||||
@@ -94,6 +94,20 @@ 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).
|
||||||
|
|
||||||
|
### [1.0.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.1]
|
### [1.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -122,6 +136,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.0.2]: #1.0.2
|
||||||
|
[1.0.1]: #1.0.1
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -132,4 +148,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [1.0.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.1]
|
### [1.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -37,5 +51,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.0.2]: #1.0.2
|
||||||
|
[1.0.1]: #1.0.1
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ 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.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- freshrss
|
- freshrss
|
||||||
- rss
|
- rss
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/freshrss
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/freshrss
|
||||||
icon: https://github.com/FreshRSS/FreshRSS/blob/master/docs/img/FreshRSS-logo.png?raw=true
|
icon: https://avatars.githubusercontent.com/u/9414285?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/FreshRSS/FreshRSS
|
- https://github.com/FreshRSS/FreshRSS
|
||||||
- https://hub.docker.com/r/linuxserver/freshrss
|
- https://hub.docker.com/r/linuxserver/freshrss
|
||||||
|
|||||||
@@ -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 | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -92,6 +92,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -106,6 +120,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -116,4 +131,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: latest
|
appVersion: latest
|
||||||
description: Simple text sharing
|
description: Simple text sharing
|
||||||
name: haste-server
|
name: haste-server
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- haste
|
- haste
|
||||||
@@ -10,7 +10,7 @@ keywords:
|
|||||||
- haste-server
|
- haste-server
|
||||||
- pastebin
|
- pastebin
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/haste
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/haste
|
||||||
icon: https://github.com/seejohnrun/haste-server/blob/master/static/logo.png
|
icon: https://raw.githubusercontent.com/nicholaswilde/helm-charts/main/images/haste.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/seejohnrun/haste-server
|
- https://github.com/seejohnrun/haste-server
|
||||||
- https://github.com/k8s-at-home/container-images
|
- https://github.com/k8s-at-home/container-images
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# haste-server
|
# haste-server
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Simple text sharing
|
Simple text sharing
|
||||||
|
|
||||||
@@ -92,6 +92,20 @@ 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).
|
||||||
|
|
||||||
|
### [1.0.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated broken icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -106,6 +120,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.0.2]: #1.0.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [1.0.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated broken icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.0.2]: #1.0.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2021.4.4
|
appVersion: 2021.4.4
|
||||||
description: Home Assistant
|
description: Home Assistant
|
||||||
name: home-assistant
|
name: home-assistant
|
||||||
version: 8.0.0
|
version: 8.1.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- home-assistant
|
- home-assistant
|
||||||
@@ -22,7 +22,7 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.3.1
|
version: 2.3.1
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.15
|
version: 10.4.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
|
|||||||
@@ -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.3.1
|
version: 3.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- icantbelieveitsnotvaletudo
|
- icantbelieveitsnotvaletudo
|
||||||
@@ -10,7 +10,7 @@ keywords:
|
|||||||
- valetudo
|
- valetudo
|
||||||
- iot
|
- iot
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/icantbelieveitsnotvaletudo
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/icantbelieveitsnotvaletudo
|
||||||
icon: https://icantbelieveitsnotvaletudo.org/icon
|
icon: https://raw.githubusercontent.com/Hypfer/Valetudo/master/assets/logo/valetudo_logo_small.svg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/Hypfer/ICantBelieveItsNotValetudo
|
- https://github.com/Hypfer/ICantBelieveItsNotValetudo
|
||||||
- https://github.com/k8s-at-home/charts/tree/master/charts/icantbelieveitsnotvaletudo
|
- https://github.com/k8s-at-home/charts/tree/master/charts/icantbelieveitsnotvaletudo
|
||||||
|
|||||||
@@ -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 | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -102,6 +102,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.0.1]
|
### [2.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -124,6 +138,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- Initial commit
|
- Initial commit
|
||||||
|
|
||||||
|
[3.3.2]: #3.3.2
|
||||||
|
[2.0.1]: #2.0.1
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
||||||
@@ -132,4 +150,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.0.1]
|
### [2.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -30,4 +44,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial commit
|
- Initial commit
|
||||||
|
|
||||||
|
[3.3.2]: #3.3.2
|
||||||
|
[2.0.1]: #2.0.1
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ 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.3.1
|
version: 7.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- jellyfin
|
- jellyfin
|
||||||
- plex
|
- plex
|
||||||
- emby
|
- emby
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/Jellyfin
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/Jellyfin
|
||||||
icon: https://github.com/jellyfin/jellyfin-ux/blob/master/branding/SVG/icon-solid-black.svg
|
icon: https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-solid-black.svg
|
||||||
sources:
|
sources:
|
||||||
- https://hub.docker.com/r/jellyfin/jellyfin
|
- https://hub.docker.com/r/jellyfin/jellyfin
|
||||||
- https://github.com/jellyfin/jellyfin
|
- https://github.com/jellyfin/jellyfin
|
||||||
|
|||||||
@@ -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 | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -97,6 +97,20 @@ 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).
|
||||||
|
|
||||||
|
### [7.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated broken icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [6.0.0]
|
### [6.0.0]
|
||||||
|
|
||||||
#### Migration !breaking changes!
|
#### Migration !breaking changes!
|
||||||
@@ -135,6 +149,9 @@ Drop browser cache and cookies for your jellyfin URL!
|
|||||||
|
|
||||||
- Replaced LinuxServer.io image with official
|
- Replaced LinuxServer.io image with official
|
||||||
|
|
||||||
|
[7.3.2]: #7.3.2
|
||||||
|
[6.0.0]: #6.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
||||||
@@ -143,4 +160,4 @@ Drop browser cache and cookies for your jellyfin URL!
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [7.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated broken icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [6.0.0]
|
### [6.0.0]
|
||||||
|
|
||||||
#### Migration !breaking changes!
|
#### Migration !breaking changes!
|
||||||
@@ -46,4 +60,7 @@ Drop browser cache and cookies for your jellyfin URL!
|
|||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Replaced LinuxServer.io image with official
|
- Replaced LinuxServer.io image with official
|
||||||
|
|
||||||
|
[7.3.2]: #7.3.2
|
||||||
|
[6.0.0]: #6.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -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.3.1
|
version: 2.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- kanboard
|
- kanboard
|
||||||
@@ -19,6 +19,6 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.3.1
|
version: 2.3.1
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.15
|
version: 10.4.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: 5.2.4
|
appVersion: 5.2.4
|
||||||
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: 3.1.1
|
version: 3.1.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- librespeed
|
- librespeed
|
||||||
- speedtest
|
- speedtest
|
||||||
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
|
||||||
icon: https://github.com/librespeed/speedtest/blob/master/.logo/logo3.png?raw=true
|
icon: https://github.com/librespeed/speedtest/blob/master/.logo/icon_huge.png?raw=true
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/librespeed/speedtest
|
- https://github.com/librespeed/speedtest
|
||||||
- https://hub.docker.com/r/linuxserver/librespeed
|
- https://hub.docker.com/r/linuxserver/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
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -93,6 +93,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.1.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Changed icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.0]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
@@ -113,6 +127,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.1.2]: #3.1.2
|
||||||
[3.0.0]: #3.0.0
|
[3.0.0]: #3.0.0
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
@@ -124,4 +139,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.1.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Changed icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.0]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
@@ -29,6 +43,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.1.2]: #3.1.2
|
||||||
[3.0.0]: #3.0.0
|
[3.0.0]: #3.0.0
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ 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.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- lychee
|
- lychee
|
||||||
- photo
|
- photo
|
||||||
- pictures
|
- pictures
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/lychee
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/lychee
|
||||||
icon: https://github.com/LycheeOrg/Lychee/blob/master/Banner.png?raw=true
|
icon: https://avatars.githubusercontent.com/u/37916028?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/LycheeOrg/Lychee
|
- https://github.com/LycheeOrg/Lychee
|
||||||
- https://hub.docker.com/r/lycheeorg/lychee
|
- https://hub.docker.com/r/lycheeorg/lychee
|
||||||
|
|||||||
@@ -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 | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -99,6 +99,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -113,6 +127,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -123,4 +138,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2.0.28
|
appVersion: 2.0.28
|
||||||
description: Miniflux is a minimalist and opinionated feed reader.
|
description: Miniflux is a minimalist and opinionated feed reader.
|
||||||
name: miniflux
|
name: miniflux
|
||||||
version: 2.3.1
|
version: 2.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- miniflux
|
- miniflux
|
||||||
@@ -20,6 +20,6 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.3.1
|
version: 2.3.1
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.15
|
version: 10.4.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
|||||||
@@ -1,16 +1,20 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: modem-stats
|
name: modem-stats
|
||||||
version: 3.0.3
|
version: 4.0.0
|
||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: periodic cable modem data collection and save the results to InfluxDB
|
description: periodic cable modem data collection and save the results to InfluxDB
|
||||||
keywords:
|
keywords:
|
||||||
- sb6183
|
- sb6183
|
||||||
- influxdb
|
- influxdb
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/modem-stats
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/modem-stats
|
||||||
icon: https://i.imgur.com/NprLyFf.png
|
icon: https://i.imgur.com/NprLyFf.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/k8s-at-home/SB6183-stats-for-influxdb
|
- https://github.com/k8s-at-home/SB6183-stats-for-influxdb
|
||||||
- https://github.com/k8s-at-home/charts
|
- https://github.com/k8s-at-home/charts
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# modem-stats
|
# modem-stats
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
periodic cable modem data collection and save the results to InfluxDB
|
periodic cable modem data collection and save the results to InfluxDB
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ periodic cable modem data collection and save the results to InfluxDB
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -75,20 +76,16 @@ The configuration is set as a block of text through a configmap and mouted as a
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| config.delay | int | `3600` | how many seconds to wait between checks |
|
| config | string | string | modem-stats' config.ini configuration |
|
||||||
| config.influxdb.database | string | `"cable_modem_stats"` | InfluxDB database |
|
| env | object | `{}` | |
|
||||||
| config.influxdb.host | string | `"influxdb-influxdb"` | InfluxDB hostname |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| config.influxdb.port | int | `8086` | InfluxDB port |
|
| image.repository | string | `"billimek/sb6183-for-influxdb"` | |
|
||||||
| config.influxdb.ssl | bool | `false` | InfluxDB connection using SSL |
|
| image.tag | string | `"latest"` | |
|
||||||
| config.modem.url | string | `"http://192.168.100.1/RgConnect.asp"` | sb6183 stats URL page |
|
| probes.liveness.enabled | bool | `false` | |
|
||||||
| debug | bool | `false` | Display debugging output |
|
| probes.readiness.enabled | bool | `false` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | modem-stats image pull policy |
|
| probes.startup.enabled | bool | `false` | |
|
||||||
| image.repository | string | `"billimek/sb6183-for-influxdb"` | modem-stats image |
|
| service.enabled | bool | `false` | |
|
||||||
| image.tag | string | `"latest"` | modem-stats image tag |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
| nodeSelector | object | `{}` | |
|
|
||||||
| podAnnotations | object | `{}` | Key-value pairs to add as pod annotations |
|
|
||||||
| replicaCount | int | `1` | |
|
|
||||||
| resources | object | `{}` | |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -96,6 +93,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -110,6 +121,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -120,4 +132,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,7 +1 @@
|
|||||||
You can connect to the container running modem-stats. To open a shell session in the pod run the following:
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
|
|
||||||
- kubectl exec -i -t --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "modem-stats.fullname" . }} -o jsonpath='{.items[0].metadata.name}') /bin/sh
|
|
||||||
|
|
||||||
To trail the logs for the modem-stats pod run the following:
|
|
||||||
|
|
||||||
- kubectl logs -f --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "modem-stats.fullname" . }} -o jsonpath='{ .items[0].metadata.name }')
|
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
{{/* vim: set filetype=mustache: */}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Expand the name of the chart.
|
|
||||||
*/}}
|
|
||||||
{{- define "modem-stats.name" -}}
|
|
||||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create a default fully qualified app name.
|
|
||||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
||||||
If release name contains chart name it will be used as a full name.
|
|
||||||
*/}}
|
|
||||||
{{- define "modem-stats.fullname" -}}
|
|
||||||
{{- if .Values.fullnameOverride -}}
|
|
||||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
||||||
{{- if contains $name .Release.Name -}}
|
|
||||||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
32
charts/stable/modem-stats/templates/common.yaml
Normal file
32
charts/stable/modem-stats/templates/common.yaml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
{{/* Make sure all variables are set properly */}}
|
||||||
|
{{- include "common.values.setup" . }}
|
||||||
|
|
||||||
|
{{/* Append the configMap to the additionalVolumes */}}
|
||||||
|
{{- define "modem-stats.configmap.volume" -}}
|
||||||
|
name: modem-stats-settings
|
||||||
|
configMap:
|
||||||
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volume := include "modem-stats.configmap.volume" . | fromYaml -}}
|
||||||
|
{{- if $volume -}}
|
||||||
|
{{- $additionalVolumes := append .Values.additionalVolumes $volume }}
|
||||||
|
{{- $_ := set .Values "additionalVolumes" (deepCopy $additionalVolumes) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Append the configMap volume to the additionalVolumeMounts */}}
|
||||||
|
{{- define "modem-stats.configmap.volumeMount" -}}
|
||||||
|
name: modem-stats-settings
|
||||||
|
mountPath: /src/config.ini
|
||||||
|
subPath: config.ini
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volumeMount := include "modem-stats.configmap.volumeMount" . | fromYaml -}}
|
||||||
|
{{- if $volumeMount -}}
|
||||||
|
{{- $additionalVolumeMounts := append .Values.additionalVolumeMounts $volumeMount }}
|
||||||
|
{{- $_ := set .Values "additionalVolumeMounts" (deepCopy $additionalVolumeMounts) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Render the templates */}}
|
||||||
|
{{ include "common.all" . }}
|
||||||
@@ -1,31 +1,10 @@
|
|||||||
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ template "modem-stats.fullname" . }}
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
labels:
|
labels:
|
||||||
app: {{ template "modem-stats.name" . }}
|
{{- include "common.labels" . | nindent 4 }}
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: "{{ .Release.Name }}"
|
|
||||||
heritage: "{{ .Release.Service }}"
|
|
||||||
data:
|
data:
|
||||||
config.ini: |
|
config.ini: |
|
||||||
[GENERAL]
|
{{- .Values.config | nindent 4 }}
|
||||||
Delay = {{ .Values.config.delay }}
|
|
||||||
{{- if .Values.debug }}
|
|
||||||
Output = True
|
|
||||||
{{- else }}
|
|
||||||
Output = False
|
|
||||||
{{- end }}
|
|
||||||
[INFLUXDB]
|
|
||||||
Address = {{ .Values.config.influxdb.host }}
|
|
||||||
Port = {{ .Values.config.influxdb.port }}
|
|
||||||
Database = {{ .Values.config.influxdb.database }}
|
|
||||||
Username = {{ .Values.config.influxdb.username }}
|
|
||||||
Password = {{ .Values.config.influxdb.password }}
|
|
||||||
{{- if .Values.config.influxdb.ssl }}
|
|
||||||
Verify_SSL = True
|
|
||||||
{{- else }}
|
|
||||||
Verify_SSL = False
|
|
||||||
{{- end }}
|
|
||||||
[MODEM]
|
|
||||||
URL = {{ .Values.config.modem.url }}
|
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ template "modem-stats.fullname" . }}
|
|
||||||
labels:
|
|
||||||
app: {{ template "modem-stats.name" . }}
|
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
heritage: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: {{ template "modem-stats.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
replicas: {{ default 1 .Values.replicas }}
|
|
||||||
revisionHistoryLimit: 3
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: {{ template "modem-stats.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
{{- if .Values.podAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.podAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
resources:
|
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
|
||||||
volumeMounts:
|
|
||||||
- name: {{ template "modem-stats.name" . }}
|
|
||||||
mountPath: /src/config.ini
|
|
||||||
subPath: config.ini
|
|
||||||
{{- if .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml .Values.nodeSelector | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
volumes:
|
|
||||||
- name: {{ template "modem-stats.name" . }}
|
|
||||||
configMap:
|
|
||||||
name: {{ template "modem-stats.fullname" . }}
|
|
||||||
items:
|
|
||||||
- key: config.ini
|
|
||||||
path: config.ini
|
|
||||||
@@ -1,48 +1,44 @@
|
|||||||
# Default values for modem-stats.
|
#
|
||||||
# This is a YAML-formatted file.
|
# IMPORTANT NOTE
|
||||||
# Declare variables to be passed into your templates.
|
#
|
||||||
replicaCount: 1
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- modem-stats image
|
|
||||||
repository: billimek/sb6183-for-influxdb
|
repository: billimek/sb6183-for-influxdb
|
||||||
# -- modem-stats image tag
|
|
||||||
tag: latest
|
tag: latest
|
||||||
# -- modem-stats image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
resources: {}
|
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
||||||
# choice for the user. This also increases chances charts run on environments with little
|
|
||||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
||||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
# requests:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
nodeSelector: {}
|
|
||||||
# -- Display debugging output
|
|
||||||
debug: false
|
|
||||||
config:
|
|
||||||
# -- how many seconds to wait between checks
|
|
||||||
delay: 3600
|
|
||||||
influxdb:
|
|
||||||
# -- InfluxDB hostname
|
|
||||||
host: influxdb-influxdb
|
|
||||||
# -- InfluxDB port
|
|
||||||
port: 8086
|
|
||||||
# -- InfluxDB database
|
|
||||||
database: cable_modem_stats
|
|
||||||
# -- InfluxDB username
|
|
||||||
# username:
|
|
||||||
# -- InfluxDB password
|
|
||||||
# password:
|
|
||||||
|
|
||||||
# -- InfluxDB connection using SSL
|
strategy:
|
||||||
ssl: false
|
type: Recreate
|
||||||
modem:
|
|
||||||
# -- sb6183 stats URL page
|
|
||||||
url: http://192.168.100.1/RgConnect.asp
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as pod annotations
|
env: {}
|
||||||
podAnnotations: {}
|
|
||||||
|
# -- modem-stats' config.ini configuration
|
||||||
|
# @default -- string
|
||||||
|
config: |
|
||||||
|
[GENERAL]
|
||||||
|
Delay = 3600
|
||||||
|
Output = False
|
||||||
|
[INFLUXDB]
|
||||||
|
Address = influxdb-influxdb
|
||||||
|
Port = 8086
|
||||||
|
Database = cable_modem_stats
|
||||||
|
Username =
|
||||||
|
Password =
|
||||||
|
Verify_SSL = False
|
||||||
|
[MODEM]
|
||||||
|
URL = http://192.168.100.1/RgConnect.asp
|
||||||
|
|
||||||
|
service:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
## Probes configuration
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: false
|
||||||
|
readiness:
|
||||||
|
enabled: false
|
||||||
|
startup:
|
||||||
|
enabled: false
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: 2.0.7
|
appVersion: 2.0.7
|
||||||
description: Eclipse Mosquitto - An open source MQTT broker
|
description: Eclipse Mosquitto - An open source MQTT broker
|
||||||
name: mosquitto
|
name: mosquitto
|
||||||
version: 2.3.1
|
version: 2.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- mosquitto
|
- mosquitto
|
||||||
- MQTT
|
- MQTT
|
||||||
- eclipse-iot
|
- eclipse-iot
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/mosquitto
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/mosquitto
|
||||||
icon: https://mosquitto.org/images/mosquitto-text-side-28.png
|
icon: https://raw.githubusercontent.com/eclipse/mosquitto/master/logo/mosquitto-logo-min.svg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/eclipse/mosquitto
|
- https://github.com/eclipse/mosquitto
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# mosquitto
|
# mosquitto
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Eclipse Mosquitto - An open source MQTT broker
|
Eclipse Mosquitto - An open source MQTT broker
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -101,6 +101,20 @@ 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).
|
||||||
|
|
||||||
|
### [2.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.1.1]
|
### [1.1.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -115,6 +129,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
[1.1.1]: #1.1.1
|
[1.1.1]: #1.1.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -125,4 +140,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [2.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.1.1]
|
### [1.1.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
[1.1.1]: #1.1.1
|
[1.1.1]: #1.1.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
name: oauth2-proxy
|
name: oauth2-proxy
|
||||||
version: 5.0.3
|
version: 5.0.4
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: 7.0.1
|
appVersion: 7.0.1
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/oauth2-proxy
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/oauth2-proxy
|
||||||
description: A reverse proxy that provides authentication with Google, Github or other providers
|
description: A reverse proxy that provides authentication with Google, Github or other providers
|
||||||
|
icon: https://avatars.githubusercontent.com/u/62798169?s=200&v=4
|
||||||
keywords:
|
keywords:
|
||||||
- kubernetes
|
- kubernetes
|
||||||
- oauth
|
- oauth
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# oauth2-proxy
|
# oauth2-proxy
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A reverse proxy that provides authentication with Google, Github or other providers
|
A reverse proxy that provides authentication with Google, Github or other providers
|
||||||
|
|
||||||
@@ -208,6 +208,21 @@ Due to [this issue](https://github.com/helm/helm/issues/6583) there may be error
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
### [5.0.4]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url.
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
[5.0.4]: #5.0.4
|
||||||
[5.0.1]: #5.0.1
|
[5.0.1]: #5.0.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|||||||
@@ -55,5 +55,20 @@ Due to [this issue](https://github.com/helm/helm/issues/6583) there may be error
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
### [5.0.4]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url.
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
[5.0.4]: #5.0.4
|
||||||
[5.0.1]: #5.0.1
|
[5.0.1]: #5.0.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,12 +2,12 @@ apiVersion: v2
|
|||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: Paperless - Index and archive all of your scanned paper documents
|
description: Paperless - Index and archive all of your scanned paper documents
|
||||||
name: paperless
|
name: paperless
|
||||||
version: 5.3.1
|
version: 5.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- paperless
|
- paperless
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/paperless
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/paperless
|
||||||
icon: https://raw.githubusercontent.com/the-paperless-project/paperless/master/src/paperless/static/paperless/img/logo-dark.png
|
icon: https://avatars.githubusercontent.com/u/47271576?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/jonaswinkler/paperless-ng
|
- https://github.com/jonaswinkler/paperless-ng
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# paperless
|
# paperless
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Paperless - Index and archive all of your scanned paper documents
|
Paperless - Index and archive all of your scanned paper documents
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -106,6 +106,20 @@ 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).
|
||||||
|
|
||||||
|
### [5.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -120,6 +134,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[5.3.2]: #5.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -130,4 +145,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [5.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[5.3.2]: #5.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v4.3.1
|
appVersion: v4.3.1
|
||||||
description: PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on most Unix derivatives. PowerDNS features a large number of different backends ranging from simple BIND style zonefiles to relational databases and load balancing/failover algorithms. A DNS recursor is provided as a separate program.
|
description: PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on most Unix derivatives. PowerDNS features a large number of different backends ranging from simple BIND style zonefiles to relational databases and load balancing/failover algorithms. A DNS recursor is provided as a separate program.
|
||||||
name: powerdns
|
name: powerdns
|
||||||
version: 3.1.4
|
version: 3.2.0
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/powerdns
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/powerdns
|
||||||
sources:
|
sources:
|
||||||
- http://www.github.com/PowerDNS/
|
- http://www.github.com/PowerDNS/
|
||||||
@@ -12,7 +12,7 @@ maintainers:
|
|||||||
email: ryan@ryanholt.net
|
email: ryan@ryanholt.net
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.3.15
|
version: 10.4.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: "4"
|
appVersion: "4"
|
||||||
description: pretend-youre-xyzzy, a cards against humanity clone
|
description: pretend-youre-xyzzy, a cards against humanity clone
|
||||||
name: pretend-youre-xyzzy
|
name: pretend-youre-xyzzy
|
||||||
version: 1.1.1
|
version: 1.1.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- pretend-youre-xyzzy
|
- pretend-youre-xyzzy
|
||||||
@@ -10,6 +10,7 @@ keywords:
|
|||||||
- against
|
- against
|
||||||
- humanity
|
- humanity
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/pretend-youre-xyzzy
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/pretend-youre-xyzzy
|
||||||
|
icon: https://apk-google.com/wp-content/uploads/2020/12/Client-for-Pretend-Youre-Xyzzy-open-source-5.0.1.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/ajanata/PretendYoureXyzzy
|
- https://github.com/ajanata/PretendYoureXyzzy
|
||||||
- https://github.com/emcniece/DockerYourXyzzy
|
- https://github.com/emcniece/DockerYourXyzzy
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# pretend-youre-xyzzy
|
# pretend-youre-xyzzy
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
pretend-youre-xyzzy, a cards against humanity clone
|
pretend-youre-xyzzy, a cards against humanity clone
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -89,6 +89,20 @@ 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).
|
||||||
|
|
||||||
|
### [1.1.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.1]
|
### [1.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -117,6 +131,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.1.2]: #1.1.2
|
||||||
|
[1.0.1]: #1.0.1
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -127,4 +143,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [1.1.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.1]
|
### [1.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -37,5 +51,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.1.2]: #1.1.2
|
||||||
|
[1.0.1]: #1.0.1
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: latest
|
appVersion: latest
|
||||||
description: Discord bot that provides metrics from a Discord server
|
description: Discord bot that provides metrics from a Discord server
|
||||||
name: promcord
|
name: promcord
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- promcord
|
- promcord
|
||||||
@@ -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.3.0
|
version: 2.3.1
|
||||||
|
|||||||
@@ -2,12 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: 1.5.7-1
|
appVersion: 1.5.7-1
|
||||||
description: Container for protonmail bridge to work on the network.
|
description: Container for protonmail bridge to work on the network.
|
||||||
name: protonmail-bridge
|
name: protonmail-bridge
|
||||||
version: 3.3.1
|
version: 3.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- protonmail
|
- protonmail
|
||||||
- protonmail-bridge
|
- protonmail-bridge
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/protonmail-bridge
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/protonmail-bridge
|
||||||
|
icon: https://raw.githubusercontent.com/ProtonMail/proton-bridge/master/icon.iconset/icon_256x256.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/shenxn/protonmail-bridge-docker
|
- https://github.com/shenxn/protonmail-bridge-docker
|
||||||
- https://hub.docker.com/r/shenxn/protonmail-bridge
|
- https://hub.docker.com/r/shenxn/protonmail-bridge
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# protonmail-bridge
|
# protonmail-bridge
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Container for protonmail bridge to work on the network.
|
Container for protonmail bridge to work on the network.
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -101,6 +101,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url.
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -115,6 +129,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.3.2]: #3.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -125,4 +140,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url.
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.3.2]: #3.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,13 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: 0.1.0.181
|
appVersion: 0.1.0.181
|
||||||
description: Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps.
|
description: Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps.
|
||||||
name: prowlarr
|
name: prowlarr
|
||||||
version: 2.3.1
|
version: 2.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- prowlarr
|
- prowlarr
|
||||||
- torrent
|
- torrent
|
||||||
- usenet
|
- usenet
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/prowlarr
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/prowlarr
|
||||||
|
icon: https://raw.githubusercontent.com/Prowlarr/Prowlarr/develop/Logo/400.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/Prowlarr/Prowlarr
|
- https://github.com/Prowlarr/Prowlarr
|
||||||
- https://github.com/k8s-at-home/container-images
|
- https://github.com/k8s-at-home/container-images
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# prowlarr
|
# prowlarr
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps.
|
Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps.
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -92,6 +92,20 @@ 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).
|
||||||
|
|
||||||
|
### [2.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -106,6 +120,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -116,4 +131,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- 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)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user