Compare commits
39 Commits
duplicati-
...
bookstack-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d92b551b4a | ||
|
|
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 |
104
.github/workflows/charts-lint-test.yaml
vendored
104
.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) }}
|
||||||
|
|||||||
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
|
||||||
|
|||||||
@@ -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 -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 0.8.0
|
appVersion: 0.8.0
|
||||||
description: Baïkal is a lightweight CalDAV+CardDAV server. It offers a web interface with management of users, address books and calendars.
|
description: Baïkal is a lightweight CalDAV+CardDAV server. It offers a web interface with management of users, address books and calendars.
|
||||||
name: baikal
|
name: baikal
|
||||||
version: 1.2.1
|
version: 1.2.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- baikal
|
- baikal
|
||||||
@@ -23,6 +23,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: mariadb
|
- name: mariadb
|
||||||
version: 9.3.6
|
version: 9.3.9
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ apiVersion: v2
|
|||||||
appVersion: v21.04.2
|
appVersion: v21.04.2
|
||||||
description: A simple, self-hosted, easy-to-use platform for organising and storing information.
|
description: A simple, self-hosted, easy-to-use platform for organising and storing information.
|
||||||
name: bookstack
|
name: bookstack
|
||||||
version: 1.0.0
|
version: 1.0.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- bookstack
|
- bookstack
|
||||||
@@ -25,6 +25,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: mariadb
|
- name: mariadb
|
||||||
version: 9.3.7
|
version: 9.3.9
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- home-assistant
|
- home-assistant
|
||||||
@@ -22,11 +22,11 @@ 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
|
||||||
version: 9.3.6
|
version: 9.3.9
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
- name: influxdb
|
- name: influxdb
|
||||||
|
|||||||
@@ -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/)
|
||||||
|
|||||||
@@ -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/)
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v2.19.1
|
appVersion: v2.19.1
|
||||||
description: A Personal Relationship Management tool to help you organize your social life
|
description: A Personal Relationship Management tool to help you organize your social life
|
||||||
name: monica
|
name: monica
|
||||||
version: 4.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- crm
|
- crm
|
||||||
@@ -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: mariadb
|
- name: mariadb
|
||||||
version: 9.3.6
|
version: 9.3.9
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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.1
|
||||||
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,10 +12,10 @@ 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
|
||||||
version: 9.3.6
|
version: 9.3.9
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: 0.4.20
|
appVersion: 0.4.20
|
||||||
description: pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.
|
description: pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.
|
||||||
name: pyload
|
name: pyload
|
||||||
version: 4.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- pyload
|
- pyload
|
||||||
- download
|
- download
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/pyload
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/pyload
|
||||||
icon: https://github.com/pyload/pyload/blob/main/media/logo.png?raw=true
|
icon: https://raw.githubusercontent.com/pyload/pyload/main/media/logo.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/pyload/pyload
|
- https://github.com/pyload/pyload
|
||||||
- https://hub.docker.com/r/linuxserver/pyload
|
- https://hub.docker.com/r/linuxserver/pyload
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# pyload
|
# pyload
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.
|
pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.
|
||||||
|
|
||||||
@@ -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
|
||||||
|
|
||||||
@@ -95,6 +95,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
|
||||||
@@ -109,6 +123,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
|
||||||
|
|||||||
@@ -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,12 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: 0.13.0
|
appVersion: 0.13.0
|
||||||
description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
|
description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
|
||||||
name: recipes
|
name: recipes
|
||||||
version: 4.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- recipes
|
- recipes
|
||||||
- cooking
|
- cooking
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/recipes
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/recipes
|
||||||
|
icon: https://raw.githubusercontent.com/vabene1111/recipes/develop/docs/logo_color.svg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/vabene1111/recipes
|
- https://github.com/vabene1111/recipes
|
||||||
- https://hub.docker.com/r/vabene1111/recipes
|
- https://hub.docker.com/r/vabene1111/recipes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# recipes
|
# recipes
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
|
Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
|
||||||
|
|
||||||
@@ -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
|
||||||
|
|
||||||
@@ -120,6 +120,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
|
||||||
@@ -134,6 +148,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
|
||||||
|
|||||||
@@ -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 -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.6.0
|
appVersion: 1.6.0
|
||||||
description: Sharry allows to share files with others in a simple way. It is a self-hosted web application. The basic concept is to upload files and get a url back that can then be shared.
|
description: Sharry allows to share files with others in a simple way. It is a self-hosted web application. The basic concept is to upload files and get a url back that can then be shared.
|
||||||
name: sharry
|
name: sharry
|
||||||
version: 2.3.1
|
version: 3.0.0
|
||||||
keywords:
|
keywords:
|
||||||
- file sharing
|
- file sharing
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/sharry
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/sharry
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# sharry
|
# sharry
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Sharry allows to share files with others in a simple way. It is a self-hosted web application. The basic concept is to upload files and get a url back that can then be shared.
|
Sharry allows to share files with others in a simple way. It is a self-hosted web application. The basic concept is to upload files and get a url back that can then be shared.
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ Sharry allows to share files with others in a simple way. It is a self-hosted we
|
|||||||
|
|
||||||
| 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
|
||||||
|
|
||||||
@@ -74,33 +74,16 @@ N/A
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| additionalVolumeMounts[0].mountPath | string | `"/opt/sharry.conf"` | |
|
|
||||||
| additionalVolumeMounts[0].name | string | `"sharry-config"` | |
|
|
||||||
| additionalVolumeMounts[0].subPath | string | `"sharry.conf"` | |
|
|
||||||
| additionalVolumes[0].configMap.name | string | `"sharry-config"` | |
|
|
||||||
| additionalVolumes[0].name | string | `"sharry-config"` | |
|
|
||||||
| affinity | object | `{}` | Affinity settings for pod assignment of the GUI |
|
|
||||||
| args[0] | string | `"/opt/sharry.conf"` | |
|
| args[0] | string | `"/opt/sharry.conf"` | |
|
||||||
|
| config | object | see URL to default config | Full list of options https://eikek.github.io/sharry/doc/configure |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| image.repository | string | `"eikek0/sharry"` | sharry image |
|
| image.repository | string | `"eikek0/sharry"` | |
|
||||||
| image.tag | string | `"1.6.0"` | sharry image tag |
|
| image.tag | string | `"1.6.0"` | |
|
||||||
| ingress.annotations."nginx.ingress.kubernetes.io/client-body-buffer-size" | string | `"2048m"` | Nginx client Body Buffer Size |
|
| ingress.annotations."nginx.ingress.kubernetes.io/client-body-buffer-size" | string | `"2048m"` | |
|
||||||
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-body-size" | string | `"2048m"` | Nginx Proxy Body Size |
|
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-body-size" | string | `"2048m"` | |
|
||||||
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-buffering" | string | `"off"` | |
|
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-buffering" | string | `"off"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| nodeSelector | object | `{}` | Node labels for pod assignment of the GUI |
|
| service.port.port | int | `9090` | |
|
||||||
| podAnnotations | object | `{}` | Pod annotations |
|
|
||||||
| resources | object | `{}` | |
|
|
||||||
| service.port.port | int | `9090` | Kubernetes port where the GUI is exposed |
|
|
||||||
| sharry.baseUrl | string | `"http://localhost:9090"` | This is the base URL this application is deployed to. |
|
|
||||||
| sharry.chunkSize | string | `"512K"` | When storing binary data use chunks of this size. |
|
|
||||||
| sharry.jdbcPassword | string | `""` | jdbc Password |
|
|
||||||
| sharry.jdbcUrl | string | `"jdbc:h2://\"${java.io.tmpdir}\"/sharry-demo.db;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE"` | By default a H2 file-based database is configured. You can provide a postgresql or mariadb connection here. |
|
|
||||||
| sharry.jdbcUser | string | `"sa"` | jdbc Username |
|
|
||||||
| sharry.maxSize | string | `"1.5G"` | Maximum size of a share. |
|
|
||||||
| sharry.maxValidity | string | `"365 days"` | Maximum validity for uploads. |
|
|
||||||
| sharry.signup | string | `"open"` | The mode defines if new users can signup or not. It can have three values : open, invite, closed |
|
|
||||||
| tolerations | list | `[]` | Toleration labels for pod assignment of the GUI |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,31 @@
|
|||||||
|
{{/* Make sure all variables are set properly */}}
|
||||||
|
{{- include "common.values.setup" . }}
|
||||||
|
|
||||||
|
{{/* Append the configMap to the additionalVolumes */}}
|
||||||
|
{{- define "sharry.configmap.volume" -}}
|
||||||
|
name: sharry-config
|
||||||
|
configMap:
|
||||||
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volume := include "sharry.configmap.volume" . | fromYaml -}}
|
||||||
|
{{- if $volume -}}
|
||||||
|
{{- $additionalVolumes := append .Values.additionalVolumes $volume }}
|
||||||
|
{{- $_ := set .Values "additionalVolumes" (deepCopy $additionalVolumes) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Append the configMap volume to the additionalVolumeMounts */}}
|
||||||
|
{{- define "sharry.configmap.volumeMount" -}}
|
||||||
|
name: sharry-config
|
||||||
|
mountPath: /opt/sharry.conf
|
||||||
|
subPath: sharry.conf
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volumeMount := include "sharry.configmap.volumeMount" . | fromYaml -}}
|
||||||
|
{{- if $volumeMount -}}
|
||||||
|
{{- $additionalVolumeMounts := append .Values.additionalVolumeMounts $volumeMount }}
|
||||||
|
{{- $_ := set .Values "additionalVolumeMounts" (deepCopy $additionalVolumeMounts) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Render the templates */}}
|
||||||
{{ include "common.all" . }}
|
{{ include "common.all" . }}
|
||||||
|
|||||||
@@ -1,91 +1,9 @@
|
|||||||
|
|
||||||
{{/*
|
|
||||||
Sharry Configuration files.
|
|
||||||
*/}}
|
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: "sharry-config"
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
labels:
|
labels:
|
||||||
{{- include "common.labels" . | nindent 4 }}
|
{{- include "common.labels" . | nindent 4 }}
|
||||||
data:
|
data:
|
||||||
sharry.conf: |
|
sharry.conf: |
|
||||||
sharry.restserver {
|
{{ .Values.config | indent 4 }}
|
||||||
|
|
||||||
{{- if .Values.sharry.baseUrl }}
|
|
||||||
base-url = "{{ .Values.sharry.baseUrl }}"
|
|
||||||
{{ end }}
|
|
||||||
bind {
|
|
||||||
address = "0.0.0.0"
|
|
||||||
port = {{- if .Values.service.port.port }}{{ .Values.service.port.port }}{{ end }}
|
|
||||||
}
|
|
||||||
|
|
||||||
backend {
|
|
||||||
auth {
|
|
||||||
fixed.enabled = true ## enabled admin:admin access
|
|
||||||
}
|
|
||||||
|
|
||||||
jdbc {
|
|
||||||
url = "{{- if .Values.sharry.jdbcUrl }}{{ .Values.sharry.jdbcUrl }}{{ end }}"
|
|
||||||
user = "{{- if .Values.sharry.jdbcUser }}{{ .Values.sharry.jdbcUser }}{{ end }}"
|
|
||||||
password = "{{- if .Values.sharry.jdbcPassword }}{{ .Values.sharry.jdbcPassword }}{{ end }}"
|
|
||||||
}
|
|
||||||
|
|
||||||
webapp {
|
|
||||||
# This is shown in the top right corner of the web application
|
|
||||||
app-name = "Sharry"
|
|
||||||
|
|
||||||
# The icon next to the app-name. Needs to be an URL to a image.
|
|
||||||
app-icon = ""
|
|
||||||
|
|
||||||
# The login and register page displays a logo image, by default
|
|
||||||
# the Sharry logo. This can be changed here. It needs to be an URL
|
|
||||||
# to an image.
|
|
||||||
app-logo = ""
|
|
||||||
|
|
||||||
# This is markdown that is inserted as the footer on each page in
|
|
||||||
# the ui. If left empty, a link to the project is rendered.
|
|
||||||
app-footer = ""
|
|
||||||
|
|
||||||
# Whether to display the footer on each page in the ui. Set it to
|
|
||||||
# false to hide it.
|
|
||||||
app-footer-visible = true
|
|
||||||
|
|
||||||
# Chunk size used for one request. The server will re-chunk the
|
|
||||||
# stream into smaller chunks. But the client can transfer more in
|
|
||||||
# one requests, resulting in faster uploads.
|
|
||||||
#
|
|
||||||
# You might need to adjust this value depending on your setup. A
|
|
||||||
# higher value usually means faster uploads.
|
|
||||||
chunk-size = "100M"
|
|
||||||
|
|
||||||
# Number of milliseconds the client should wait before doing a new
|
|
||||||
# upload attempt after something failed. The length of the array
|
|
||||||
# denotes the number of retries.
|
|
||||||
retry-delays = [0, 3000, 6000, 12000, 24000, 48000]
|
|
||||||
|
|
||||||
# The login page can display a welcome message that is readable by
|
|
||||||
# everyone. The text is processed as markdown.
|
|
||||||
welcome-message = ""
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
share {
|
|
||||||
# When storing binary data use chunks of this size.
|
|
||||||
chunk-size = "{{- if .Values.sharry.chunkSize }}{{ .Values.sharry.chunkSize }}{{ end }}"
|
|
||||||
|
|
||||||
# Maximum size of a share.
|
|
||||||
max-size = "{{- if .Values.sharry.maxSize }}{{ .Values.sharry.maxSize }}{{ end }}"
|
|
||||||
|
|
||||||
# Maximum validity for uploads
|
|
||||||
max-validity = {{- if .Values.sharry.maxValidity }}{{ .Values.sharry.maxValidity }}{{ end }}
|
|
||||||
}
|
|
||||||
|
|
||||||
signup {
|
|
||||||
mode = "{{- if .Values.sharry.signup }}{{ .Values.sharry.signup }}{{ end }}"
|
|
||||||
invite-time = "3 days"
|
|
||||||
invite-password = "generate-invite"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,77 +1,46 @@
|
|||||||
# Default values for sharry.
|
#
|
||||||
|
## IMPORTANT NOTE
|
||||||
|
##
|
||||||
|
## This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
## https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
##
|
||||||
image:
|
image:
|
||||||
# -- sharry image
|
|
||||||
repository: eikek0/sharry
|
repository: eikek0/sharry
|
||||||
# -- sharry image tag
|
|
||||||
tag: 1.6.0
|
tag: 1.6.0
|
||||||
# sharry 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
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
port:
|
port:
|
||||||
# -- Kubernetes port where the GUI is exposed
|
|
||||||
port: 9090
|
port: 9090
|
||||||
|
|
||||||
args:
|
args:
|
||||||
- "/opt/sharry.conf"
|
- "/opt/sharry.conf"
|
||||||
|
|
||||||
sharry:
|
|
||||||
# -- This is the base URL this application is deployed to.
|
|
||||||
baseUrl: "http://localhost:9090"
|
|
||||||
# -- By default a H2 file-based database is configured. You can provide a postgresql or mariadb connection here.
|
|
||||||
jdbcUrl: "jdbc:h2://\"${java.io.tmpdir}\"/sharry-demo.db;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE"
|
|
||||||
# -- jdbc Username
|
|
||||||
jdbcUser: sa
|
|
||||||
# -- jdbc Password
|
|
||||||
jdbcPassword: ""
|
|
||||||
# -- When storing binary data use chunks of this size.
|
|
||||||
chunkSize: "512K"
|
|
||||||
# -- Maximum size of a share.
|
|
||||||
maxSize: "1.5G"
|
|
||||||
# -- Maximum validity for uploads.
|
|
||||||
maxValidity: "365 days"
|
|
||||||
# -- The mode defines if new users can signup or not. It can have three values : open, invite, closed
|
|
||||||
signup: "open"
|
|
||||||
|
|
||||||
# -- Node labels for pod assignment of the GUI
|
|
||||||
nodeSelector: {}
|
|
||||||
|
|
||||||
# -- Toleration labels for pod assignment of the GUI
|
|
||||||
tolerations: []
|
|
||||||
|
|
||||||
# -- Affinity settings for pod assignment of the GUI
|
|
||||||
affinity: {}
|
|
||||||
|
|
||||||
# -- Pod annotations
|
|
||||||
podAnnotations: {}
|
|
||||||
|
|
||||||
additionalVolumes:
|
|
||||||
- name: sharry-config
|
|
||||||
configMap:
|
|
||||||
name: sharry-config
|
|
||||||
additionalVolumeMounts:
|
|
||||||
- name: sharry-config
|
|
||||||
mountPath: /opt/sharry.conf
|
|
||||||
subPath: sharry.conf
|
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
annotations:
|
# -- Enable large file support with those annotations for nginx
|
||||||
# -- Nginx client Body Buffer Size
|
# annotations:
|
||||||
nginx.ingress.kubernetes.io/client-body-buffer-size: "2048m"
|
# nginx.ingress.kubernetes.io/client-body-buffer-size: "2048m"
|
||||||
# -- Nginx Proxy Body Size
|
# nginx.ingress.kubernetes.io/proxy-body-size: "2048m"
|
||||||
nginx.ingress.kubernetes.io/proxy-body-size: "2048m"
|
# nginx.ingress.kubernetes.io/proxy-buffering: "off"
|
||||||
nginx.ingress.kubernetes.io/proxy-buffering: "off"
|
|
||||||
|
# -- Full list of options https://eikek.github.io/sharry/doc/configure
|
||||||
|
# @default -- see URL to default config
|
||||||
|
config: |
|
||||||
|
sharry.restserver {
|
||||||
|
# base-url = "https://sharry.${DOMAIN}"
|
||||||
|
bind {
|
||||||
|
address = "0.0.0.0"
|
||||||
|
port = 9090
|
||||||
|
}
|
||||||
|
backend {
|
||||||
|
auth {
|
||||||
|
fixed {
|
||||||
|
enabled = false # set to true to enable this auth provider
|
||||||
|
user = "admin"
|
||||||
|
password = "admin"
|
||||||
|
order = 10
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,13 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: 1.1.2
|
appVersion: 1.1.2
|
||||||
description: Manage hardware resource allocation without a need for privileged containers
|
description: Manage hardware resource allocation without a need for privileged containers
|
||||||
name: smarter-device-manager
|
name: smarter-device-manager
|
||||||
version: 3.3.1
|
version: 3.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- kubernetes
|
- kubernetes
|
||||||
- cluster
|
- cluster
|
||||||
- hardware
|
- hardware
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/smarter-device-manager
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/smarter-device-manager
|
||||||
|
icon: https://assets.gitlab-static.net/uploads/-/system/group/avatar/6339043/smarter-sticker-nologo.png
|
||||||
sources:
|
sources:
|
||||||
- https://gitlab.com/arm-research/smarter/smarter-device-manager/
|
- https://gitlab.com/arm-research/smarter/smarter-device-manager/
|
||||||
- https://github.com/k8s-at-home/charts
|
- https://github.com/k8s-at-home/charts
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# smarter-device-manager
|
# smarter-device-manager
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Manage hardware resource allocation without a need for privileged containers
|
Manage hardware resource allocation without a need for privileged containers
|
||||||
|
|
||||||
@@ -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
|
||||||
|
|
||||||
@@ -133,6 +133,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
|
||||||
@@ -147,6 +161,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
|
||||||
|
|||||||
@@ -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,11 +2,12 @@ apiVersion: v2
|
|||||||
appVersion: latest
|
appVersion: latest
|
||||||
description: An organizer for your porn, written in Go
|
description: An organizer for your porn, written in Go
|
||||||
name: stash
|
name: stash
|
||||||
version: 1.2.1
|
version: 1.2.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- porn
|
- porn
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/stash
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/stash
|
||||||
|
icon: https://raw.githubusercontent.com/stashapp/website/master/images/stash.svg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/stashapp/stash
|
- https://github.com/stashapp/stash
|
||||||
- https://hub.docker.com/r/stashapp/stash
|
- https://hub.docker.com/r/stashapp/stash
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# stash
|
# stash
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
An organizer for your porn, written in Go
|
An organizer for your porn, written in Go
|
||||||
|
|
||||||
@@ -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).
|
||||||
|
|
||||||
|
### [1.2.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
|
||||||
|
|
||||||
|
[1.2.2]: #1.2.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.2.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
|
||||||
|
|
||||||
|
[1.2.2]: #1.2.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: v0.90.74
|
appVersion: v0.90.74
|
||||||
description: Status page for monitoring your websites and applications
|
description: Status page for monitoring your websites and applications
|
||||||
name: statping
|
name: statping
|
||||||
version: 3.3.1
|
version: 3.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- statping
|
- statping
|
||||||
- status
|
- status
|
||||||
- status-page
|
- status-page
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/statping
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/statping
|
||||||
icon: https://github.com/statping/statping/blob/dev/frontend/src/assets/logo.png?raw=true
|
icon: https://avatars.githubusercontent.com/u/61949049?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/statping/statping
|
- https://github.com/statping/statping
|
||||||
maintainers:
|
maintainers:
|
||||||
@@ -22,6 +22,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,6 +1,6 @@
|
|||||||
# statping
|
# statping
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Status page for monitoring your websites and applications
|
Status page for monitoring your websites and applications
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.3.15 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.3.15 |
|
||||||
| 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,7 +89,7 @@ N/A
|
|||||||
| env.VIRTUAL_HOST | string | `""` | External URL you use to connect to the statping (the one you enter in your browser) |
|
| env.VIRTUAL_HOST | string | `""` | External URL you use to connect to the statping (the one you enter in your browser) |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| image.repository | string | `"statping/statping"` | |
|
| image.repository | string | `"statping/statping"` | |
|
||||||
| image.tag | string | `v0.90.74` | |
|
| image.tag | string | `"v0.90.65"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
| persistence | object | see bellow | Generated application config.yaml and logs are written here. Usually does not need to be persisted. |
|
| persistence | object | see bellow | Generated application config.yaml and logs are written here. Usually does not need to be persisted. |
|
||||||
| postgresql | object | see bellow | Bitnami postgres chart. For more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql |
|
| postgresql | object | see bellow | Bitnami postgres chart. For more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql |
|
||||||
@@ -107,6 +107,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
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.0.0]
|
### [2.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -122,6 +136,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
|
||||||
[2.0.0]: #2.0.0
|
[2.0.0]: #2.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -131,3 +146,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Ask a [question](https://github.com/k8s-at-home/organization/discussions)
|
- Ask a [question](https://github.com/k8s-at-home/organization/discussions)
|
||||||
- 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)
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.0.0]
|
### [2.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -24,5 +38,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
|
||||||
[2.0.0]: #2.0.0
|
[2.0.0]: #2.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: 1.15.1
|
appVersion: 1.15.1
|
||||||
description: Open Source Continuous File Synchronization
|
description: Open Source Continuous File Synchronization
|
||||||
name: syncthing
|
name: syncthing
|
||||||
version: 1.1.1
|
version: 1.1.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- syncthing
|
- syncthing
|
||||||
- file sync
|
- file sync
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/syncthing
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/syncthing
|
||||||
icon: https://syncthing.net/img/logo-horizontal.svg
|
icon: https://github.com/syncthing/syncthing/raw/main/assets/logo-128.png
|
||||||
sources:
|
sources:
|
||||||
- https://syncthing.net/
|
- https://syncthing.net/
|
||||||
- https://github.com/syncthing/syncthing
|
- https://github.com/syncthing/syncthing
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# syncthing
|
# syncthing
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Open Source Continuous File Synchronization
|
Open Source Continuous File Synchronization
|
||||||
|
|
||||||
@@ -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
|
||||||
|
|
||||||
@@ -108,6 +108,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
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -122,6 +136,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.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.1.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
|
||||||
|
|
||||||
|
[1.1.2]: #1.1.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v1.9
|
appVersion: v1.9
|
||||||
description: Teedy is an open source, lightweight document management system for individuals and businesses.
|
description: Teedy is an open source, lightweight document management system for individuals and businesses.
|
||||||
name: teedy
|
name: teedy
|
||||||
version: 3.3.1
|
version: 3.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- teedy
|
- teedy
|
||||||
@@ -21,6 +21,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,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v1.22.0
|
appVersion: v1.22.0
|
||||||
description: A self-hosted data logger for your Tesla 🚘
|
description: A self-hosted data logger for your Tesla 🚘
|
||||||
name: teslamate
|
name: teslamate
|
||||||
version: 3.6.5
|
version: 3.7.0
|
||||||
keywords:
|
keywords:
|
||||||
- teslamate
|
- teslamate
|
||||||
- tesla
|
- tesla
|
||||||
@@ -12,7 +12,7 @@ sources:
|
|||||||
- https://github.com/adriankumpf/teslamate
|
- https://github.com/adriankumpf/teslamate
|
||||||
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
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|||||||
@@ -2,12 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: v4.11
|
appVersion: v4.11
|
||||||
description: Traccar is an open source GPS tracking system.
|
description: Traccar is an open source GPS tracking system.
|
||||||
name: traccar
|
name: traccar
|
||||||
version: 4.3.1
|
version: 4.3.3
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- traccar
|
- traccar
|
||||||
- gps
|
- gps
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/traccar
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/traccar
|
||||||
|
icon: "https://github.com/traccar/traccar-web/raw/master/web/icon.png"
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/traccar/traccar
|
- https://github.com/traccar/traccar
|
||||||
- https://hub.docker.com/r/traccar/traccar
|
- https://hub.docker.com/r/traccar/traccar
|
||||||
@@ -19,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: mariadb
|
- name: mariadb
|
||||||
version: 9.3.6
|
version: 9.3.9
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# traccar
|
# traccar
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Traccar is an open source GPS tracking system.
|
Traccar is an open source GPS tracking system.
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.3.6 |
|
| https://charts.bitnami.com/bitnami | mariadb | 9.3.6 |
|
||||||
| 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).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -116,6 +130,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
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user