Compare commits
25 Commits
bookstack-
...
stash-1.2.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29ae29acf9 | ||
|
|
fedf396ed3 | ||
|
|
60819426c1 | ||
|
|
84ab22ed6b | ||
|
|
6ee5e4054c | ||
|
|
a16132ba7d | ||
|
|
4bde90909a | ||
|
|
590bb3f597 | ||
|
|
110a4d4d82 | ||
|
|
a9898bb895 | ||
|
|
e6718e2234 | ||
|
|
a98f42b657 | ||
|
|
8394533292 | ||
|
|
f5e0e308b9 | ||
|
|
9a6dd78778 | ||
|
|
66a7ab60e2 | ||
|
|
e145839479 | ||
|
|
c89748678f | ||
|
|
c2a547db04 | ||
|
|
2a88f60800 | ||
|
|
d55b98d49e | ||
|
|
bcb2c84cfa | ||
|
|
34edb83ab8 | ||
|
|
068bb15c54 | ||
|
|
7241334173 |
108
.github/workflows/charts-lint-test.yaml
vendored
108
.github/workflows/charts-lint-test.yaml
vendored
@@ -82,86 +82,10 @@ jobs:
|
|||||||
echo "::set-output name=detected::true"
|
echo "::set-output name=detected::true"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
check_version:
|
|
||||||
needs:
|
|
||||||
- changes-lint
|
|
||||||
if: |
|
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]') &&
|
|
||||||
needs.changes-lint.outputs.detected == 'true'
|
|
||||||
name: Check chart version numbers
|
|
||||||
strategy:
|
|
||||||
matrix: ${{ fromJson(needs.changes-lint.outputs.matrix) }}
|
|
||||||
fail-fast: true
|
|
||||||
max-parallel: 15
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Get version
|
|
||||||
id: version-get
|
|
||||||
run: |
|
|
||||||
shopt -s extglob
|
|
||||||
OUTPUT=$(helm inspect chart ${{ matrix.chart }} | grep "^version:")
|
|
||||||
VERSION=${OUTPUT#"version:"}
|
|
||||||
echo "::set-output name=version::${VERSION##*( )}"
|
|
||||||
shopt -u extglob
|
|
||||||
|
|
||||||
- name: Parse version
|
|
||||||
id: version-parse
|
|
||||||
uses: apexskier/github-semver-parse@v1
|
|
||||||
with:
|
|
||||||
version: ${{ steps.version-get.outputs.version }}
|
|
||||||
|
|
||||||
- name: Check version
|
|
||||||
id: version-check
|
|
||||||
run: |
|
|
||||||
if [[ ${{ matrix.chart }} =~ ^charts\/(.*)\/.* ]]; then
|
|
||||||
TYPE="${BASH_REMATCH[1]}"
|
|
||||||
case $TYPE in
|
|
||||||
stable)
|
|
||||||
if [[ ${{ steps.version-parse.outputs.major }} -lt 1 ]]; then
|
|
||||||
echo "::error file=${{ matrix.chart }}::Chart version for \"$TYPE\" charts must be >= 1.0.0"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
incubator)
|
|
||||||
if [[ ${{ steps.version-parse.outputs.major }} -gt 0 ]]; then
|
|
||||||
echo "::error file=${{ matrix.chart }}::Chart version for \"$TYPE\" charts must be < 1.0.0"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "::error file=${{ matrix.chart }}::Unhandled chart type: $TYPE"
|
|
||||||
exit 1
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
|
||||||
check_version_success:
|
|
||||||
needs:
|
|
||||||
- changes-lint
|
|
||||||
- check_version
|
|
||||||
if: ${{ always() }}
|
|
||||||
name: Version check successful
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Check Version matrix status
|
|
||||||
if: ${{ !contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-lint.outputs.detected == 'true' && needs.check_version.result != 'success' }}
|
|
||||||
run: |
|
|
||||||
exit 1
|
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
needs:
|
needs:
|
||||||
- changes-lint
|
- changes-lint
|
||||||
if: |
|
if: "!contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-lint.outputs.detected == 'true'"
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
&&
|
|
||||||
needs.changes-lint.outputs.detected == 'true'
|
|
||||||
name: Lint charts
|
name: Lint charts
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
@@ -186,24 +110,10 @@ jobs:
|
|||||||
id: lint
|
id: lint
|
||||||
run: ct lint --config .github/ct-lint.yaml
|
run: ct lint --config .github/ct-lint.yaml
|
||||||
|
|
||||||
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
|
||||||
lint_success:
|
|
||||||
needs:
|
|
||||||
- changes-lint
|
|
||||||
- lint
|
|
||||||
if: ${{ always() }}
|
|
||||||
name: Lint successful
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Check lint matrix status
|
|
||||||
if: ${{ !contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-lint.outputs.detected == 'true' && needs.lint.result != 'success' }}
|
|
||||||
run: exit 1
|
|
||||||
|
|
||||||
unittest:
|
unittest:
|
||||||
needs:
|
needs:
|
||||||
- lint_success
|
- lint
|
||||||
if: |
|
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
name: Run unit tests
|
name: Run unit tests
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
@@ -238,12 +148,8 @@ jobs:
|
|||||||
install:
|
install:
|
||||||
needs:
|
needs:
|
||||||
- changes-install
|
- changes-install
|
||||||
- check_version_success
|
- lint
|
||||||
- lint_success
|
if: "!contains(github.event.head_commit.message, '[ci-skip]') && needs.changes-install.outputs.detected == 'true'"
|
||||||
if: |
|
|
||||||
!contains(github.event.head_commit.message, '[ci-skip]')
|
|
||||||
&&
|
|
||||||
needs.changes-install.outputs.detected == 'true'
|
|
||||||
name: Install charts
|
name: Install charts
|
||||||
strategy:
|
strategy:
|
||||||
matrix: ${{ fromJson(needs.changes-install.outputs.matrix) }}
|
matrix: ${{ fromJson(needs.changes-install.outputs.matrix) }}
|
||||||
@@ -282,7 +188,7 @@ jobs:
|
|||||||
|
|
||||||
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
||||||
install_success:
|
install_success:
|
||||||
needs:
|
needs:
|
||||||
- changes-install
|
- changes-install
|
||||||
- install
|
- install
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
|
|||||||
22
.github/workflows/charts-release.yaml
vendored
22
.github/workflows/charts-release.yaml
vendored
@@ -1,5 +1,7 @@
|
|||||||
name: "Charts: Release"
|
name: "Charts: Release"
|
||||||
|
|
||||||
|
concurrency: helm-release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
@@ -13,30 +15,10 @@ on:
|
|||||||
- '!charts/**/README_CONFIG.md.gotmpl'
|
- '!charts/**/README_CONFIG.md.gotmpl'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pre-release:
|
|
||||||
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
timeout-minutes: 5
|
|
||||||
steps:
|
|
||||||
- name: Block concurrent jobs
|
|
||||||
uses: softprops/turnstyle@v1
|
|
||||||
with:
|
|
||||||
continue-after-seconds: 180
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
||||||
needs: pre-release
|
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Block concurrent jobs
|
|
||||||
uses: softprops/turnstyle@v1
|
|
||||||
with:
|
|
||||||
continue-after-seconds: 180
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
|||||||
38
.github/workflows/pre-commit-check.yaml
vendored
Normal file
38
.github/workflows/pre-commit-check.yaml
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
name: "Pre-commit consistency check"
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
pre-commit-check:
|
||||||
|
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
|
||||||
|
name: Run pre-commit checks
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- uses: dorny/paths-filter@v2
|
||||||
|
id: filter
|
||||||
|
with:
|
||||||
|
list-files: shell
|
||||||
|
filters: |
|
||||||
|
addedOrModified:
|
||||||
|
- added|modified: '**'
|
||||||
|
|
||||||
|
# run only if changed files were detected
|
||||||
|
- name: Run against changes
|
||||||
|
uses: pre-commit/action@v2.0.3
|
||||||
|
if: steps.filter.outputs.addedOrModified == 'true'
|
||||||
|
with:
|
||||||
|
extra_args: --files ${{ steps.filter.outputs.addedOrModified_files }}
|
||||||
|
|
||||||
|
# run if no changed files were detected (e.g. workflow_dispatch on master branch)
|
||||||
|
- name: Run against all files
|
||||||
|
uses: pre-commit/action@v2.0.3
|
||||||
|
if: steps.filter.outputs.addedOrModified != 'true'
|
||||||
|
with:
|
||||||
|
extra_args: --all-files
|
||||||
@@ -7,15 +7,11 @@ repos:
|
|||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
- id: fix-byte-order-marker
|
- id: fix-byte-order-marker
|
||||||
- id: mixed-line-ending
|
- id: mixed-line-ending
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- id: check-case-conflict
|
||||||
|
|
||||||
- repo: local
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
||||||
|
rev: v1.1.10
|
||||||
hooks:
|
hooks:
|
||||||
- id: ct-lint
|
- id: remove-crlf
|
||||||
name: "Chart Test: Lint"
|
- id: remove-tabs
|
||||||
language: docker_image
|
|
||||||
pass_filenames: false
|
|
||||||
types: ['file']
|
|
||||||
files: '^charts/.*(\.ya?ml|\.tpl|\.helmignore|NOTES.txt)'
|
|
||||||
entry: -u 0 quay.io/helmpack/chart-testing:v3.0.0 ct
|
|
||||||
args:
|
|
||||||
- lint
|
|
||||||
|
|||||||
2
Gemfile
2
Gemfile
@@ -7,6 +7,6 @@ group :test do
|
|||||||
gem 'minitest', "5.14.4"
|
gem 'minitest', "5.14.4"
|
||||||
gem 'minitest-implicit-subject'
|
gem 'minitest-implicit-subject'
|
||||||
gem 'minitest-reporters', "1.4.3"
|
gem 'minitest-reporters', "1.4.3"
|
||||||
gem 'pry', "0.14.0"
|
gem 'pry', "0.14.1"
|
||||||
gem 'ruby-jq'
|
gem 'ruby-jq'
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,17 +1,21 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: comcast
|
name: comcast
|
||||||
version: 3.0.3
|
version: 4.0.0
|
||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: periodic comcast data usage checks and save the results to InfluxDB
|
description: periodic comcast data usage checks and save the results to InfluxDB
|
||||||
keywords:
|
keywords:
|
||||||
- comcast
|
- comcast
|
||||||
- influxdb
|
- influxdb
|
||||||
- xfinity
|
- xfinity
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/comcast
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/comcast
|
||||||
icon: https://i.imgur.com/iR1dUpp.png
|
icon: https://i.imgur.com/iR1dUpp.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/billimek/comcastUsage-for-influxdb
|
- https://github.com/billimek/comcastUsage-for-influxdb
|
||||||
- https://github.com/k8s-at-home/charts
|
- https://github.com/k8s-at-home/charts
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# comcast
|
# comcast
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
periodic comcast data usage checks and save the results to InfluxDB
|
periodic comcast data usage checks and save the results to InfluxDB
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ periodic comcast data usage checks and save the results to InfluxDB
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -81,21 +82,13 @@ helm install comcast k8s-at-home/comcast -f values.yaml
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| config.comcast.password | string | `"somepassword"` | Comcast website login password |
|
| config | string | string | comcast's config.ini configuration |
|
||||||
| config.comcast.username | string | `"someuser"` | Comcast website login username |
|
| env | object | `{}` | |
|
||||||
| config.delay | int | `3600` | how many seconds to wait between checks |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| config.influxdb.database | string | `"comcast"` | InfluxDB database |
|
| image.repository | string | `"billimek/comcastusage-for-influxdb"` | |
|
||||||
| config.influxdb.host | string | `"influxdb-influxdb"` | InfluxDB hostname |
|
| image.tag | string | `"latest"` | |
|
||||||
| config.influxdb.port | int | `8086` | InfluxDB port |
|
| service.enabled | bool | `false` | |
|
||||||
| config.influxdb.ssl | bool | `false` | InfluxDB connection using SSL |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
| debug | bool | `false` | Display debugging output |
|
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | Comcast image pull policy |
|
|
||||||
| image.repository | string | `"billimek/comcastusage-for-influxdb"` | Comcast image |
|
|
||||||
| image.tag | string | `"latest"` | Comcast image tag |
|
|
||||||
| nodeSelector | object | `{}` | |
|
|
||||||
| podAnnotations | object | `{}` | Key-value pairs to add as pod annotations |
|
|
||||||
| replicaCount | int | `1` | |
|
|
||||||
| resources | object | `{}` | |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -103,6 +96,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -117,6 +124,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -127,4 +135,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,7 +1 @@
|
|||||||
You can connect to the container running comcast. To open a shell session in the pod run the following:
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
|
|
||||||
- kubectl exec -i -t --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "comcast.fullname" . }} -o jsonpath='{.items[0].metadata.name}') /bin/sh
|
|
||||||
|
|
||||||
To trail the logs for the comcast pod run the following:
|
|
||||||
|
|
||||||
- kubectl logs -f --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "comcast.fullname" . }} -o jsonpath='{ .items[0].metadata.name }')
|
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
{{/* vim: set filetype=mustache: */}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Expand the name of the chart.
|
|
||||||
*/}}
|
|
||||||
{{- define "comcast.name" -}}
|
|
||||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create a default fully qualified app name.
|
|
||||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
||||||
If release name contains chart name it will be used as a full name.
|
|
||||||
*/}}
|
|
||||||
{{- define "comcast.fullname" -}}
|
|
||||||
{{- if .Values.fullnameOverride -}}
|
|
||||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
||||||
{{- if contains $name .Release.Name -}}
|
|
||||||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
32
charts/stable/comcast/templates/common.yaml
Normal file
32
charts/stable/comcast/templates/common.yaml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
{{/* Make sure all variables are set properly */}}
|
||||||
|
{{- include "common.values.setup" . }}
|
||||||
|
|
||||||
|
{{/* Append the configMap to the additionalVolumes */}}
|
||||||
|
{{- define "comcast.configmap.volume" -}}
|
||||||
|
name: comcast-settings
|
||||||
|
configMap:
|
||||||
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volume := include "comcast.configmap.volume" . | fromYaml -}}
|
||||||
|
{{- if $volume -}}
|
||||||
|
{{- $additionalVolumes := append .Values.additionalVolumes $volume }}
|
||||||
|
{{- $_ := set .Values "additionalVolumes" (deepCopy $additionalVolumes) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Append the configMap volume to the additionalVolumeMounts */}}
|
||||||
|
{{- define "comcast.configmap.volumeMount" -}}
|
||||||
|
name: comcast-settings
|
||||||
|
mountPath: /src/config.ini
|
||||||
|
subPath: config.ini
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volumeMount := include "comcast.configmap.volumeMount" . | fromYaml -}}
|
||||||
|
{{- if $volumeMount -}}
|
||||||
|
{{- $additionalVolumeMounts := append .Values.additionalVolumeMounts $volumeMount }}
|
||||||
|
{{- $_ := set .Values "additionalVolumeMounts" (deepCopy $additionalVolumeMounts) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Render the templates */}}
|
||||||
|
{{ include "common.all" . }}
|
||||||
@@ -1,32 +1,10 @@
|
|||||||
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ template "comcast.fullname" . }}
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
labels:
|
labels:
|
||||||
app: {{ template "comcast.name" . }}
|
{{- include "common.labels" . | nindent 4 }}
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: "{{ .Release.Name }}"
|
|
||||||
heritage: "{{ .Release.Service }}"
|
|
||||||
data:
|
data:
|
||||||
config.ini: |
|
config.ini: |
|
||||||
[GENERAL]
|
{{- .Values.config | nindent 4 }}
|
||||||
Delay = {{ .Values.config.delay }}
|
|
||||||
{{- if .Values.debug }}
|
|
||||||
Output = True
|
|
||||||
{{- else }}
|
|
||||||
Output = False
|
|
||||||
{{- end }}
|
|
||||||
[INFLUXDB]
|
|
||||||
Address = {{ .Values.config.influxdb.host }}
|
|
||||||
Port = {{ .Values.config.influxdb.port }}
|
|
||||||
Database = {{ .Values.config.influxdb.database }}
|
|
||||||
Username = {{ .Values.config.influxdb.username }}
|
|
||||||
Password = {{ .Values.config.influxdb.password }}
|
|
||||||
{{- if .Values.config.influxdb.ssl }}
|
|
||||||
Verify_SSL = True
|
|
||||||
{{- else }}
|
|
||||||
Verify_SSL = False
|
|
||||||
{{- end }}
|
|
||||||
[COMCAST]
|
|
||||||
Username = {{ .Values.config.comcast.username }}
|
|
||||||
Password = {{ .Values.config.comcast.password }}
|
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ template "comcast.fullname" . }}
|
|
||||||
labels:
|
|
||||||
app: {{ template "comcast.name" . }}
|
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
heritage: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: {{ template "comcast.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
replicas: {{ default 1 .Values.replicas }}
|
|
||||||
revisionHistoryLimit: 3
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: {{ template "comcast.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
{{- if .Values.podAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.podAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
resources:
|
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
|
||||||
volumeMounts:
|
|
||||||
- name: {{ template "comcast.name" . }}
|
|
||||||
mountPath: /src/config.ini
|
|
||||||
subPath: config.ini
|
|
||||||
{{- if .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml .Values.nodeSelector | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
volumes:
|
|
||||||
- name: {{ template "comcast.name" . }}
|
|
||||||
configMap:
|
|
||||||
name: {{ template "comcast.fullname" . }}
|
|
||||||
items:
|
|
||||||
- key: config.ini
|
|
||||||
path: config.ini
|
|
||||||
@@ -1,48 +1,45 @@
|
|||||||
# Default values for comcast.
|
#
|
||||||
# This is a YAML-formatted file.
|
# IMPORTANT NOTE
|
||||||
# Declare variables to be passed into your templates.
|
#
|
||||||
replicaCount: 1
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- Comcast image
|
|
||||||
repository: billimek/comcastusage-for-influxdb
|
repository: billimek/comcastusage-for-influxdb
|
||||||
# -- Comcast image tag
|
|
||||||
tag: latest
|
|
||||||
# -- Comcast image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
resources: {}
|
tag: latest
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
||||||
# choice for the user. This also increases chances charts run on environments with little
|
|
||||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
||||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
# requests:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
nodeSelector: {}
|
|
||||||
# -- Display debugging output
|
|
||||||
debug: false
|
|
||||||
config:
|
|
||||||
# -- how many seconds to wait between checks
|
|
||||||
delay: 3600
|
|
||||||
influxdb:
|
|
||||||
# -- InfluxDB hostname
|
|
||||||
host: influxdb-influxdb
|
|
||||||
# -- InfluxDB port
|
|
||||||
port: 8086
|
|
||||||
# -- InfluxDB database
|
|
||||||
database: comcast
|
|
||||||
# username:
|
|
||||||
# password:
|
|
||||||
|
|
||||||
# -- InfluxDB connection using SSL
|
strategy:
|
||||||
ssl: false
|
type: Recreate
|
||||||
comcast:
|
|
||||||
# -- Comcast website login username
|
|
||||||
username: someuser
|
|
||||||
# -- Comcast website login password
|
|
||||||
password: somepassword
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as pod annotations
|
env: {}
|
||||||
podAnnotations: {}
|
|
||||||
|
# -- comcast's config.ini configuration
|
||||||
|
# @default -- string
|
||||||
|
config: |
|
||||||
|
[GENERAL]
|
||||||
|
Delay = 3600
|
||||||
|
Output = False
|
||||||
|
[INFLUXDB]
|
||||||
|
Address = influxdb-influxdb
|
||||||
|
Port = 8086
|
||||||
|
Database = comcast
|
||||||
|
Username =
|
||||||
|
Password =
|
||||||
|
Verify_SSL = False
|
||||||
|
[COMCAST]
|
||||||
|
Username = someuser
|
||||||
|
Password = somepassword
|
||||||
|
|
||||||
|
service:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
## Probes configuration
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: false
|
||||||
|
readiness:
|
||||||
|
enabled: false
|
||||||
|
startup:
|
||||||
|
enabled: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: Cert-Manager Webhook for DNSMadeEasy
|
description: Cert-Manager Webhook for DNSMadeEasy
|
||||||
name: dnsmadeeasy-webhook
|
name: dnsmadeeasy-webhook
|
||||||
version: 2.3.1
|
version: 2.3.2
|
||||||
keywords:
|
keywords:
|
||||||
- cert-manager
|
- cert-manager
|
||||||
- dnsmadeeasy
|
- dnsmadeeasy
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# dnsmadeeasy-webhook
|
# dnsmadeeasy-webhook
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Cert-Manager Webhook for DNSMadeEasy
|
Cert-Manager Webhook for DNSMadeEasy
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ Cert-Manager Webhook for DNSMadeEasy
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -102,6 +102,7 @@ N/A
|
|||||||
| service.port.name | string | `"https"` | |
|
| service.port.name | string | `"https"` | |
|
||||||
| service.port.port | int | `443` | |
|
| service.port.port | int | `443` | |
|
||||||
| service.port.targetPort | int | `4443` | |
|
| service.port.targetPort | int | `4443` | |
|
||||||
|
| serviceAccount.create | bool | `true` | Create service account |
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -139,7 +140,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[1.1.1]: #1.1.1
|
[2.3.2]: #2.3.2
|
||||||
|
|
||||||
|
### [2.3.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Fix: use created service account
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
|||||||
@@ -39,5 +39,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[1.1.1]: #1.1.1
|
[2.3.2]: #2.3.2
|
||||||
|
|
||||||
|
### [2.3.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Fix: use created service account
|
||||||
|
|
||||||
|
[2.3.2]: #2.3.2
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,11 +1,3 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: ServiceAccount
|
|
||||||
metadata:
|
|
||||||
name: {{ include "common.names.fullname" . }}
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
labels:
|
|
||||||
{{- include "common.labels" . | nindent 4 }}
|
|
||||||
---
|
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRole
|
kind: ClusterRole
|
||||||
metadata:
|
metadata:
|
||||||
@@ -35,7 +27,7 @@ roleRef:
|
|||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.fullname" . }}
|
||||||
subjects:
|
subjects:
|
||||||
- kind: ServiceAccount
|
- kind: ServiceAccount
|
||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.serviceAccountName" . }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
---
|
---
|
||||||
# Grant the webhook permission to read the ConfigMap containing the Kubernetes
|
# Grant the webhook permission to read the ConfigMap containing the Kubernetes
|
||||||
@@ -55,7 +47,7 @@ roleRef:
|
|||||||
subjects:
|
subjects:
|
||||||
- apiGroup: ""
|
- apiGroup: ""
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.serviceAccountName" . }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
---
|
---
|
||||||
# apiserver gets the auth-delegator role to delegate auth decisions to
|
# apiserver gets the auth-delegator role to delegate auth decisions to
|
||||||
@@ -73,7 +65,7 @@ roleRef:
|
|||||||
subjects:
|
subjects:
|
||||||
- apiGroup: ""
|
- apiGroup: ""
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
name: {{ include "common.names.fullname" . }}
|
name: {{ include "common.names.serviceAccountName" . }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
---
|
---
|
||||||
# Grant cert-manager permission to validate using our apiserver
|
# Grant cert-manager permission to validate using our apiserver
|
||||||
|
|||||||
@@ -16,6 +16,10 @@ certManager:
|
|||||||
|
|
||||||
# Default values for dnsmadeeasy-webhook.
|
# Default values for dnsmadeeasy-webhook.
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
# -- Create service account
|
||||||
|
create: true
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- Image repository
|
# -- Image repository
|
||||||
repository: ghcr.io/k8s-at-home/dnsmadeeasy-webhook
|
repository: ghcr.io/k8s-at-home/dnsmadeeasy-webhook
|
||||||
|
|||||||
@@ -1,15 +1,19 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v2.0.5.1
|
appVersion: latest
|
||||||
description: Store securely encrypted backups on cloud storage services!
|
description: Store securely encrypted backups on cloud storage services!
|
||||||
name: duplicati
|
name: duplicati
|
||||||
version: 2.1.3
|
version: 3.0.0
|
||||||
keywords:
|
keywords:
|
||||||
- duplicati
|
- duplicati
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/duplicati
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/duplicati
|
||||||
icon: https://i.imgur.com/KjnkhUJ.png
|
icon: https://avatars.githubusercontent.com/u/8270231?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://hub.docker.com/r/linuxserver/duplicati/
|
- https://hub.docker.com/r/linuxserver/duplicati/
|
||||||
- https://github.com/duplicati/duplicati
|
- https://github.com/duplicati/duplicati
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: simoncaron
|
- name: simoncaron
|
||||||
email: simon.caron@protonmail.com
|
email: simon.caron@protonmail.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# duplicati
|
# duplicati
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Store securely encrypted backups on cloud storage services!
|
Store securely encrypted backups on cloud storage services!
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ Store securely encrypted backups on cloud storage services!
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -78,52 +79,22 @@ If you get `Error: rendered manifests contain a resource that already exists. Un
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| affinity | object | `{}` | Affinity settings for pod assignment |
|
| env | object | `{}` | |
|
||||||
| cliArgs | string | `""` | Optionally specify any CLI variables you want to launch the app with |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| deploymentAnnotations | object | `{}` | Key-value pairs to add as deployment annotations |
|
| image.repository | string | `"linuxserver/duplicati"` | |
|
||||||
| fullnameOverride | string | `""` | |
|
| image.tag | string | `"latest"` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
|
| ingress.enabled | bool | `false` | |
|
||||||
| image.repository | string | `"linuxserver/duplicati"` | Image repository |
|
| persistence.backups.emptyDir.enabled | bool | `false` | |
|
||||||
| image.tag | string | `"v2.0.5.1-2.0.5.1_beta_2020-01-18-ls72"` | Image tag. Possible values listed [here](https://hub.docker.com/r/linuxserver/duplicati/tags/). |
|
| persistence.backups.enabled | bool | `false` | |
|
||||||
| ingress.annotations | object | `{}` | Ingress annotations |
|
| persistence.backups.mountPath | string | `"/backups"` | |
|
||||||
| ingress.enabled | bool | `false` | Enables Ingress |
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
| ingress.hosts | list | `["chart-example.local"]` | Ingress accepted hostnames |
|
| persistence.config.enabled | bool | `false` | |
|
||||||
| ingress.labels | object | `{}` | Custom labels |
|
| persistence.config.mountPath | string | `"/config"` | |
|
||||||
| ingress.path | string | `"/"` | Ingress path |
|
| persistence.source.emptyDir.enabled | bool | `false` | |
|
||||||
| ingress.tls | list | `[]` | Ingress TLS configuration |
|
| persistence.source.enabled | bool | `false` | |
|
||||||
| nameOverride | string | `""` | |
|
| persistence.source.mountPath | string | `"/source"` | |
|
||||||
| nodeSelector | object | `{}` | Node labels for pod assignment |
|
| service.port.port | int | `8200` | |
|
||||||
| persistence.backups.accessMode | string | `"ReadWriteOnce"` | Use an existing PVC to persist data existingClaim: your-claim -- Persistence access mode |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
| persistence.backups.enabled | bool | `true` | Use persistent volume to store backups data |
|
|
||||||
| persistence.backups.size | string | `"1Gi"` | Size of persistent volume claim |
|
|
||||||
| persistence.backups.skipuninstall | bool | `false` | Do not delete the pvc upon helm uninstall |
|
|
||||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | Use an existing PVC to persist data existingClaim: your-claim -- Persistence access mode |
|
|
||||||
| persistence.config.enabled | bool | `true` | Use persistent volume to store configuration data |
|
|
||||||
| persistence.config.size | string | `"1Gi"` | Size of persistent volume claim |
|
|
||||||
| persistence.config.skipuninstall | bool | `false` | Do not delete the pvc upon helm uninstall |
|
|
||||||
| persistence.extraExistingClaimMounts | list | `[]` | Optionally add multiple existing claims |
|
|
||||||
| persistence.source.accessMode | string | `"ReadWriteOnce"` | Use an existing PVC to persist data existingClaim: your-claim -- Persistence access mode |
|
|
||||||
| persistence.source.enabled | bool | `true` | Use persistent volume to store source data |
|
|
||||||
| persistence.source.size | string | `"1Gi"` | Size of persistent volume claim |
|
|
||||||
| persistence.source.skipuninstall | bool | `false` | Do not delete the pvc upon helm uninstall |
|
|
||||||
| pgid | int | `1001` | Process groupID the duplicati instance should run as |
|
|
||||||
| podAnnotations | object | `{}` | Key-value pairs to add as pod annotations |
|
|
||||||
| probes.liveness.failureThreshold | int | `5` | Specify liveness `failureThreshold` parameter for the deployment |
|
|
||||||
| probes.liveness.initialDelaySeconds | int | `60` | Specify liveness `initialDelaySeconds` parameter for the deployment |
|
|
||||||
| probes.liveness.timeoutSeconds | int | `10` | Specify liveness `timeoutSeconds` parameter for the deployment |
|
|
||||||
| probes.readiness.failureThreshold | int | `5` | Specify readiness `failureThreshold` parameter for the deployment |
|
|
||||||
| probes.readiness.initialDelaySeconds | int | `60` | Specify readiness `initialDelaySeconds` parameter for the deployment |
|
|
||||||
| probes.readiness.timeoutSeconds | int | `10` | Specify readiness `timeoutSeconds` parameter for the deployment |
|
|
||||||
| puid | int | `1001` | Process userID the duplicati instance should run as |
|
|
||||||
| resources | object | `{}` | CPU/Memory resource requests/limits |
|
|
||||||
| service.annotations | object | `{}` | Service annotations for the duplicati GUI |
|
|
||||||
| service.labels | object | `{}` | Custom labels |
|
|
||||||
| service.loadBalancerIP | string | `nil` | Loadbalance IP for the duplicati GUI |
|
|
||||||
| service.port | int | `8200` | Kubernetes port where the duplicati GUI is exposed |
|
|
||||||
| service.type | string | `"ClusterIP"` | Kubernetes service type for the duplicati GUI |
|
|
||||||
| strategyType | string | `"Recreate"` | Specifies the strategy used to replace old Pods by new ones |
|
|
||||||
| timezone | string | `"UTC"` | Timezone the duplicati instance should run as, e.g. 'America/New_York' |
|
|
||||||
| tolerations | list | `[]` | Toleration labels for pod assignment |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -131,6 +102,22 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [3.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
- Updated icon.
|
||||||
|
- Changed image tag to latest
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.1.1]
|
### [2.1.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -145,6 +132,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.0.0]: #3.0.0
|
||||||
[2.1.1]: #2.1.1
|
[2.1.1]: #2.1.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -155,4 +143,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
@@ -9,6 +9,22 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [3.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
- Updated icon.
|
||||||
|
- Changed image tag to latest
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [2.1.1]
|
### [2.1.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +39,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[3.0.0]: #3.0.0
|
||||||
[2.1.1]: #2.1.1
|
[2.1.1]: #2.1.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,19 +1 @@
|
|||||||
1. Get the application URL by running these commands:
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
{{- if .Values.ingress.enabled }}
|
|
||||||
{{- range .Values.ingress.hosts }}
|
|
||||||
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }}
|
|
||||||
{{- end }}
|
|
||||||
{{- else if contains "NodePort" .Values.service.type }}
|
|
||||||
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "duplicati.fullname" . }})
|
|
||||||
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
||||||
echo http://$NODE_IP:$NODE_PORT
|
|
||||||
{{- else if contains "LoadBalancer" .Values.service.type }}
|
|
||||||
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
||||||
You can watch the status of by running 'kubectl get svc -w {{ include "duplicati.fullname" . }}'
|
|
||||||
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "duplicati.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
|
|
||||||
echo http://$SERVICE_IP:{{ .Values.service.port }}
|
|
||||||
{{- else if contains "ClusterIP" .Values.service.type }}
|
|
||||||
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "duplicati.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
|
|
||||||
echo "Visit http://127.0.0.1:8080 to use your application"
|
|
||||||
kubectl port-forward $POD_NAME 8080:8200
|
|
||||||
{{- end }}
|
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
{{/* vim: set filetype=mustache: */}}
|
|
||||||
{{/*
|
|
||||||
Expand the name of the chart.
|
|
||||||
*/}}
|
|
||||||
{{- define "duplicati.name" -}}
|
|
||||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create a default fully qualified app name.
|
|
||||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
||||||
If release name contains chart name it will be used as a full name.
|
|
||||||
*/}}
|
|
||||||
{{- define "duplicati.fullname" -}}
|
|
||||||
{{- if .Values.fullnameOverride -}}
|
|
||||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
||||||
{{- if contains $name .Release.Name -}}
|
|
||||||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create chart name and version as used by the chart label.
|
|
||||||
*/}}
|
|
||||||
{{- define "duplicati.chart" -}}
|
|
||||||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
{{- if and .Values.persistence.backups.enabled (not .Values.persistence.backups.existingClaim) }}
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}-backups
|
|
||||||
{{- if .Values.persistence.backups.skipuninstall }}
|
|
||||||
annotations:
|
|
||||||
"helm.sh/resource-policy": keep
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- {{ .Values.persistence.backups.accessMode | quote }}
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.backups.size | quote }}
|
|
||||||
{{- if .Values.persistence.backups.storageClass }}
|
|
||||||
{{- if (eq "-" .Values.persistence.backups.storageClass) }}
|
|
||||||
storageClassName: ""
|
|
||||||
{{- else }}
|
|
||||||
storageClassName: "{{ .Values.persistence.backups.storageClass }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end -}}
|
|
||||||
1
charts/stable/duplicati/templates/common.yaml
Normal file
1
charts/stable/duplicati/templates/common.yaml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{ include "common.all" . }}
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
{{- if and .Values.persistence.config.enabled (not .Values.persistence.config.existingClaim) }}
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}-config
|
|
||||||
{{- if .Values.persistence.config.skipuninstall }}
|
|
||||||
annotations:
|
|
||||||
"helm.sh/resource-policy": keep
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- {{ .Values.persistence.config.accessMode | quote }}
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.config.size | quote }}
|
|
||||||
{{- if .Values.persistence.config.storageClass }}
|
|
||||||
{{- if (eq "-" .Values.persistence.config.storageClass) }}
|
|
||||||
storageClassName: ""
|
|
||||||
{{- else }}
|
|
||||||
storageClassName: "{{ .Values.persistence.config.storageClass }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end -}}
|
|
||||||
@@ -1,130 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ include "duplicati.fullname" . }}
|
|
||||||
{{- if .Values.deploymentAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.deploymentAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
revisionHistoryLimit: 3
|
|
||||||
strategy:
|
|
||||||
type: {{ .Values.strategyType }}
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
{{- if .Values.podAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.podAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
containerPort: 8200
|
|
||||||
protocol: TCP
|
|
||||||
livenessProbe:
|
|
||||||
tcpSocket:
|
|
||||||
port: http
|
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
|
||||||
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
|
|
||||||
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
|
|
||||||
readinessProbe:
|
|
||||||
tcpSocket:
|
|
||||||
port: http
|
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
|
||||||
failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
|
|
||||||
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
|
|
||||||
env:
|
|
||||||
- name: TZ
|
|
||||||
value: "{{ .Values.timezone }}"
|
|
||||||
- name: PUID
|
|
||||||
value: "{{ .Values.puid }}"
|
|
||||||
- name: PGID
|
|
||||||
value: "{{ .Values.pgid }}"
|
|
||||||
- name: CLI_ARGS
|
|
||||||
value: "{{ .Values.cliArgs }}"
|
|
||||||
volumeMounts:
|
|
||||||
- mountPath: /config
|
|
||||||
name: config
|
|
||||||
- mountPath: /source
|
|
||||||
name: source
|
|
||||||
{{- if .Values.persistence.source.subPath }}
|
|
||||||
subPath: {{ .Values.persistence.source.subPath }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.additionalVolumeMounts }}
|
|
||||||
{{- toYaml .Values.additionalVolumeMounts | nindent 12}}
|
|
||||||
{{- end }}
|
|
||||||
- mountPath: /backups
|
|
||||||
name: backups
|
|
||||||
{{- if .Values.persistence.backups.subPath }}
|
|
||||||
subPath: {{ .Values.persistence.backups.subPath }}
|
|
||||||
{{- end }}
|
|
||||||
{{- range .Values.persistence.extraExistingClaimMounts }}
|
|
||||||
- name: {{ .name }}
|
|
||||||
mountPath: {{ .mountPath }}
|
|
||||||
readOnly: {{ .readOnly }}
|
|
||||||
{{- end }}
|
|
||||||
resources:
|
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
|
||||||
volumes:
|
|
||||||
- name: config
|
|
||||||
{{- if .Values.persistence.config.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ if .Values.persistence.config.existingClaim }}{{ .Values.persistence.config.existingClaim }}{{- else }}{{ template "duplicati.fullname" . }}-config{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
|
||||||
- name: source
|
|
||||||
{{- if .Values.persistence.source.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ if .Values.persistence.source.existingClaim }}{{ .Values.persistence.source.existingClaim }}{{- else }}{{ template "duplicati.fullname" . }}-source{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.additionalVolumes }}
|
|
||||||
{{- toYaml .Values.additionalVolumes | nindent 6}}
|
|
||||||
{{- end }}
|
|
||||||
- name: backups
|
|
||||||
{{- if .Values.persistence.backups.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ if .Values.persistence.backups.existingClaim }}{{ .Values.persistence.backups.existingClaim }}{{- else }}{{ template "duplicati.fullname" . }}-backups{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
|
||||||
{{- range .Values.persistence.extraExistingClaimMounts }}
|
|
||||||
- name: {{ .name }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ .existingClaim }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
{{- if .Values.ingress.enabled -}}
|
|
||||||
{{- $fullName := include "duplicati.fullname" . -}}
|
|
||||||
{{- $ingressPath := .Values.ingress.path -}}
|
|
||||||
apiVersion: extensions/v1beta1
|
|
||||||
kind: Ingress
|
|
||||||
metadata:
|
|
||||||
name: {{ $fullName }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
{{- with .Values.ingress.labels -}}
|
|
||||||
{{ toYaml . | nindent 4 }}
|
|
||||||
{{- end -}}
|
|
||||||
{{- with .Values.ingress.annotations }}
|
|
||||||
annotations:
|
|
||||||
{{ toYaml . | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
{{- if .Values.ingress.tls }}
|
|
||||||
tls:
|
|
||||||
{{- range .Values.ingress.tls }}
|
|
||||||
- hosts:
|
|
||||||
{{- range .hosts }}
|
|
||||||
- {{ . | quote }}
|
|
||||||
{{- end }}
|
|
||||||
secretName: {{ .secretName }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
rules:
|
|
||||||
{{- range .Values.ingress.hosts }}
|
|
||||||
- host: {{ . | quote }}
|
|
||||||
http:
|
|
||||||
paths:
|
|
||||||
- path: {{ $ingressPath }}
|
|
||||||
backend:
|
|
||||||
serviceName: {{ $fullName }}
|
|
||||||
servicePort: http
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
{{- if .Values.service.labels }}
|
|
||||||
{{ toYaml .Values.service.labels | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.service.annotations }}
|
|
||||||
annotations:
|
|
||||||
{{ toYaml . | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
{{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }}
|
|
||||||
type: ClusterIP
|
|
||||||
{{- if .Values.service.clusterIP }}
|
|
||||||
clusterIP: {{ .Values.service.clusterIP }}
|
|
||||||
{{end}}
|
|
||||||
{{- else if eq .Values.service.type "LoadBalancer" }}
|
|
||||||
type: {{ .Values.service.type }}
|
|
||||||
{{- if .Values.service.loadBalancerIP }}
|
|
||||||
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.service.loadBalancerSourceRanges }}
|
|
||||||
loadBalancerSourceRanges:
|
|
||||||
{{ toYaml .Values.service.loadBalancerSourceRanges | indent 4 }}
|
|
||||||
{{- end -}}
|
|
||||||
{{- else }}
|
|
||||||
type: {{ .Values.service.type }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.service.externalIPs }}
|
|
||||||
externalIPs:
|
|
||||||
{{ toYaml .Values.service.externalIPs | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.service.externalTrafficPolicy }}
|
|
||||||
externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }}
|
|
||||||
{{- end }}
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
port: {{ .Values.service.port }}
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: http
|
|
||||||
{{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }}
|
|
||||||
nodePort: {{.Values.service.nodePort}}
|
|
||||||
{{ end }}
|
|
||||||
selector:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
{{- if and .Values.persistence.source.enabled (not .Values.persistence.source.existingClaim) }}
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: {{ template "duplicati.fullname" . }}-source
|
|
||||||
{{- if .Values.persistence.source.skipuninstall }}
|
|
||||||
annotations:
|
|
||||||
"helm.sh/resource-policy": keep
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ include "duplicati.name" . }}
|
|
||||||
helm.sh/chart: {{ include "duplicati.chart" . }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- {{ .Values.persistence.source.accessMode | quote }}
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.source.size | quote }}
|
|
||||||
{{- if .Values.persistence.source.storageClass }}
|
|
||||||
{{- if (eq "-" .Values.persistence.source.storageClass) }}
|
|
||||||
storageClassName: ""
|
|
||||||
{{- else }}
|
|
||||||
storageClassName: "{{ .Values.persistence.source.storageClass }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end -}}
|
|
||||||
@@ -1,166 +1,43 @@
|
|||||||
# Default values for duplicati.
|
#
|
||||||
# This is a YAML-formatted file.
|
# IMPORTANT NOTE
|
||||||
# Declare variables to be passed into your templates.
|
#
|
||||||
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- Image repository
|
|
||||||
repository: linuxserver/duplicati
|
repository: linuxserver/duplicati
|
||||||
# -- Image tag. Possible values listed [here](https://hub.docker.com/r/linuxserver/duplicati/tags/).
|
tag: latest
|
||||||
tag: v2.0.5.1-2.0.5.1_beta_2020-01-18-ls72
|
|
||||||
# -- Image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# -- Specifies the strategy used to replace old Pods by new ones
|
strategy:
|
||||||
strategyType: Recreate
|
type: Recreate
|
||||||
|
|
||||||
# Probes configuration
|
# See more environment variables in the duplicati documentation
|
||||||
probes:
|
# https://hub.docker.com/r/linuxserver/duplicati
|
||||||
liveness:
|
env: {}
|
||||||
# -- Specify liveness `initialDelaySeconds` parameter for the deployment
|
# TZ:
|
||||||
initialDelaySeconds: 60
|
|
||||||
# -- Specify liveness `failureThreshold` parameter for the deployment
|
|
||||||
failureThreshold: 5
|
|
||||||
# -- Specify liveness `timeoutSeconds` parameter for the deployment
|
|
||||||
timeoutSeconds: 10
|
|
||||||
readiness:
|
|
||||||
# -- Specify readiness `initialDelaySeconds` parameter for the deployment
|
|
||||||
initialDelaySeconds: 60
|
|
||||||
# -- Specify readiness `failureThreshold` parameter for the deployment
|
|
||||||
failureThreshold: 5
|
|
||||||
# -- Specify readiness `timeoutSeconds` parameter for the deployment
|
|
||||||
timeoutSeconds: 10
|
|
||||||
|
|
||||||
nameOverride: ""
|
|
||||||
fullnameOverride: ""
|
|
||||||
|
|
||||||
# -- Timezone the duplicati instance should run as, e.g. 'America/New_York'
|
|
||||||
timezone: UTC
|
|
||||||
# -- Process userID the duplicati instance should run as
|
|
||||||
puid: 1001
|
|
||||||
# -- Process groupID the duplicati instance should run as
|
|
||||||
pgid: 1001
|
|
||||||
# -- Optionally specify any CLI variables you want to launch the app with
|
|
||||||
cliArgs: ""
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
# -- Kubernetes service type for the duplicati GUI
|
port:
|
||||||
type: ClusterIP
|
port: 8200
|
||||||
# -- Kubernetes port where the duplicati GUI is exposed
|
|
||||||
port: 8200
|
|
||||||
## Specify the nodePort value for the LoadBalancer and NodePort service types.
|
|
||||||
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
|
|
||||||
##
|
|
||||||
# nodePort:
|
|
||||||
|
|
||||||
# -- Service annotations for the duplicati GUI
|
|
||||||
annotations: {}
|
|
||||||
# -- Custom labels
|
|
||||||
labels: {}
|
|
||||||
# -- Loadbalance IP for the duplicati GUI
|
|
||||||
loadBalancerIP:
|
|
||||||
# -- List of IP CIDRs allowed access to load balancer (if supported)
|
|
||||||
# loadBalancerSourceRanges: []
|
|
||||||
|
|
||||||
## Set the externalTrafficPolicy in the Service to either Cluster or Local
|
|
||||||
# externalTrafficPolicy: Cluster
|
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
# -- Enables Ingress
|
|
||||||
enabled: false
|
enabled: false
|
||||||
# -- Ingress annotations
|
|
||||||
annotations: {}
|
|
||||||
# -- Custom labels
|
|
||||||
labels: {}
|
|
||||||
# -- Ingress path
|
|
||||||
path: /
|
|
||||||
# -- Ingress accepted hostnames
|
|
||||||
hosts:
|
|
||||||
- chart-example.local
|
|
||||||
# -- Ingress TLS configuration
|
|
||||||
tls: []
|
|
||||||
# - secretName: chart-example-tls
|
|
||||||
# hosts:
|
|
||||||
# - chart-example.local
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
# -- Use persistent volume to store configuration data
|
enabled: false
|
||||||
enabled: true
|
emptyDir:
|
||||||
# -- Type of persistent volume claim
|
enabled: false
|
||||||
# storageClass: "-"
|
mountPath: /config
|
||||||
|
|
||||||
# -- Use an existing PVC to persist data
|
|
||||||
# existingClaim: your-claim
|
|
||||||
|
|
||||||
# -- Persistence access mode
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
# -- Size of persistent volume claim
|
|
||||||
size: 1Gi
|
|
||||||
# -- Do not delete the pvc upon helm uninstall
|
|
||||||
skipuninstall: false
|
|
||||||
source:
|
source:
|
||||||
# -- Use persistent volume to store source data
|
enabled: false
|
||||||
enabled: true
|
emptyDir:
|
||||||
# -- Type of persistent volume claim
|
enabled: false
|
||||||
# storageClass: "-"
|
mountPath: /source
|
||||||
|
|
||||||
# -- Use an existing PVC to persist data
|
|
||||||
# existingClaim: your-claim
|
|
||||||
|
|
||||||
# -- Persistence access mode
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
# -- Size of persistent volume claim
|
|
||||||
size: 1Gi
|
|
||||||
# -- Do not delete the pvc upon helm uninstall
|
|
||||||
skipuninstall: false
|
|
||||||
backups:
|
backups:
|
||||||
# -- Use persistent volume to store backups data
|
enabled: false
|
||||||
enabled: true
|
emptyDir:
|
||||||
# -- Type of persistent volume claim
|
enabled: false
|
||||||
# storageClass: "-"
|
mountPath: /backups
|
||||||
|
|
||||||
# -- Use an existing PVC to persist data
|
|
||||||
# existingClaim: your-claim
|
|
||||||
|
|
||||||
# -- Persistence access mode
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
# -- Size of persistent volume claim
|
|
||||||
size: 1Gi
|
|
||||||
# -- Do not delete the pvc upon helm uninstall
|
|
||||||
skipuninstall: false
|
|
||||||
# -- Optionally add multiple existing claims
|
|
||||||
extraExistingClaimMounts: []
|
|
||||||
# - name: external-mount
|
|
||||||
# mountPath: /srv/external-mount
|
|
||||||
## A manually managed Persistent Volume and Claim
|
|
||||||
## If defined, PVC must be created manually before volume will be bound
|
|
||||||
# existingClaim:
|
|
||||||
# readOnly: true
|
|
||||||
|
|
||||||
# -- CPU/Memory resource requests/limits
|
|
||||||
resources: {}
|
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
||||||
# choice for the user. This also increases chances charts run on environments with little
|
|
||||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
||||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
# requests:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
|
|
||||||
# -- Node labels for pod assignment
|
|
||||||
nodeSelector: {}
|
|
||||||
|
|
||||||
# -- Toleration labels for pod assignment
|
|
||||||
tolerations: []
|
|
||||||
|
|
||||||
# -- Affinity settings for pod assignment
|
|
||||||
affinity: {}
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as pod annotations
|
|
||||||
podAnnotations: {}
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as deployment annotations
|
|
||||||
deploymentAnnotations: {}
|
|
||||||
|
|||||||
26
charts/stable/emby/.helmignore
Normal file
26
charts/stable/emby/.helmignore
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# Patterns to ignore when building packages.
|
||||||
|
# This supports shell glob matching, relative path matching, and
|
||||||
|
# negation (prefixed with !). Only one pattern per line.
|
||||||
|
.DS_Store
|
||||||
|
# Common VCS dirs
|
||||||
|
.git/
|
||||||
|
.gitignore
|
||||||
|
.bzr/
|
||||||
|
.bzrignore
|
||||||
|
.hg/
|
||||||
|
.hgignore
|
||||||
|
.svn/
|
||||||
|
# Common backup files
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*~
|
||||||
|
# Various IDEs
|
||||||
|
.project
|
||||||
|
.idea/
|
||||||
|
*.tmproj
|
||||||
|
.vscode/
|
||||||
|
# OWNERS file for Kubernetes
|
||||||
|
OWNERS
|
||||||
|
# helm-docs templates
|
||||||
|
*.gotmpl
|
||||||
23
charts/stable/emby/Chart.yaml
Normal file
23
charts/stable/emby/Chart.yaml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 4.5.4.0
|
||||||
|
description: Emby Server is a home media server
|
||||||
|
name: emby
|
||||||
|
version: 1.0.0
|
||||||
|
kubeVersion: ">=1.16.0-0"
|
||||||
|
keywords:
|
||||||
|
- emby
|
||||||
|
- jellyfin
|
||||||
|
- plex
|
||||||
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/emby
|
||||||
|
icon: https://truecharts.org/_static/img/emby-icon.png
|
||||||
|
sources:
|
||||||
|
- https://github.com/MediaBrowser
|
||||||
|
- https://github.com/k8s-at-home/container-images/tree/main/apps/emby
|
||||||
|
maintainers:
|
||||||
|
- name: nicholaswilde
|
||||||
|
email: ncwilde43@gmail.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
116
charts/stable/emby/README.md
Normal file
116
charts/stable/emby/README.md
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
# emby
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Emby Server is a home media server
|
||||||
|
|
||||||
|
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)**
|
||||||
|
|
||||||
|
## Source Code
|
||||||
|
|
||||||
|
* <https://github.com/MediaBrowser>
|
||||||
|
* <https://github.com/k8s-at-home/container-images/tree/main/apps/emby>
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
Kubernetes: `>=1.16.0-0`
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
| Repository | Name | Version |
|
||||||
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
|
## TL;DR
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm repo add k8s-at-home https://k8s-at-home.com/charts/
|
||||||
|
helm repo update
|
||||||
|
helm install emby k8s-at-home/emby
|
||||||
|
```
|
||||||
|
|
||||||
|
## Installing the Chart
|
||||||
|
|
||||||
|
To install the chart with the release name `emby`
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install emby k8s-at-home/emby
|
||||||
|
```
|
||||||
|
|
||||||
|
## Uninstalling the Chart
|
||||||
|
|
||||||
|
To uninstall the `emby` deployment
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm uninstall emby
|
||||||
|
```
|
||||||
|
|
||||||
|
The command removes all the Kubernetes components associated with the chart **including persistent volumes** and deletes the release.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Read through the [values.yaml](./values.yaml) file. It has several commented out suggested values.
|
||||||
|
Other values may be used from the [values.yaml](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml) from the [common library](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common).
|
||||||
|
|
||||||
|
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install emby \
|
||||||
|
--set env.TZ="America/New York" \
|
||||||
|
k8s-at-home/emby
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install emby k8s-at-home/emby -f values.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
## Custom configuration
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Values
|
||||||
|
|
||||||
|
**Important**: When deploying an application Helm chart you can add more values from our common library chart [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common)
|
||||||
|
|
||||||
|
| Key | Type | Default | Description |
|
||||||
|
|-----|------|---------|-------------|
|
||||||
|
| env | object | `{}` | |
|
||||||
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
|
| image.repository | string | `"ghcr.io/k8s-at-home/emby"` | |
|
||||||
|
| image.tag | string | `"v4.5.4.0"` | |
|
||||||
|
| ingress.enabled | bool | `false` | |
|
||||||
|
| persistence.config.emptyDir.enabled | bool | `false` | |
|
||||||
|
| persistence.config.enabled | bool | `false` | |
|
||||||
|
| persistence.config.mountPath | string | `"/config"` | |
|
||||||
|
| persistence.media.emptyDir.enabled | bool | `false` | |
|
||||||
|
| persistence.media.enabled | bool | `false` | |
|
||||||
|
| persistence.media.mountPath | string | `"/media"` | |
|
||||||
|
| service.additionalPorts[0].name | string | `"https"` | |
|
||||||
|
| service.additionalPorts[0].port | int | `8920` | |
|
||||||
|
| service.additionalPorts[0].protocol | string | `"TCP"` | |
|
||||||
|
| service.port.port | int | `8096` | |
|
||||||
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
All notable changes to this application Helm chart will be documented in this file but does not include changes from our common library. To read those click [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#changelog).
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [1.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial version
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
||||||
|
- Open an [issue](https://github.com/k8s-at-home/charts/issues/new/choose)
|
||||||
|
- Ask a [question](https://github.com/k8s-at-home/organization/discussions)
|
||||||
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
|
----------------------------------------------
|
||||||
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
145
charts/stable/emby/README.md.gotmpl
Normal file
145
charts/stable/emby/README.md.gotmpl
Normal file
@@ -0,0 +1,145 @@
|
|||||||
|
{{- define "custom.repository.organization" -}}
|
||||||
|
k8s-at-home
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.repository.url" -}}
|
||||||
|
https://github.com/k8s-at-home/charts
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.helm.url" -}}
|
||||||
|
https://k8s-at-home.com/charts/
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.helm.path" -}}
|
||||||
|
{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.notes" -}}
|
||||||
|
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)**
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.requirements" -}}
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
{{ template "chart.kubeVersionLine" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.dependencies" -}}
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
{{ template "chart.requirementsTable" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.install.tldr" -}}
|
||||||
|
## TL;DR
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm repo add {{ template "custom.repository.organization" . }} {{ template "custom.helm.url" . }}
|
||||||
|
helm repo update
|
||||||
|
helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }}
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.install" -}}
|
||||||
|
## Installing the Chart
|
||||||
|
|
||||||
|
To install the chart with the release name `{{ template "chart.name" . }}`
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }}
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.uninstall" -}}
|
||||||
|
## Uninstalling the Chart
|
||||||
|
|
||||||
|
To uninstall the `{{ template "chart.name" . }}` deployment
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm uninstall {{ template "chart.name" . }}
|
||||||
|
```
|
||||||
|
|
||||||
|
The command removes all the Kubernetes components associated with the chart **including persistent volumes** and deletes the release.
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.header" -}}
|
||||||
|
## Configuration
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.readValues" -}}
|
||||||
|
Read through the [values.yaml](./values.yaml) file. It has several commented out suggested values.
|
||||||
|
Other values may be used from the [values.yaml](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml) from the [common library](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common).
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.example.set" -}}
|
||||||
|
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install {{ template "chart.name" . }} \
|
||||||
|
--set env.TZ="America/New York" \
|
||||||
|
{{ template "custom.helm.path" . }}
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.configuration.example.file" -}}
|
||||||
|
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart.
|
||||||
|
|
||||||
|
```console
|
||||||
|
helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -f values.yaml
|
||||||
|
```
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.valuesSection" -}}
|
||||||
|
## Values
|
||||||
|
|
||||||
|
**Important**: When deploying an application Helm chart you can add more values from our common library chart [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common)
|
||||||
|
|
||||||
|
{{ template "chart.valuesTable" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.support" -}}
|
||||||
|
## Support
|
||||||
|
|
||||||
|
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
||||||
|
- Open an [issue](https://github.com/k8s-at-home/charts/issues/new/choose)
|
||||||
|
- Ask a [question](https://github.com/k8s-at-home/organization/discussions)
|
||||||
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
|
||||||
|
{{ template "chart.description" . }}
|
||||||
|
|
||||||
|
{{ template "custom.notes" . }}
|
||||||
|
|
||||||
|
{{ template "chart.sourcesSection" . }}
|
||||||
|
|
||||||
|
{{ template "custom.requirements" . }}
|
||||||
|
|
||||||
|
{{ template "custom.dependencies" . }}
|
||||||
|
|
||||||
|
{{ template "custom.install.tldr" . }}
|
||||||
|
|
||||||
|
{{ template "custom.install" . }}
|
||||||
|
|
||||||
|
{{ template "custom.uninstall" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.header" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.readValues" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.example.set" . }}
|
||||||
|
|
||||||
|
{{ template "custom.configuration.example.file" . }}
|
||||||
|
|
||||||
|
{{ template "custom.custom.configuration" . }}
|
||||||
|
|
||||||
|
{{ template "custom.valuesSection" . }}
|
||||||
|
|
||||||
|
{{ template "custom.changelog" . }}
|
||||||
|
|
||||||
|
{{ template "custom.support" . }}
|
||||||
|
|
||||||
|
{{ template "helm-docs.versionFooter" . }}
|
||||||
27
charts/stable/emby/README_CHANGELOG.md.gotmpl
Normal file
27
charts/stable/emby/README_CHANGELOG.md.gotmpl
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{{- define "custom.changelog.header" -}}
|
||||||
|
## Changelog
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ template "custom.changelog.header" . }}
|
||||||
|
|
||||||
|
All notable changes to this application Helm chart will be documented in this file but does not include changes from our common library. To read those click [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#changelog).
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [1.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial version
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
[1.0.0]: #1.0.0
|
||||||
|
{{- end -}}
|
||||||
9
charts/stable/emby/README_CONFIG.md.gotmpl
Normal file
9
charts/stable/emby/README_CONFIG.md.gotmpl
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{{- define "custom.custom.configuration.header" -}}
|
||||||
|
## Custom configuration
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.custom.configuration" -}}
|
||||||
|
{{ template "custom.custom.configuration.header" . }}
|
||||||
|
|
||||||
|
N/A
|
||||||
|
{{- end -}}
|
||||||
1
charts/stable/emby/templates/NOTES.txt
Normal file
1
charts/stable/emby/templates/NOTES.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
1
charts/stable/emby/templates/common.yaml
Normal file
1
charts/stable/emby/templates/common.yaml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{{ include "common.all" . }}
|
||||||
42
charts/stable/emby/values.yaml
Normal file
42
charts/stable/emby/values.yaml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
#
|
||||||
|
# IMPORTANT NOTE
|
||||||
|
#
|
||||||
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/k8s-at-home/emby
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: v4.5.4.0
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
|
||||||
|
# See more environment variables in the emby documentation
|
||||||
|
# https://emby.org/docs
|
||||||
|
env: {}
|
||||||
|
# TZ:
|
||||||
|
|
||||||
|
service:
|
||||||
|
port:
|
||||||
|
port: 8096
|
||||||
|
additionalPorts:
|
||||||
|
- port: 8920
|
||||||
|
name: https
|
||||||
|
protocol: TCP
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: false
|
||||||
|
emptyDir:
|
||||||
|
enabled: false
|
||||||
|
mountPath: /config
|
||||||
|
media:
|
||||||
|
enabled: false
|
||||||
|
emptyDir:
|
||||||
|
enabled: false
|
||||||
|
mountPath: /media
|
||||||
@@ -2,14 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: 0.6.5
|
appVersion: 0.6.5
|
||||||
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
||||||
name: focalboard
|
name: focalboard
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- focalboard
|
- focalboard
|
||||||
- kanban
|
- kanban
|
||||||
- project management
|
- project management
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/focalboard
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/focalboard
|
||||||
icon: https://www.focalboard.com/img/logo.svg
|
icon: https://github.com/mattermost/focalboard/raw/main/webapp/static/favicon.svg
|
||||||
sources:
|
sources:
|
||||||
- https://www.focalboard.com/
|
- https://www.focalboard.com/
|
||||||
- https://github.com/mattermost/focalboard
|
- https://github.com/mattermost/focalboard
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# focalboard
|
# focalboard
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
||||||
|
|
||||||
@@ -94,6 +94,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [1.0.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.1]
|
### [1.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -122,6 +136,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.0.2]: #1.0.2
|
||||||
|
[1.0.1]: #1.0.1
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -132,4 +148,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [1.0.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.1]
|
### [1.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -37,5 +51,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[1.0.2]: #1.0.2
|
||||||
|
[1.0.1]: #1.0.1
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: 1.17.0
|
appVersion: 1.17.0
|
||||||
description: FreshRSS is a self-hosted RSS feed aggregator
|
description: FreshRSS is a self-hosted RSS feed aggregator
|
||||||
name: freshrss
|
name: freshrss
|
||||||
version: 4.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- freshrss
|
- freshrss
|
||||||
- rss
|
- rss
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/freshrss
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/freshrss
|
||||||
icon: https://github.com/FreshRSS/FreshRSS/blob/master/docs/img/FreshRSS-logo.png?raw=true
|
icon: https://avatars.githubusercontent.com/u/9414285?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/FreshRSS/FreshRSS
|
- https://github.com/FreshRSS/FreshRSS
|
||||||
- https://hub.docker.com/r/linuxserver/freshrss
|
- https://hub.docker.com/r/linuxserver/freshrss
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# freshrss
|
# freshrss
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
FreshRSS is a self-hosted RSS feed aggregator
|
FreshRSS is a self-hosted RSS feed aggregator
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -92,6 +92,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -106,6 +120,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -116,4 +131,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: 10.7.0
|
appVersion: 10.7.0
|
||||||
description: Jellyfin is a Free Software Media System
|
description: Jellyfin is a Free Software Media System
|
||||||
name: jellyfin
|
name: jellyfin
|
||||||
version: 7.3.1
|
version: 7.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- jellyfin
|
- jellyfin
|
||||||
- plex
|
- plex
|
||||||
- emby
|
- emby
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/Jellyfin
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/Jellyfin
|
||||||
icon: https://github.com/jellyfin/jellyfin-ux/blob/master/branding/SVG/icon-solid-black.svg
|
icon: https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-solid-black.svg
|
||||||
sources:
|
sources:
|
||||||
- https://hub.docker.com/r/jellyfin/jellyfin
|
- https://hub.docker.com/r/jellyfin/jellyfin
|
||||||
- https://github.com/jellyfin/jellyfin
|
- https://github.com/jellyfin/jellyfin
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# jellyfin
|
# jellyfin
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Jellyfin is a Free Software Media System
|
Jellyfin is a Free Software Media System
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -97,6 +97,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [7.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated broken icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [6.0.0]
|
### [6.0.0]
|
||||||
|
|
||||||
#### Migration !breaking changes!
|
#### Migration !breaking changes!
|
||||||
@@ -135,6 +149,9 @@ Drop browser cache and cookies for your jellyfin URL!
|
|||||||
|
|
||||||
- Replaced LinuxServer.io image with official
|
- Replaced LinuxServer.io image with official
|
||||||
|
|
||||||
|
[7.3.2]: #7.3.2
|
||||||
|
[6.0.0]: #6.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)
|
||||||
@@ -143,4 +160,4 @@ Drop browser cache and cookies for your jellyfin URL!
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [7.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated broken icon url.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [6.0.0]
|
### [6.0.0]
|
||||||
|
|
||||||
#### Migration !breaking changes!
|
#### Migration !breaking changes!
|
||||||
@@ -46,4 +60,7 @@ Drop browser cache and cookies for your jellyfin URL!
|
|||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Replaced LinuxServer.io image with official
|
- Replaced LinuxServer.io image with official
|
||||||
|
|
||||||
|
[7.3.2]: #7.3.2
|
||||||
|
[6.0.0]: #6.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ apiVersion: v2
|
|||||||
appVersion: 4.0.8
|
appVersion: 4.0.8
|
||||||
description: Lychee is a free photo-management tool, which runs on your server or web-space
|
description: Lychee is a free photo-management tool, which runs on your server or web-space
|
||||||
name: lychee
|
name: lychee
|
||||||
version: 4.3.1
|
version: 4.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- lychee
|
- lychee
|
||||||
- photo
|
- photo
|
||||||
- pictures
|
- pictures
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/lychee
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/lychee
|
||||||
icon: https://github.com/LycheeOrg/Lychee/blob/master/Banner.png?raw=true
|
icon: https://avatars.githubusercontent.com/u/37916028?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/LycheeOrg/Lychee
|
- https://github.com/LycheeOrg/Lychee
|
||||||
- https://hub.docker.com/r/lycheeorg/lychee
|
- https://hub.docker.com/r/lycheeorg/lychee
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# lychee
|
# lychee
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Lychee is a free photo-management tool, which runs on your server or web-space
|
Lychee is a free photo-management tool, which runs on your server or web-space
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -99,6 +99,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -113,6 +127,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -123,4 +138,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,16 +1,20 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: modem-stats
|
name: modem-stats
|
||||||
version: 3.0.3
|
version: 4.0.0
|
||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: periodic cable modem data collection and save the results to InfluxDB
|
description: periodic cable modem data collection and save the results to InfluxDB
|
||||||
keywords:
|
keywords:
|
||||||
- sb6183
|
- sb6183
|
||||||
- influxdb
|
- influxdb
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/modem-stats
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/modem-stats
|
||||||
icon: https://i.imgur.com/NprLyFf.png
|
icon: https://i.imgur.com/NprLyFf.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/k8s-at-home/SB6183-stats-for-influxdb
|
- https://github.com/k8s-at-home/SB6183-stats-for-influxdb
|
||||||
- https://github.com/k8s-at-home/charts
|
- https://github.com/k8s-at-home/charts
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.k8s-at-home.com
|
||||||
|
version: 2.3.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# modem-stats
|
# modem-stats
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
periodic cable modem data collection and save the results to InfluxDB
|
periodic cable modem data collection and save the results to InfluxDB
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ periodic cable modem data collection and save the results to InfluxDB
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -75,20 +76,16 @@ The configuration is set as a block of text through a configmap and mouted as a
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| config.delay | int | `3600` | how many seconds to wait between checks |
|
| config | string | string | modem-stats' config.ini configuration |
|
||||||
| config.influxdb.database | string | `"cable_modem_stats"` | InfluxDB database |
|
| env | object | `{}` | |
|
||||||
| config.influxdb.host | string | `"influxdb-influxdb"` | InfluxDB hostname |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| config.influxdb.port | int | `8086` | InfluxDB port |
|
| image.repository | string | `"billimek/sb6183-for-influxdb"` | |
|
||||||
| config.influxdb.ssl | bool | `false` | InfluxDB connection using SSL |
|
| image.tag | string | `"latest"` | |
|
||||||
| config.modem.url | string | `"http://192.168.100.1/RgConnect.asp"` | sb6183 stats URL page |
|
| probes.liveness.enabled | bool | `false` | |
|
||||||
| debug | bool | `false` | Display debugging output |
|
| probes.readiness.enabled | bool | `false` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | modem-stats image pull policy |
|
| probes.startup.enabled | bool | `false` | |
|
||||||
| image.repository | string | `"billimek/sb6183-for-influxdb"` | modem-stats image |
|
| service.enabled | bool | `false` | |
|
||||||
| image.tag | string | `"latest"` | modem-stats image tag |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
| nodeSelector | object | `{}` | |
|
|
||||||
| podAnnotations | object | `{}` | Key-value pairs to add as pod annotations |
|
|
||||||
| replicaCount | int | `1` | |
|
|
||||||
| resources | object | `{}` | |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -96,6 +93,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -110,6 +121,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -120,4 +132,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [3.0.1]
|
### [3.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.0.0]: #4.0.0
|
||||||
[3.0.1]: #3.0.1
|
[3.0.1]: #3.0.1
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,7 +1 @@
|
|||||||
You can connect to the container running modem-stats. To open a shell session in the pod run the following:
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
|
|
||||||
- kubectl exec -i -t --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "modem-stats.fullname" . }} -o jsonpath='{.items[0].metadata.name}') /bin/sh
|
|
||||||
|
|
||||||
To trail the logs for the modem-stats pod run the following:
|
|
||||||
|
|
||||||
- kubectl logs -f --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "modem-stats.fullname" . }} -o jsonpath='{ .items[0].metadata.name }')
|
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
{{/* vim: set filetype=mustache: */}}
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Expand the name of the chart.
|
|
||||||
*/}}
|
|
||||||
{{- define "modem-stats.name" -}}
|
|
||||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create a default fully qualified app name.
|
|
||||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
||||||
If release name contains chart name it will be used as a full name.
|
|
||||||
*/}}
|
|
||||||
{{- define "modem-stats.fullname" -}}
|
|
||||||
{{- if .Values.fullnameOverride -}}
|
|
||||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
||||||
{{- if contains $name .Release.Name -}}
|
|
||||||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
32
charts/stable/modem-stats/templates/common.yaml
Normal file
32
charts/stable/modem-stats/templates/common.yaml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
{{/* Make sure all variables are set properly */}}
|
||||||
|
{{- include "common.values.setup" . }}
|
||||||
|
|
||||||
|
{{/* Append the configMap to the additionalVolumes */}}
|
||||||
|
{{- define "modem-stats.configmap.volume" -}}
|
||||||
|
name: modem-stats-settings
|
||||||
|
configMap:
|
||||||
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volume := include "modem-stats.configmap.volume" . | fromYaml -}}
|
||||||
|
{{- if $volume -}}
|
||||||
|
{{- $additionalVolumes := append .Values.additionalVolumes $volume }}
|
||||||
|
{{- $_ := set .Values "additionalVolumes" (deepCopy $additionalVolumes) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Append the configMap volume to the additionalVolumeMounts */}}
|
||||||
|
{{- define "modem-stats.configmap.volumeMount" -}}
|
||||||
|
name: modem-stats-settings
|
||||||
|
mountPath: /src/config.ini
|
||||||
|
subPath: config.ini
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- $volumeMount := include "modem-stats.configmap.volumeMount" . | fromYaml -}}
|
||||||
|
{{- if $volumeMount -}}
|
||||||
|
{{- $additionalVolumeMounts := append .Values.additionalVolumeMounts $volumeMount }}
|
||||||
|
{{- $_ := set .Values "additionalVolumeMounts" (deepCopy $additionalVolumeMounts) -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/* Render the templates */}}
|
||||||
|
{{ include "common.all" . }}
|
||||||
@@ -1,31 +1,10 @@
|
|||||||
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ template "modem-stats.fullname" . }}
|
name: {{ template "common.names.fullname" . }}-config
|
||||||
labels:
|
labels:
|
||||||
app: {{ template "modem-stats.name" . }}
|
{{- include "common.labels" . | nindent 4 }}
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: "{{ .Release.Name }}"
|
|
||||||
heritage: "{{ .Release.Service }}"
|
|
||||||
data:
|
data:
|
||||||
config.ini: |
|
config.ini: |
|
||||||
[GENERAL]
|
{{- .Values.config | nindent 4 }}
|
||||||
Delay = {{ .Values.config.delay }}
|
|
||||||
{{- if .Values.debug }}
|
|
||||||
Output = True
|
|
||||||
{{- else }}
|
|
||||||
Output = False
|
|
||||||
{{- end }}
|
|
||||||
[INFLUXDB]
|
|
||||||
Address = {{ .Values.config.influxdb.host }}
|
|
||||||
Port = {{ .Values.config.influxdb.port }}
|
|
||||||
Database = {{ .Values.config.influxdb.database }}
|
|
||||||
Username = {{ .Values.config.influxdb.username }}
|
|
||||||
Password = {{ .Values.config.influxdb.password }}
|
|
||||||
{{- if .Values.config.influxdb.ssl }}
|
|
||||||
Verify_SSL = True
|
|
||||||
{{- else }}
|
|
||||||
Verify_SSL = False
|
|
||||||
{{- end }}
|
|
||||||
[MODEM]
|
|
||||||
URL = {{ .Values.config.modem.url }}
|
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ template "modem-stats.fullname" . }}
|
|
||||||
labels:
|
|
||||||
app: {{ template "modem-stats.name" . }}
|
|
||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
heritage: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: {{ template "modem-stats.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
replicas: {{ default 1 .Values.replicas }}
|
|
||||||
revisionHistoryLimit: 3
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: {{ template "modem-stats.name" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
{{- if .Values.podAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.podAnnotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
resources:
|
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
|
||||||
volumeMounts:
|
|
||||||
- name: {{ template "modem-stats.name" . }}
|
|
||||||
mountPath: /src/config.ini
|
|
||||||
subPath: config.ini
|
|
||||||
{{- if .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml .Values.nodeSelector | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
volumes:
|
|
||||||
- name: {{ template "modem-stats.name" . }}
|
|
||||||
configMap:
|
|
||||||
name: {{ template "modem-stats.fullname" . }}
|
|
||||||
items:
|
|
||||||
- key: config.ini
|
|
||||||
path: config.ini
|
|
||||||
@@ -1,48 +1,44 @@
|
|||||||
# Default values for modem-stats.
|
#
|
||||||
# This is a YAML-formatted file.
|
# IMPORTANT NOTE
|
||||||
# Declare variables to be passed into your templates.
|
#
|
||||||
replicaCount: 1
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# -- modem-stats image
|
|
||||||
repository: billimek/sb6183-for-influxdb
|
repository: billimek/sb6183-for-influxdb
|
||||||
# -- modem-stats image tag
|
|
||||||
tag: latest
|
tag: latest
|
||||||
# -- modem-stats image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
resources: {}
|
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
||||||
# choice for the user. This also increases chances charts run on environments with little
|
|
||||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
||||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
# requests:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 128Mi
|
|
||||||
nodeSelector: {}
|
|
||||||
# -- Display debugging output
|
|
||||||
debug: false
|
|
||||||
config:
|
|
||||||
# -- how many seconds to wait between checks
|
|
||||||
delay: 3600
|
|
||||||
influxdb:
|
|
||||||
# -- InfluxDB hostname
|
|
||||||
host: influxdb-influxdb
|
|
||||||
# -- InfluxDB port
|
|
||||||
port: 8086
|
|
||||||
# -- InfluxDB database
|
|
||||||
database: cable_modem_stats
|
|
||||||
# -- InfluxDB username
|
|
||||||
# username:
|
|
||||||
# -- InfluxDB password
|
|
||||||
# password:
|
|
||||||
|
|
||||||
# -- InfluxDB connection using SSL
|
strategy:
|
||||||
ssl: false
|
type: Recreate
|
||||||
modem:
|
|
||||||
# -- sb6183 stats URL page
|
|
||||||
url: http://192.168.100.1/RgConnect.asp
|
|
||||||
|
|
||||||
# -- Key-value pairs to add as pod annotations
|
env: {}
|
||||||
podAnnotations: {}
|
|
||||||
|
# -- modem-stats' config.ini configuration
|
||||||
|
# @default -- string
|
||||||
|
config: |
|
||||||
|
[GENERAL]
|
||||||
|
Delay = 3600
|
||||||
|
Output = False
|
||||||
|
[INFLUXDB]
|
||||||
|
Address = influxdb-influxdb
|
||||||
|
Port = 8086
|
||||||
|
Database = cable_modem_stats
|
||||||
|
Username =
|
||||||
|
Password =
|
||||||
|
Verify_SSL = False
|
||||||
|
[MODEM]
|
||||||
|
URL = http://192.168.100.1/RgConnect.asp
|
||||||
|
|
||||||
|
service:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
## Probes configuration
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: false
|
||||||
|
readiness:
|
||||||
|
enabled: false
|
||||||
|
startup:
|
||||||
|
enabled: false
|
||||||
|
|||||||
@@ -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,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v3.2.1
|
appVersion: v3.2.1
|
||||||
description: Free and easy binary newsreader
|
description: Free and easy binary newsreader
|
||||||
name: sabnzbd
|
name: sabnzbd
|
||||||
version: 7.0.0
|
version: 7.0.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- sabnzbd
|
- sabnzbd
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# sabnzbd
|
# sabnzbd
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Free and easy binary newsreader
|
Free and easy binary newsreader
|
||||||
|
|
||||||
@@ -70,10 +70,7 @@ helm install sabnzbd k8s-at-home/sabnzbd -f values.yaml
|
|||||||
|
|
||||||
**IMPORTANT NOTE:** when installing this chart for the first time you will get the follow message in your browser when trying to access Sabnzbd: `Access denied - Hostname verification failed: sabnzbd.org/hostname-check`
|
**IMPORTANT NOTE:** when installing this chart for the first time you will get the follow message in your browser when trying to access Sabnzbd: `Access denied - Hostname verification failed: sabnzbd.org/hostname-check`
|
||||||
|
|
||||||
You can do one of two things to solve this issue:
|
To address this issue, you can set an environment variable named `HOST_WHITELIST_ENTRIES` with the host(s) you would like added to the `host_whitelist` in the `sabnzbd.ini`
|
||||||
|
|
||||||
1. Update the `sabnzbd.ini` config file to your `ingress` name and/or `loadBalancerIP` to the `host_whitelist` field and restart the pod, or
|
|
||||||
2. Forward the service to your local machine with `kubectl port-forward service/sabnzbd -n default 8080:8080` and update the `host_whitelist` in the Sabnzbd Settings UI
|
|
||||||
|
|
||||||
## Values
|
## Values
|
||||||
|
|
||||||
|
|||||||
@@ -7,9 +7,6 @@
|
|||||||
|
|
||||||
**IMPORTANT NOTE:** when installing this chart for the first time you will get the follow message in your browser when trying to access Sabnzbd: `Access denied - Hostname verification failed: sabnzbd.org/hostname-check`
|
**IMPORTANT NOTE:** when installing this chart for the first time you will get the follow message in your browser when trying to access Sabnzbd: `Access denied - Hostname verification failed: sabnzbd.org/hostname-check`
|
||||||
|
|
||||||
You can do one of two things to solve this issue:
|
To address this issue, you can set an environment variable named `HOST_WHITELIST_ENTRIES` with the host(s) you would like added to the `host_whitelist` in the `sabnzbd.ini`
|
||||||
|
|
||||||
1. Update the `sabnzbd.ini` config file to your `ingress` name and/or `loadBalancerIP` to the `host_whitelist` field and restart the pod, or
|
|
||||||
2. Forward the service to your local machine with `kubectl port-forward service/sabnzbd -n default 8080:8080` and update the `host_whitelist` in the Sabnzbd Settings UI
|
|
||||||
|
|
||||||
{{- 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: speedtest
|
name: speedtest
|
||||||
version: 3.0.3
|
version: 3.0.4
|
||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: periodic speedtest and save the results to InfluxDB
|
description: periodic speedtest and save the results to InfluxDB
|
||||||
keywords:
|
keywords:
|
||||||
@@ -12,10 +12,7 @@ icon: https://i.imgur.com/nDYjKk8.png
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/k8s-at-home/Speedtest-for-InfluxDB-and-Grafana
|
- https://github.com/k8s-at-home/Speedtest-for-InfluxDB-and-Grafana
|
||||||
- https://github.com/k8s-at-home/charts
|
- https://github.com/k8s-at-home/charts
|
||||||
maintainers:
|
deprecated: true
|
||||||
- name: billimek
|
|
||||||
email: jeff@billimek.com
|
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: influxdb
|
- name: influxdb
|
||||||
version: 1.1.9
|
version: 1.1.9
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -120,4 +135,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [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,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
|
||||||
@@ -132,4 +147,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [1.1.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- 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,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.2
|
||||||
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
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -126,4 +141,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.3.2]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +37,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[4.3.2]: #4.3.2
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v3.00
|
appVersion: v3.00
|
||||||
description: Transmission is a cross-platform BitTorrent client
|
description: Transmission is a cross-platform BitTorrent client
|
||||||
name: transmission
|
name: transmission
|
||||||
version: 5.0.0
|
version: 6.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- transmission
|
- transmission
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# transmission
|
# transmission
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Transmission is a cross-platform BitTorrent client
|
Transmission is a cross-platform BitTorrent client
|
||||||
|
|
||||||
@@ -68,7 +68,7 @@ helm install transmission k8s-at-home/transmission -f values.yaml
|
|||||||
|
|
||||||
## Custom configuration
|
## Custom configuration
|
||||||
|
|
||||||
N/A
|
To view more environment variables [see here](https://github.com/k8s-at-home/container-images/tree/main/apps/transmission/settings.json.tmpl)
|
||||||
|
|
||||||
## Values
|
## Values
|
||||||
|
|
||||||
@@ -76,8 +76,14 @@ N/A
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| config | string | string | Transmission's settings.json configuration |
|
| env.TRANSMISSION_DOWNLOAD_DIR | string | `"/downloads/complete"` | Torrent download directory |
|
||||||
| env | object | `{}` | |
|
| env.TRANSMISSION_INCOMPLETE_DIR | string | `"/downloads/incomplete"` | Incomplete download directory |
|
||||||
|
| env.TRANSMISSION_INCOMPLETE_DIR_ENABLED | bool | `false` | Enable incomplete download directory |
|
||||||
|
| env.TRANSMISSION_RPC_PASSWORD | string | `"CHANGEME"` | Password to access the Web UI |
|
||||||
|
| env.TRANSMISSION_WATCH_DIR | string | `"/watch"` | Watch directory |
|
||||||
|
| env.TRANSMISSION_WATCH_DIR_ENABLED | bool | `false` | Enable watch directory |
|
||||||
|
| env.TRANSMISSION_WEB_HOME | string | `"/web"` | Path in container where the Web UI is located |
|
||||||
|
| env.TZ | string | `"UTC"` | Container timezone |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| image.repository | string | `"ghcr.io/k8s-at-home/transmission"` | |
|
| image.repository | string | `"ghcr.io/k8s-at-home/transmission"` | |
|
||||||
| image.tag | string | `"v3.00"` | |
|
| image.tag | string | `"v3.00"` | |
|
||||||
@@ -103,6 +109,12 @@ 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).
|
||||||
|
|
||||||
|
### [6.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **Breaking**: `.Values.config` is deprecated in favor of using environment variables for configuration. See [here](https://github.com/k8s-at-home/container-images/tree/main/apps/transmission/settings.json.tmpl) for more options.
|
||||||
|
|
||||||
### [5.0.0]
|
### [5.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -111,7 +123,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- **Breaking**: `transmissionConfig` became `config` and is now a string not a object
|
- **Breaking**: `transmissionConfig` became `config` and is now a string not an object
|
||||||
|
|
||||||
### [4.0.0]
|
### [4.0.0]
|
||||||
|
|
||||||
@@ -131,6 +143,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- Initial commit
|
- Initial commit
|
||||||
|
|
||||||
|
[6.0.0]: #6.0.0
|
||||||
[5.0.0]: #5.0.0
|
[5.0.0]: #5.0.0
|
||||||
[4.0.0]: #4.0.0
|
[4.0.0]: #4.0.0
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|||||||
@@ -9,6 +9,12 @@ 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).
|
||||||
|
|
||||||
|
### [6.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **Breaking**: `.Values.config` is deprecated in favor of using environment variables for configuration. See [here](https://github.com/k8s-at-home/container-images/tree/main/apps/transmission/settings.json.tmpl) for more options.
|
||||||
|
|
||||||
### [5.0.0]
|
### [5.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -37,6 +43,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- Initial commit
|
- Initial commit
|
||||||
|
|
||||||
|
[6.0.0]: #6.0.0
|
||||||
[5.0.0]: #5.0.0
|
[5.0.0]: #5.0.0
|
||||||
[4.0.0]: #4.0.0
|
[4.0.0]: #4.0.0
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|||||||
@@ -5,5 +5,5 @@
|
|||||||
{{- define "custom.custom.configuration" -}}
|
{{- define "custom.custom.configuration" -}}
|
||||||
{{ template "custom.custom.configuration.header" . }}
|
{{ template "custom.custom.configuration.header" . }}
|
||||||
|
|
||||||
N/A
|
To view more environment variables [see here](https://github.com/k8s-at-home/container-images/tree/main/apps/transmission/settings.json.tmpl)
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,31 +1 @@
|
|||||||
{{/* Make sure all variables are set properly */}}
|
|
||||||
{{- include "common.values.setup" . }}
|
|
||||||
|
|
||||||
{{/* Append the configMap to the additionalVolumes */}}
|
|
||||||
{{- define "transmission.configmap.volume" -}}
|
|
||||||
name: transmission-settings
|
|
||||||
configMap:
|
|
||||||
name: {{ template "common.names.fullname" . }}-config
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- $volume := include "transmission.configmap.volume" . | fromYaml -}}
|
|
||||||
{{- if $volume -}}
|
|
||||||
{{- $additionalVolumes := append .Values.additionalVolumes $volume }}
|
|
||||||
{{- $_ := set .Values "additionalVolumes" (deepCopy $additionalVolumes) -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{/* Append the configMap volume to the additionalVolumeMounts */}}
|
|
||||||
{{- define "transmission.configmap.volumeMount" -}}
|
|
||||||
name: transmission-settings
|
|
||||||
mountPath: /config/settings.json
|
|
||||||
subPath: settings.json
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- $volumeMount := include "transmission.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,9 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: ConfigMap
|
|
||||||
metadata:
|
|
||||||
name: {{ template "common.names.fullname" . }}-config
|
|
||||||
labels:
|
|
||||||
{{- include "common.labels" . | nindent 4 }}
|
|
||||||
data:
|
|
||||||
settings.json: |
|
|
||||||
{{- .Values.config | nindent 4 }}
|
|
||||||
@@ -27,9 +27,26 @@ image:
|
|||||||
strategy:
|
strategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
|
|
||||||
env: {}
|
# To view more enviornment variables see here:
|
||||||
# TZ: UTC
|
# https://github.com/k8s-at-home/container-images/tree/main/apps/transmission/settings.json.tmpl
|
||||||
# TRANSMISSION_WEB_HOME: /config/flood
|
env:
|
||||||
|
# -- Container timezone
|
||||||
|
TZ: UTC
|
||||||
|
# -- Path in container where the Web UI is located
|
||||||
|
TRANSMISSION_WEB_HOME: /web
|
||||||
|
# -- Password to access the Web UI
|
||||||
|
TRANSMISSION_RPC_PASSWORD: CHANGEME
|
||||||
|
# -- Torrent download directory
|
||||||
|
TRANSMISSION_DOWNLOAD_DIR: /downloads/complete
|
||||||
|
# -- Enable incomplete download directory
|
||||||
|
TRANSMISSION_INCOMPLETE_DIR_ENABLED: false
|
||||||
|
# -- Incomplete download directory
|
||||||
|
TRANSMISSION_INCOMPLETE_DIR: /downloads/incomplete
|
||||||
|
# -- Enable watch directory
|
||||||
|
TRANSMISSION_WATCH_DIR_ENABLED: false
|
||||||
|
# -- Watch directory
|
||||||
|
TRANSMISSION_WATCH_DIR: /watch
|
||||||
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
port:
|
port:
|
||||||
@@ -65,19 +82,8 @@ probes:
|
|||||||
spec:
|
spec:
|
||||||
timeoutSeconds: 30
|
timeoutSeconds: 30
|
||||||
|
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
# annotations: {}
|
|
||||||
# hosts:
|
|
||||||
# - host: example.com
|
|
||||||
# paths:
|
|
||||||
# - path: /
|
|
||||||
# pathType: Prefix
|
|
||||||
# tls:
|
|
||||||
# - secretName: example.com
|
|
||||||
# hosts:
|
|
||||||
# - example.com
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
## Directory for storing active torrent files, resume list,
|
## Directory for storing active torrent files, resume list,
|
||||||
@@ -111,77 +117,3 @@ persistence:
|
|||||||
emptyDir:
|
emptyDir:
|
||||||
enabled: false
|
enabled: false
|
||||||
mountPath: /watch
|
mountPath: /watch
|
||||||
|
|
||||||
# -- Transmission's settings.json configuration
|
|
||||||
# @default -- string
|
|
||||||
config: |
|
|
||||||
{
|
|
||||||
"alt-speed-down": 50,
|
|
||||||
"alt-speed-enabled": false,
|
|
||||||
"alt-speed-time-begin": 540,
|
|
||||||
"alt-speed-time-day": 127,
|
|
||||||
"alt-speed-time-enabled": false,
|
|
||||||
"alt-speed-time-end": 1020,
|
|
||||||
"alt-speed-up": 50,
|
|
||||||
"bind-address-ipv4": "0.0.0.0",
|
|
||||||
"bind-address-ipv6": "::",
|
|
||||||
"blocklist-enabled": true,
|
|
||||||
"blocklist-url": "http://john.bitsurge.net/public/biglist.p2p.gz",
|
|
||||||
"cache-size-mb": 4,
|
|
||||||
"dht-enabled": true,
|
|
||||||
"download-dir": "/downloads/complete",
|
|
||||||
"download-queue-enabled": true,
|
|
||||||
"download-queue-size": 5,
|
|
||||||
"encryption": 1,
|
|
||||||
"idle-seeding-limit": 30,
|
|
||||||
"idle-seeding-limit-enabled": false,
|
|
||||||
"incomplete-dir": "/downloads/incomplete",
|
|
||||||
"incomplete-dir-enabled": true,
|
|
||||||
"lpd-enabled": false,
|
|
||||||
"message-level": 2,
|
|
||||||
"peer-congestion-algorithm": "",
|
|
||||||
"peer-id-ttl-hours": 6,
|
|
||||||
"peer-limit-global": 200,
|
|
||||||
"peer-limit-per-torrent": 50,
|
|
||||||
"peer-port": 51413,
|
|
||||||
"peer-port-random-high": 65535,
|
|
||||||
"peer-port-random-low": 49152,
|
|
||||||
"peer-port-random-on-start": false,
|
|
||||||
"peer-socket-tos": "default",
|
|
||||||
"pex-enabled": true,
|
|
||||||
"port-forwarding-enabled": false,
|
|
||||||
"preallocation": 1,
|
|
||||||
"prefetch-enabled": true,
|
|
||||||
"queue-stalled-enabled": true,
|
|
||||||
"queue-stalled-minutes": 30,
|
|
||||||
"ratio-limit": 2,
|
|
||||||
"ratio-limit-enabled": false,
|
|
||||||
"rename-partial-files": true,
|
|
||||||
"rpc-authentication-required": false,
|
|
||||||
"rpc-bind-address": "0.0.0.0",
|
|
||||||
"rpc-enabled": true,
|
|
||||||
"rpc-host-whitelist": "",
|
|
||||||
"rpc-host-whitelist-enabled": false,
|
|
||||||
"rpc-password": "CHANGEME",
|
|
||||||
"rpc-port": 9091,
|
|
||||||
"rpc-url": "/transmission/",
|
|
||||||
"rpc-username": "",
|
|
||||||
"rpc-whitelist": "",
|
|
||||||
"rpc-whitelist-enabled": false,
|
|
||||||
"scrape-paused-torrents-enabled": true,
|
|
||||||
"script-torrent-done-enabled": false,
|
|
||||||
"script-torrent-done-filename": "",
|
|
||||||
"seed-queue-enabled": false,
|
|
||||||
"seed-queue-size": 10,
|
|
||||||
"speed-limit-down": 100,
|
|
||||||
"speed-limit-down-enabled": false,
|
|
||||||
"speed-limit-up": 100,
|
|
||||||
"speed-limit-up-enabled": false,
|
|
||||||
"start-added-torrents": true,
|
|
||||||
"trash-original-torrent-files": false,
|
|
||||||
"umask": 2,
|
|
||||||
"upload-slots-per-torrent": 14,
|
|
||||||
"utp-enabled": true,
|
|
||||||
"watch-dir": "/watch",
|
|
||||||
"watch-dir-enabled": false
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ apiVersion: v2
|
|||||||
appVersion: 6.0.45
|
appVersion: 6.0.45
|
||||||
description: Ubiquiti Network's Unifi Controller
|
description: Ubiquiti Network's Unifi Controller
|
||||||
name: unifi
|
name: unifi
|
||||||
version: 2.0.0
|
version: 2.0.1
|
||||||
keywords:
|
keywords:
|
||||||
- ubiquiti
|
- ubiquiti
|
||||||
- unifi
|
- unifi
|
||||||
- mongodb
|
- mongodb
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/unifi
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/unifi
|
||||||
icon: https://blog.ubnt.com/wp-content/uploads/2016/10/unifi-app-logo.png
|
icon: https://prd-www-cdn.ubnt.com/static/favicon-152.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/jacobalberty/unifi-docker
|
- https://github.com/jacobalberty/unifi-docker
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# unifi
|
# unifi
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Ubiquiti Network's Unifi Controller
|
Ubiquiti Network's Unifi Controller
|
||||||
|
|
||||||
@@ -216,6 +216,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.0.1]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.5.3]
|
### [1.5.3]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -230,6 +244,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[2.0.1]: #2.0.1
|
||||||
[1.5.3]: #1.5.3
|
[1.5.3]: #1.5.3
|
||||||
|
|
||||||
## 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.0.1]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated icon url
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.5.3]
|
### [1.5.3]
|
||||||
|
|
||||||
#### 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.0.1]: #2.0.1
|
||||||
[1.5.3]: #1.5.3
|
[1.5.3]: #1.5.3
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -2,11 +2,12 @@ apiVersion: v2
|
|||||||
appVersion: 2.4.1
|
appVersion: 2.4.1
|
||||||
description: A self hostable application for saving web pages, freely.
|
description: A self hostable application for saving web pages, freely.
|
||||||
name: wallabag
|
name: wallabag
|
||||||
version: 2.3.1
|
version: 2.4.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- wallabag
|
- wallabag
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/wallabag
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/wallabag
|
||||||
|
icon: "https://raw.githubusercontent.com/wallabag/logo/master/app-android/logo-app-android-icon-bg-white-512.png"
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/wallabag/docker
|
- https://github.com/wallabag/docker
|
||||||
- https://hub.docker.com/wallabag/wallabag
|
- https://hub.docker.com/wallabag/wallabag
|
||||||
@@ -17,3 +18,15 @@ dependencies:
|
|||||||
- name: common
|
- name: common
|
||||||
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: redis
|
||||||
|
version: 14.1.0
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
condition: redis.enabled
|
||||||
|
- name: postgresql
|
||||||
|
version: 10.3.15
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
condition: postgresql.enabled
|
||||||
|
- name: mariadb
|
||||||
|
version: 9.3.6
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
condition: mariadb.enabled
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# wallabag
|
# wallabag
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A self hostable application for saving web pages, freely.
|
A self hostable application for saving web pages, freely.
|
||||||
|
|
||||||
@@ -19,7 +19,10 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.2.0 |
|
| https://charts.bitnami.com/bitnami | mariadb | 9.3.6 |
|
||||||
|
| https://charts.bitnami.com/bitnami | postgresql | 10.3.15 |
|
||||||
|
| https://charts.bitnami.com/bitnami | redis | 14.1.0 |
|
||||||
|
| https://library-charts.k8s-at-home.com | common | 2.3.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -82,12 +85,26 @@ Default login is `wallabag:wallabag`.
|
|||||||
| image.repository | string | `"wallabag/wallabag"` | |
|
| image.repository | string | `"wallabag/wallabag"` | |
|
||||||
| image.tag | string | `"2.4.1"` | |
|
| image.tag | string | `"2.4.1"` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
|
| mariadb.architecture | string | `"standalone"` | |
|
||||||
|
| mariadb.auth.database | string | `"wallabag"` | |
|
||||||
|
| mariadb.auth.password | string | `"wallabag-pass"` | |
|
||||||
|
| mariadb.auth.rootPassword | string | `"wallabag-rootpass"` | |
|
||||||
|
| mariadb.auth.username | string | `"wallabag"` | |
|
||||||
|
| mariadb.enabled | bool | `false` | |
|
||||||
|
| mariadb.primary.persistence.enabled | bool | `false` | |
|
||||||
| persistence.cache.emptyDir.enabled | bool | `false` | |
|
| persistence.cache.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.cache.enabled | bool | `false` | |
|
| persistence.cache.enabled | bool | `false` | |
|
||||||
| persistence.cache.mountPath | string | `"/var/www/wallabag/var/cache"` | |
|
| persistence.cache.mountPath | string | `"/var/www/wallabag/var/cache"` | |
|
||||||
| persistence.images.emptyDir.enabled | bool | `false` | |
|
| persistence.images.emptyDir.enabled | bool | `false` | |
|
||||||
| persistence.images.enabled | bool | `false` | |
|
| persistence.images.enabled | bool | `false` | |
|
||||||
| persistence.images.mountPath | string | `"/var/www/wallabag/web/assets/images"` | |
|
| persistence.images.mountPath | string | `"/var/www/wallabag/web/assets/images"` | |
|
||||||
|
| postgresql.enabled | bool | `false` | |
|
||||||
|
| postgresql.persistence.enabled | bool | `false` | |
|
||||||
|
| postgresql.postgresqlDatabase | string | `"wallabag"` | |
|
||||||
|
| postgresql.postgresqlPassword | string | `"wallabag-pass"` | |
|
||||||
|
| postgresql.postgresqlUsername | string | `"wallabag"` | |
|
||||||
|
| redis.auth.enabled | bool | `false` | |
|
||||||
|
| redis.enabled | bool | `false` | |
|
||||||
| service.port.port | int | `80` | |
|
| service.port.port | int | `80` | |
|
||||||
| strategy.type | string | `"RollingUpdate"` | |
|
| strategy.type | string | `"RollingUpdate"` | |
|
||||||
|
|
||||||
@@ -97,6 +114,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.4.1]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Icon url
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -111,6 +142,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[2.4.1]: #[2.4.1]
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
@@ -121,4 +153,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
|
||||||
|
|||||||
@@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [2.4.1]
|
||||||
|
|
||||||
|
#### 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.4.1]: #[2.4.1]
|
||||||
[1.0.0]: #1.0.0
|
[1.0.0]: #1.0.0
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -84,3 +84,34 @@ persistence:
|
|||||||
emptyDir:
|
emptyDir:
|
||||||
enabled: false
|
enabled: false
|
||||||
mountPath: /var/www/wallabag/var/cache
|
mountPath: /var/www/wallabag/var/cache
|
||||||
|
|
||||||
|
# Enabled mariadb
|
||||||
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb
|
||||||
|
mariadb:
|
||||||
|
enabled: false
|
||||||
|
architecture: standalone
|
||||||
|
auth:
|
||||||
|
database: wallabag
|
||||||
|
username: wallabag
|
||||||
|
password: wallabag-pass
|
||||||
|
rootPassword: wallabag-rootpass
|
||||||
|
primary:
|
||||||
|
persistence:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
# Enabled postgres
|
||||||
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
||||||
|
postgresql:
|
||||||
|
enabled: false
|
||||||
|
postgresqlUsername: wallabag
|
||||||
|
postgresqlPassword: wallabag-pass
|
||||||
|
postgresqlDatabase: wallabag
|
||||||
|
persistence:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
# Enabled redis
|
||||||
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/redis
|
||||||
|
redis:
|
||||||
|
enabled: false
|
||||||
|
auth:
|
||||||
|
enabled: false
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ set -eu
|
|||||||
|
|
||||||
# require helm-docs
|
# require helm-docs
|
||||||
command -v helm-docs >/dev/null 2>&1 || {
|
command -v helm-docs >/dev/null 2>&1 || {
|
||||||
echo >&2 "helm-docs is not installed. Aborting."
|
echo >&2 "helm-docs (https://github.com/norwoodj/helm-docs) is not installed. Aborting."
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user