mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
chore(deps): update external minor dep helm releases (minor) (#1343)
* chore(deps): update external minor dep helm releases * Auto-generate chart README * Combine dep bumps Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
This commit is contained in:
parent
c25ed8a428
commit
96d7dde82f
158
.github/workflows/generate-readme.yaml
vendored
158
.github/workflows/generate-readme.yaml
vendored
@ -6,77 +6,115 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- 'charts/**'
|
- "charts/**"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
generate-readme:
|
get-branch:
|
||||||
name: Auto-generate chart README
|
name: Get branch
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
outputs:
|
||||||
|
branch: ${{ steps.branch-name.outputs.current_branch }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Get branch name
|
||||||
uses: actions/checkout@v2
|
id: branch-name
|
||||||
with:
|
uses: tj-actions/branch-names@v5.1
|
||||||
fetch-depth: 2
|
|
||||||
|
|
||||||
- uses: dorny/paths-filter@v2
|
generate-readme:
|
||||||
id: filter
|
name: Update changelog
|
||||||
with:
|
runs-on: ubuntu-20.04
|
||||||
base: ${{ github.ref }}
|
needs:
|
||||||
list-files: shell
|
- get-branch
|
||||||
filters: |
|
|
||||||
addedOrModified:
|
|
||||||
- added|modified: 'charts/**'
|
|
||||||
|
|
||||||
- name: Install Helm
|
steps:
|
||||||
if: steps.filter.outputs.addedOrModified == 'true'
|
- name: Checkout
|
||||||
uses: azure/setup-helm@v1
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
version: v3.6.3
|
fetch-depth: 0
|
||||||
|
|
||||||
- uses: actions/setup-python@v2
|
- uses: dorny/paths-filter@v2
|
||||||
if: steps.filter.outputs.addedOrModified == 'true'
|
id: filter
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
base: ${{ github.ref }}
|
||||||
|
list-files: shell
|
||||||
|
filters: |
|
||||||
|
addedOrModified:
|
||||||
|
- added|modified: 'charts/**'
|
||||||
|
|
||||||
- name: Install helm-docs
|
- name: Annotate Charts.yaml for Renovate
|
||||||
if: steps.filter.outputs.addedOrModified == 'true'
|
if: steps.filter.outputs.addedOrModified == 'true' && startsWith(needs.get-branch.outputs.branch, 'renovate/')
|
||||||
run: |
|
run: |
|
||||||
wget -O /tmp/helm-docs.deb https://github.com/k8s-at-home/helm-docs/releases/download/v0.1.1/helm-docs_0.1.1_Linux_x86_64.deb
|
CHARTS=()
|
||||||
sudo dpkg -i /tmp/helm-docs.deb
|
PATHS=(${{ steps.filter.outputs.addedOrModified_files }})
|
||||||
|
# Get only the chart paths
|
||||||
|
for i in "${PATHS[@]}"
|
||||||
|
do
|
||||||
|
IFS='/' read -r -a path_parts <<< "$i"
|
||||||
|
CHARTS+=("${path_parts[1]}/${path_parts[2]}")
|
||||||
|
done
|
||||||
|
|
||||||
- name: Run against changed charts
|
# Remove duplicates
|
||||||
if: steps.filter.outputs.addedOrModified == 'true'
|
CHARTS=( `for i in ${CHARTS[@]}; do echo $i; done | sort -u` )
|
||||||
run: |
|
|
||||||
CHARTS=()
|
|
||||||
PATHS=(${{ steps.filter.outputs.addedOrModified_files }})
|
|
||||||
# Get only the chart paths
|
|
||||||
for i in "${PATHS[@]}"
|
|
||||||
do
|
|
||||||
IFS='/' read -r -a path_parts <<< "$i"
|
|
||||||
CHARTS+=("${path_parts[1]}/${path_parts[2]}")
|
|
||||||
done
|
|
||||||
|
|
||||||
# Remove duplicates
|
for i in "${CHARTS[@]}"
|
||||||
CHARTS=( `for i in ${CHARTS[@]}; do echo $i; done | sort -u` )
|
do
|
||||||
|
echo "Updating CHANGELOG for chart ${i}"
|
||||||
|
IFS='/' read -r -a chart_parts <<< "$i"
|
||||||
|
if [ -f "charts/${chart_parts[0]}"/"${chart_parts[1]}/Chart.yaml" ]; then
|
||||||
|
./hack/renovate-releasenotes.sh "charts/${chart_parts[0]}"/"${chart_parts[1]}"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
done
|
||||||
|
|
||||||
for i in "${CHARTS[@]}"
|
- name: Install Helm
|
||||||
do
|
if: steps.filter.outputs.addedOrModified == 'true'
|
||||||
echo "Rendering README for chart ${i}"
|
uses: azure/setup-helm@v1
|
||||||
IFS='/' read -r -a chart_parts <<< "$i"
|
with:
|
||||||
if [ -f "charts/${chart_parts[0]}"/"${chart_parts[1]}/Chart.yaml" ]; then
|
version: v3.6.3
|
||||||
./hack/gen-helm-docs.sh "${chart_parts[0]}" "${chart_parts[1]}"
|
|
||||||
fi
|
|
||||||
echo ""
|
|
||||||
done
|
|
||||||
|
|
||||||
- name: Create commit
|
- uses: actions/setup-python@v2
|
||||||
if: steps.filter.outputs.addedOrModified == 'true'
|
if: steps.filter.outputs.addedOrModified == 'true'
|
||||||
uses: stefanzweifel/git-auto-commit-action@v4
|
with:
|
||||||
with:
|
python-version: 3.9
|
||||||
push_options: --force
|
|
||||||
commit_message: Auto-generate chart README
|
|
||||||
|
|
||||||
commit_user_name: ${{ github.actor }}
|
- name: Install helm-docs
|
||||||
commit_user_email: ${{ github.actor }}@users.noreply.github.com
|
if: steps.filter.outputs.addedOrModified == 'true'
|
||||||
|
run: |
|
||||||
|
wget -O /tmp/helm-docs.deb https://github.com/k8s-at-home/helm-docs/releases/download/v0.1.1/helm-docs_0.1.1_Linux_x86_64.deb
|
||||||
|
sudo dpkg -i /tmp/helm-docs.deb
|
||||||
|
|
||||||
file_pattern: charts/**/
|
- name: Generate README for changed charts
|
||||||
|
if: steps.filter.outputs.addedOrModified == 'true'
|
||||||
|
run: |
|
||||||
|
CHARTS=()
|
||||||
|
PATHS=(${{ steps.filter.outputs.addedOrModified_files }})
|
||||||
|
# Get only the chart paths
|
||||||
|
for i in "${PATHS[@]}"
|
||||||
|
do
|
||||||
|
IFS='/' read -r -a path_parts <<< "$i"
|
||||||
|
CHARTS+=("${path_parts[1]}/${path_parts[2]}")
|
||||||
|
done
|
||||||
|
|
||||||
|
# Remove duplicates
|
||||||
|
CHARTS=( `for i in ${CHARTS[@]}; do echo $i; done | sort -u` )
|
||||||
|
|
||||||
|
for i in "${CHARTS[@]}"
|
||||||
|
do
|
||||||
|
echo "Rendering README for chart ${i}"
|
||||||
|
IFS='/' read -r -a chart_parts <<< "$i"
|
||||||
|
if [ -f "charts/${chart_parts[0]}"/"${chart_parts[1]}/Chart.yaml" ]; then
|
||||||
|
./hack/gen-helm-docs.sh "${chart_parts[0]}" "${chart_parts[1]}"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
done
|
||||||
|
|
||||||
|
- name: Create commit
|
||||||
|
if: steps.filter.outputs.addedOrModified == 'true'
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
|
with:
|
||||||
|
commit_message: Auto-generate chart README
|
||||||
|
|
||||||
|
commit_user_name: ${{ github.actor }}
|
||||||
|
commit_user_email: ${{ github.actor }}@users.noreply.github.com
|
||||||
|
|
||||||
|
file_pattern: charts/**/
|
||||||
|
@ -1,78 +0,0 @@
|
|||||||
name: "Charts: Update changelog for Renovate PR"
|
|
||||||
|
|
||||||
concurrency: update-renovate-pr-changelog
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- "charts/**"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
get-branch:
|
|
||||||
name: Get branch
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
outputs:
|
|
||||||
branch: ${{ steps.branch-name.outputs.current_branch }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Get branch name
|
|
||||||
id: branch-name
|
|
||||||
uses: tj-actions/branch-names@v5.1
|
|
||||||
|
|
||||||
update-changelog:
|
|
||||||
name: Update changelog
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
needs:
|
|
||||||
- get-branch
|
|
||||||
if: startsWith(needs.get-branch.outputs.branch, 'renovate/')
|
|
||||||
|
|
||||||
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: 'charts/**'
|
|
||||||
|
|
||||||
- name: Run against changed charts
|
|
||||||
if: steps.filter.outputs.addedOrModified == 'true'
|
|
||||||
run: |
|
|
||||||
CHARTS=()
|
|
||||||
PATHS=(${{ steps.filter.outputs.addedOrModified_files }})
|
|
||||||
# Get only the chart paths
|
|
||||||
for i in "${PATHS[@]}"
|
|
||||||
do
|
|
||||||
IFS='/' read -r -a path_parts <<< "$i"
|
|
||||||
CHARTS+=("${path_parts[1]}/${path_parts[2]}")
|
|
||||||
done
|
|
||||||
|
|
||||||
# Remove duplicates
|
|
||||||
CHARTS=( `for i in ${CHARTS[@]}; do echo $i; done | sort -u` )
|
|
||||||
|
|
||||||
for i in "${CHARTS[@]}"
|
|
||||||
do
|
|
||||||
echo "Updating CHANGELOG for chart ${i}"
|
|
||||||
IFS='/' read -r -a chart_parts <<< "$i"
|
|
||||||
if [ -f "charts/${chart_parts[0]}"/"${chart_parts[1]}/Chart.yaml" ]; then
|
|
||||||
./hack/renovate-releasenotes.sh "charts/${chart_parts[0]}"/"${chart_parts[1]}"
|
|
||||||
fi
|
|
||||||
echo ""
|
|
||||||
done
|
|
||||||
|
|
||||||
- name: Create commit
|
|
||||||
if: steps.filter.outputs.addedOrModified == 'true'
|
|
||||||
uses: stefanzweifel/git-auto-commit-action@v4
|
|
||||||
with:
|
|
||||||
push_options: --force
|
|
||||||
commit_message: Auto-generate chart changelog annotation
|
|
||||||
|
|
||||||
commit_user_name: ${{ github.actor }}
|
|
||||||
commit_user_email: ${{ github.actor }}@users.noreply.github.com
|
|
||||||
|
|
||||||
file_pattern: charts/**/Chart.yaml
|
|
2
Gemfile
2
Gemfile
@ -4,7 +4,7 @@ source 'https://rubygems.org'
|
|||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'm'
|
gem 'm'
|
||||||
gem 'minitest', "5.14.4"
|
gem 'minitest', "5.15.0"
|
||||||
gem 'minitest-implicit-subject'
|
gem 'minitest-implicit-subject'
|
||||||
gem 'minitest-reporters', "1.4.3"
|
gem 'minitest-reporters', "1.4.3"
|
||||||
gem 'pry', "0.14.1"
|
gem 'pry', "0.14.1"
|
||||||
|
@ -2,24 +2,30 @@ apiVersion: v2
|
|||||||
appVersion: "2021.06.01"
|
appVersion: "2021.06.01"
|
||||||
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
||||||
name: dsmr-reader
|
name: dsmr-reader
|
||||||
version: 5.3.1
|
version: 5.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- dsmr-reader
|
- dsmr-reader
|
||||||
- energy
|
- energy
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/dsmr-reader
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/dsmr-reader
|
||||||
icon: https://avatars2.githubusercontent.com/u/57727360?s=400&v=4
|
icon: https://avatars2.githubusercontent.com/u/57727360?s=400&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/dsmrreader/dsmr-reader
|
- https://github.com/dsmrreader/dsmr-reader
|
||||||
- https://github.com/xirixiz/dsmr-reader-docker
|
- https://github.com/xirixiz/dsmr-reader-docker
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# dsmr-reader
|
# dsmr-reader
|
||||||
|
|
||||||
![Version: 5.3.1](https://img.shields.io/badge/Version-5.3.1-informational?style=flat-square) ![AppVersion: 2021.06.01](https://img.shields.io/badge/AppVersion-2021.06.01-informational?style=flat-square)
|
![Version: 5.4.0](https://img.shields.io/badge/Version-5.4.0-informational?style=flat-square) ![AppVersion: 2021.06.01](https://img.shields.io/badge/AppVersion-2021.06.01-informational?style=flat-square)
|
||||||
|
|
||||||
DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
DSMR-protocol reader, telegram data storage and energy consumption visualizer.
|
||||||
|
|
||||||
@ -19,8 +19,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ N/A
|
|||||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
| image.repository | string | `"xirixiz/dsmr-reader-docker"` | image repository |
|
| image.repository | string | `"xirixiz/dsmr-reader-docker"` | image repository |
|
||||||
| image.tag | string | `"latest-2021.06.01-amd64"` | image tag |
|
| image.tag | string | `"amd64-2021.12.09"` | image tag |
|
||||||
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||||
| persistence.p1reader | object | See values.yaml | Set up a local USB p1 reader device. |
|
| persistence.p1reader | object | See values.yaml | Set up a local USB p1 reader device. |
|
||||||
@ -91,34 +91,24 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 5.4.0
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Updated image tag to `latest-2021.06.01-amd64`.
|
|
||||||
- Updated postgresql chart to `10.4.9`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial chart version
|
N/A
|
||||||
|
|
||||||
[5.0.0]: #500
|
#### Changed
|
||||||
[4.0.0]: #400
|
|
||||||
[1.0.0]: #100
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/dsmr-reader?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -128,4 +118,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,36 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Updated image tag to `latest-2021.06.01-amd64`.
|
|
||||||
- Updated postgresql chart to `10.4.9`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial chart version
|
|
||||||
|
|
||||||
[5.0.0]: #500
|
|
||||||
[4.0.0]: #400
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -9,7 +9,7 @@ image:
|
|||||||
# -- image repository
|
# -- image repository
|
||||||
repository: xirixiz/dsmr-reader-docker
|
repository: xirixiz/dsmr-reader-docker
|
||||||
# -- image tag
|
# -- image tag
|
||||||
tag: latest-2021.06.01-amd64
|
tag: amd64-2021.12.09
|
||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
@ -2,24 +2,30 @@ apiVersion: v2
|
|||||||
appVersion: 4.27.2
|
appVersion: 4.27.2
|
||||||
description: Ghost is a blogging and publishing software
|
description: Ghost is a blogging and publishing software
|
||||||
name: ghost
|
name: ghost
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
kubeVersion: ">=1.19.0-0"
|
kubeVersion: ">=1.19.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- ghost
|
- ghost
|
||||||
- blogging
|
- blogging
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/ghost
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/ghost
|
||||||
icon: https://ghost.org/images/logos/logo-black-1.png
|
icon: https://ghost.org/images/logos/logo-black-1.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/TryGhost/Ghost
|
- https://github.com/TryGhost/Ghost
|
||||||
- https://github.com/TryGhost/Ghost-CLI
|
- https://github.com/TryGhost/Ghost-CLI
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: samip5
|
- name: samip5
|
||||||
email: sm+k8s-at-home+git@samip.fi
|
email: sm+k8s-at-home+git@samip.fi
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 10.1.0
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ghost
|
# ghost
|
||||||
|
|
||||||
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: 4.27.2](https://img.shields.io/badge/AppVersion-4.27.2-informational?style=flat-square)
|
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: 4.27.2](https://img.shields.io/badge/AppVersion-4.27.2-informational?style=flat-square)
|
||||||
|
|
||||||
Ghost is a blogging and publishing software
|
Ghost is a blogging and publishing software
|
||||||
|
|
||||||
@ -19,8 +19,8 @@ Kubernetes: `>=1.19.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 10.1.0 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -100,25 +100,24 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 1.1.0
|
||||||
|
|
||||||
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
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- N/A
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
|
||||||
#### Removed
|
#### Fixed
|
||||||
|
|
||||||
- N/A
|
N/A
|
||||||
|
|
||||||
[1.0.0]: #1309
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/ghost?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -128,4 +127,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,28 +0,0 @@
|
|||||||
|
|
||||||
{{- 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]: #1309
|
|
||||||
{{- end -}}
|
|
@ -2,24 +2,30 @@ apiVersion: v2
|
|||||||
appVersion: latest
|
appVersion: latest
|
||||||
description: A monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
|
description: A monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
|
||||||
name: icinga2
|
name: icinga2
|
||||||
version: 2.3.1
|
version: 3.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- icinga2
|
- icinga2
|
||||||
- monitoring
|
- monitoring
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/icinga2
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/icinga2
|
||||||
icon: https://avatars.githubusercontent.com/u/835441?s=200&v=4
|
icon: https://avatars.githubusercontent.com/u/835441?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/jjethwa/icinga2
|
- https://github.com/jjethwa/icinga2
|
||||||
- https://icinga.com/
|
- https://icinga.com/
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: nicholaswilde
|
- name: nicholaswilde
|
||||||
email: ncwilde43@gmail.com
|
email: ncwilde43@gmail.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# icinga2
|
# icinga2
|
||||||
|
|
||||||
![Version: 2.3.1](https://img.shields.io/badge/Version-2.3.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
||||||
|
|
||||||
A monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
|
A monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
|
||||||
|
|
||||||
@ -19,8 +19,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -93,24 +93,24 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 3.0.0
|
||||||
|
|
||||||
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.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[2.0.0]: #200
|
#### Changed
|
||||||
[1.0.0]: #100
|
|
||||||
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/icinga2?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -120,4 +120,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2.1.2
|
appVersion: 2.1.2
|
||||||
description: This server allows you to sync any Joplin client
|
description: This server allows you to sync any Joplin client
|
||||||
name: joplin-server
|
name: joplin-server
|
||||||
version: 4.3.1
|
version: 4.4.0
|
||||||
keywords:
|
keywords:
|
||||||
- joplin
|
- joplin
|
||||||
- notes
|
- notes
|
||||||
@ -20,6 +20,10 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# joplin-server
|
# joplin-server
|
||||||
|
|
||||||
![Version: 4.3.1](https://img.shields.io/badge/Version-4.3.1-informational?style=flat-square) ![AppVersion: 2.1.2](https://img.shields.io/badge/AppVersion-2.1.2-informational?style=flat-square)
|
![Version: 4.4.0](https://img.shields.io/badge/Version-4.4.0-informational?style=flat-square) ![AppVersion: 2.1.2](https://img.shields.io/badge/AppVersion-2.1.2-informational?style=flat-square)
|
||||||
|
|
||||||
This server allows you to sync any Joplin client
|
This server allows you to sync any Joplin client
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ This server allows you to sync any Joplin client
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -95,43 +95,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.4.0
|
||||||
|
|
||||||
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]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.2.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated Joplin Server version to 2.1.2, as 2.0 introduces breaking changes between client and server.
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added support for installing a postgresql database along with this chart.
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.1.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.1.1/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
#### Fixed
|
||||||
|
|
||||||
#### Added
|
N/A
|
||||||
|
|
||||||
- Initial version
|
### Older versions
|
||||||
|
|
||||||
[4.0.0]: #400
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/joplin-server?modal=changelog)
|
||||||
[3.2.0]: #320
|
|
||||||
[3.0.0]: #300
|
|
||||||
[1.0.0]: #100
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -141,4 +121,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -2,23 +2,27 @@ apiVersion: v2
|
|||||||
appVersion: v1.2.20
|
appVersion: v1.2.20
|
||||||
description: Kanboard is a free and open source Kanban project management software.
|
description: Kanboard is a free and open source Kanban project management software.
|
||||||
name: kanboard
|
name: kanboard
|
||||||
version: 4.3.1
|
version: 4.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- kanboard
|
- kanboard
|
||||||
- kanban
|
- kanban
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/kanboard
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/kanboard
|
||||||
icon: https://raw.githubusercontent.com/kanboard/website/master/assets/img/icon.svg
|
icon: https://raw.githubusercontent.com/kanboard/website/master/assets/img/icon.svg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/kanboard/kanboard
|
- https://github.com/kanboard/kanboard
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: trly
|
- name: trly
|
||||||
email: trly@users.noreply.github.com
|
email: trly@users.noreply.github.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# kanboard
|
# kanboard
|
||||||
|
|
||||||
![Version: 4.3.1](https://img.shields.io/badge/Version-4.3.1-informational?style=flat-square) ![AppVersion: v1.2.20](https://img.shields.io/badge/AppVersion-v1.2.20-informational?style=flat-square)
|
![Version: 4.4.0](https://img.shields.io/badge/Version-4.4.0-informational?style=flat-square) ![AppVersion: v1.2.20](https://img.shields.io/badge/AppVersion-v1.2.20-informational?style=flat-square)
|
||||||
|
|
||||||
Kanboard is a free and open source Kanban project management software.
|
Kanboard is a free and open source Kanban project management software.
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -96,41 +96,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.4.0
|
||||||
|
|
||||||
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]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- **BREAKING**: Moved app configuration to environment variables.
|
|
||||||
- Changed image tag to `1.2.20`.
|
|
||||||
|
|
||||||
### [1.1.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added postgres support
|
N/A
|
||||||
|
|
||||||
### [1.0.0]
|
#### Changed
|
||||||
|
|
||||||
#### Added
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
- Initial chart release
|
#### Fixed
|
||||||
|
|
||||||
[4.0.0]: #400
|
N/A
|
||||||
[3.0.0]: #300
|
|
||||||
[1.1.0]: #110
|
### Older versions
|
||||||
[1.0.0]: #100
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/kanboard?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -140,4 +122,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -2,22 +2,28 @@ apiVersion: v2
|
|||||||
appVersion: v0.5.1
|
appVersion: v0.5.1
|
||||||
description: Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family.
|
description: Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family.
|
||||||
name: mealie
|
name: mealie
|
||||||
version: 3.2.1
|
version: 3.3.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- grocy
|
- grocy
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/mealie
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/mealie
|
||||||
icon: https://raw.githubusercontent.com/hay-kot/mealie/gh-pages/assets/img/favicon.png
|
icon: https://raw.githubusercontent.com/hay-kot/mealie/gh-pages/assets/img/favicon.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/hay-kot/mealie
|
- https://github.com/hay-kot/mealie
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: bjw-s
|
- name: bjw-s
|
||||||
email: me@bjw-s.dev
|
email: me@bjw-s.dev
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 10.13.11
|
version: 10.14.4
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# mealie
|
# mealie
|
||||||
|
|
||||||
![Version: 3.2.1](https://img.shields.io/badge/Version-3.2.1-informational?style=flat-square) ![AppVersion: v0.5.1](https://img.shields.io/badge/AppVersion-v0.5.1-informational?style=flat-square)
|
![Version: 3.3.0](https://img.shields.io/badge/Version-3.3.0-informational?style=flat-square) ![AppVersion: v0.5.1](https://img.shields.io/badge/AppVersion-v0.5.1-informational?style=flat-square)
|
||||||
|
|
||||||
Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family.
|
Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family.
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.11 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -89,45 +89,24 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 3.3.0
|
||||||
|
|
||||||
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.2.0]
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- Add dependency for postgres database as the application now supports it. [Postgres - Mealie](https://hay-kot.github.io/mealie/documentation/getting-started/install/#docker-compose-with-postgres-beta)
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.1]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Bump container version to `v0.5.1`.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[3.0.0]: #300
|
#### Changed
|
||||||
[2.0.1]: #201
|
|
||||||
[2.0.0]: #200
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
[1.0.0]: #100
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/mealie?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -137,4 +116,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [3.2.0]
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- Add dependency for postgres database as the application now supports it. [Postgres - Mealie](https://hay-kot.github.io/mealie/documentation/getting-started/install/#docker-compose-with-postgres-beta)
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.1]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Bump container version to `v0.5.1`.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.0.1]: #201
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,24 +2,28 @@ apiVersion: v2
|
|||||||
appVersion: 2.0.32
|
appVersion: 2.0.32
|
||||||
description: Miniflux is a minimalist and opinionated feed reader.
|
description: Miniflux is a minimalist and opinionated feed reader.
|
||||||
name: miniflux
|
name: miniflux
|
||||||
version: 4.3.1
|
version: 4.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- miniflux
|
- miniflux
|
||||||
- rss
|
- rss
|
||||||
- news
|
- news
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/miniflux
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/miniflux
|
||||||
icon: https://raw.githubusercontent.com/miniflux/logo/master/icon.svg
|
icon: https://raw.githubusercontent.com/miniflux/logo/master/icon.svg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/miniflux/v2
|
- https://github.com/miniflux/v2
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: trly
|
- name: trly
|
||||||
email: trly@users.noreply.github.com
|
email: trly@users.noreply.github.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# miniflux
|
# miniflux
|
||||||
|
|
||||||
![Version: 4.3.1](https://img.shields.io/badge/Version-4.3.1-informational?style=flat-square) ![AppVersion: 2.0.32](https://img.shields.io/badge/AppVersion-2.0.32-informational?style=flat-square)
|
![Version: 4.4.0](https://img.shields.io/badge/Version-4.4.0-informational?style=flat-square) ![AppVersion: 2.0.32](https://img.shields.io/badge/AppVersion-2.0.32-informational?style=flat-square)
|
||||||
|
|
||||||
Miniflux is a minimalist and opinionated feed reader.
|
Miniflux is a minimalist and opinionated feed reader.
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -93,35 +93,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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/charts/tree/master/charts/common/README.md#Changelog).
|
### Version 4.4.0
|
||||||
|
|
||||||
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).
|
#### Added
|
||||||
|
|
||||||
### [4.0.0]
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
### [3.0.0]
|
#### Fixed
|
||||||
|
|
||||||
#### Changed
|
N/A
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
### Older versions
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `2.0.32`.
|
|
||||||
|
|
||||||
#### Removed
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/miniflux?modal=changelog)
|
||||||
|
|
||||||
- **BREAKING**: Removed `config` section, since these values could be set through environment variables.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
- Initial chart release
|
|
||||||
|
|
||||||
[4.0.0]: #400
|
|
||||||
[3.0.0]: #300
|
|
||||||
[1.0.0]: #100
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -131,4 +119,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -2,23 +2,29 @@ apiVersion: v2
|
|||||||
appVersion: 3.1.1-apache
|
appVersion: 3.1.1-apache
|
||||||
description: A Personal Relationship Management tool to help you organize your social life
|
description: A Personal Relationship Management tool to help you organize your social life
|
||||||
name: monica
|
name: monica
|
||||||
version: 6.3.1
|
version: 7.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- crm
|
- crm
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/monica
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/monica
|
||||||
icon: https://pbs.twimg.com/profile_images/951820722191720450/mtCNuIXX.jpg
|
icon: https://pbs.twimg.com/profile_images/951820722191720450/mtCNuIXX.jpg
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/monicahq/monica
|
- https://github.com/monicahq/monica
|
||||||
- https://hub.docker.com/_/monica
|
- https://hub.docker.com/_/monica
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# monica
|
# monica
|
||||||
|
|
||||||
![Version: 6.3.1](https://img.shields.io/badge/Version-6.3.1-informational?style=flat-square) ![AppVersion: 3.1.1-apache](https://img.shields.io/badge/AppVersion-3.1.1--apache-informational?style=flat-square)
|
![Version: 7.0.0](https://img.shields.io/badge/Version-7.0.0-informational?style=flat-square) ![AppVersion: 3.1.1-apache](https://img.shields.io/badge/AppVersion-3.1.1--apache-informational?style=flat-square)
|
||||||
|
|
||||||
A Personal Relationship Management tool to help you organize your social life
|
A Personal Relationship Management tool to help you organize your social life
|
||||||
|
|
||||||
@ -19,8 +19,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -96,33 +96,24 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 7.0.0
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `3.1.1-apache`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[6.0.0]: #600
|
#### Changed
|
||||||
[5.0.0]: #500
|
|
||||||
[1.0.0]: #100
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/monica?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -132,4 +123,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [6.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `3.1.1-apache`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[6.0.0]: #600
|
|
||||||
[5.0.0]: #500
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -3,7 +3,7 @@ apiVersion: v2
|
|||||||
appVersion: 6.1.0
|
appVersion: 6.1.0
|
||||||
description: OpenEMR is the most popular open source electronic health records and medical practice management solution.
|
description: OpenEMR is the most popular open source electronic health records and medical practice management solution.
|
||||||
name: openemr
|
name: openemr
|
||||||
version: 3.3.1
|
version: 4.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- openemr
|
- openemr
|
||||||
@ -21,8 +21,14 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# openemr
|
# openemr
|
||||||
|
|
||||||
![Version: 3.3.1](https://img.shields.io/badge/Version-3.3.1-informational?style=flat-square) ![AppVersion: 6.1.0](https://img.shields.io/badge/AppVersion-6.1.0-informational?style=flat-square)
|
![Version: 4.0.0](https://img.shields.io/badge/Version-4.0.0-informational?style=flat-square) ![AppVersion: 6.1.0](https://img.shields.io/badge/AppVersion-6.1.0-informational?style=flat-square)
|
||||||
|
|
||||||
OpenEMR is the most popular open source electronic health records and medical practice management solution.
|
OpenEMR is the most popular open source electronic health records and medical practice management solution.
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -88,33 +88,24 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.0.0
|
||||||
|
|
||||||
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]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Updated the image tag to `6.1.0`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[3.0.0]: #300
|
#### Changed
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/openemr?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -124,4 +115,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Updated the image tag to `6.1.0`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,29 +2,37 @@ apiVersion: v2
|
|||||||
appVersion: 1.0.0
|
appVersion: 1.0.0
|
||||||
description: OpenKM integrates all essential documents management, collaboration and an advanced search functionality into one easy to use solution.
|
description: OpenKM integrates all essential documents management, collaboration and an advanced search functionality into one easy to use solution.
|
||||||
name: openkm
|
name: openkm
|
||||||
version: 2.3.1
|
version: 3.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- openkm
|
- openkm
|
||||||
- documentation management
|
- documentation management
|
||||||
- docs
|
- docs
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/openkm
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/openkm
|
||||||
icon: https://raw.githubusercontent.com/openkm/document-management-system/master/src/main/webapp/img/logo_favicon.ico
|
icon: https://raw.githubusercontent.com/openkm/document-management-system/master/src/main/webapp/img/logo_favicon.ico
|
||||||
sources:
|
sources:
|
||||||
- https://www.openkm.com/
|
- https://www.openkm.com/
|
||||||
- https://github.com/openkm/document-management-system
|
- https://github.com/openkm/document-management-system
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: carpenike
|
- name: carpenike
|
||||||
email: ryan@ryanholt.net
|
email: ryan@ryanholt.net
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# openkm
|
# openkm
|
||||||
|
|
||||||
![Version: 2.3.1](https://img.shields.io/badge/Version-2.3.1-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
|
![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
|
||||||
|
|
||||||
OpenKM integrates all essential documents management, collaboration and an advanced search functionality into one easy to use solution.
|
OpenKM integrates all essential documents management, collaboration and an advanced search functionality into one easy to use solution.
|
||||||
|
|
||||||
@ -19,9 +19,9 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -91,24 +91,25 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 3.0.0
|
||||||
|
|
||||||
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.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[2.0.0]: #200
|
#### Changed
|
||||||
[1.0.0]: #100
|
|
||||||
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/openkm?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -118,4 +119,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,27 +2,35 @@ apiVersion: v2
|
|||||||
appVersion: 2.7.1
|
appVersion: 2.7.1
|
||||||
description: A web-based collaborative LaTeX editor
|
description: A web-based collaborative LaTeX editor
|
||||||
name: overleaf
|
name: overleaf
|
||||||
version: 2.2.1
|
version: 2.3.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- overleaf
|
- overleaf
|
||||||
- sharelatex
|
- sharelatex
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/overleaf
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/overleaf
|
||||||
icon: https://avatars.githubusercontent.com/u/6359919?s=200&v=4
|
icon: https://avatars.githubusercontent.com/u/6359919?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/overleaf/overleaf
|
- https://github.com/overleaf/overleaf
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: bjw-s
|
- name: bjw-s
|
||||||
email: me@bjw-s.dev
|
email: me@bjw-s.dev
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: redis
|
- name: redis
|
||||||
version: 15.5.5
|
version: 15.6.10
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: redis.enabled
|
condition: redis.enabled
|
||||||
- name: mongodb
|
- name: mongodb
|
||||||
version: 10.28.7
|
version: 10.30.12
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mongodb.enabled
|
condition: mongodb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mongodb` chart dependency to version `10.30.12`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `redis` chart dependency to version `15.6.10`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# overleaf
|
# overleaf
|
||||||
|
|
||||||
![Version: 2.2.1](https://img.shields.io/badge/Version-2.2.1-informational?style=flat-square) ![AppVersion: 2.7.1](https://img.shields.io/badge/AppVersion-2.7.1-informational?style=flat-square)
|
![Version: 2.3.0](https://img.shields.io/badge/Version-2.3.0-informational?style=flat-square) ![AppVersion: 2.7.1](https://img.shields.io/badge/AppVersion-2.7.1-informational?style=flat-square)
|
||||||
|
|
||||||
A web-based collaborative LaTeX editor
|
A web-based collaborative LaTeX editor
|
||||||
|
|
||||||
@ -18,9 +18,9 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mongodb | 10.28.7 |
|
| https://charts.bitnami.com/bitnami | mongodb | 10.30.12 |
|
||||||
| https://charts.bitnami.com/bitnami | redis | 15.5.5 |
|
| https://charts.bitnami.com/bitnami | redis | 15.6.10 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -93,32 +93,25 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 2.3.0
|
||||||
|
|
||||||
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.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the redis dependency to version 15.x. Be sure to check out the [redis chart repo](https://github.com/bitnami/charts/tree/master/bitnami/redis) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- N/A
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mongodb` chart dependency to version `10.30.12`.
|
||||||
|
* Upgraded `redis` chart dependency to version `15.6.10`.
|
||||||
|
|
||||||
#### Removed
|
#### Fixed
|
||||||
|
|
||||||
- N/A
|
N/A
|
||||||
|
|
||||||
[2.0.0]: #200
|
### Older versions
|
||||||
[1.0.0]: #100
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/overleaf?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -128,4 +121,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,34 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the redis dependency to version 15.x. Be sure to check out the [redis chart repo](https://github.com/bitnami/charts/tree/master/bitnami/redis) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Removed
|
|
||||||
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,27 +2,35 @@ apiVersion: v2
|
|||||||
appVersion: 1.5.0
|
appVersion: 1.5.0
|
||||||
description: Paperless - Index and archive all of your scanned paper documents
|
description: Paperless - Index and archive all of your scanned paper documents
|
||||||
name: paperless
|
name: paperless
|
||||||
version: 8.2.1
|
version: 8.3.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- paperless
|
- paperless
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/paperless
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/paperless
|
||||||
icon: https://avatars.githubusercontent.com/u/47271576?s=200&v=4
|
icon: https://avatars.githubusercontent.com/u/47271576?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/jonaswinkler/paperless-ng
|
- https://github.com/jonaswinkler/paperless-ng
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: mr-onion-2
|
- name: mr-onion-2
|
||||||
- name: jonnobrow
|
- name: jonnobrow
|
||||||
email: jonathan@jonnobrow.co.uk
|
email: jonathan@jonnobrow.co.uk
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: redis
|
- name: redis
|
||||||
version: 15.5.5
|
version: 15.6.10
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: redis.enabled
|
condition: redis.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `redis` chart dependency to version `15.6.10`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# paperless
|
# paperless
|
||||||
|
|
||||||
![Version: 8.2.1](https://img.shields.io/badge/Version-8.2.1-informational?style=flat-square) ![AppVersion: 1.5.0](https://img.shields.io/badge/AppVersion-1.5.0-informational?style=flat-square)
|
![Version: 8.3.0](https://img.shields.io/badge/Version-8.3.0-informational?style=flat-square) ![AppVersion: 1.5.0](https://img.shields.io/badge/AppVersion-1.5.0-informational?style=flat-square)
|
||||||
|
|
||||||
Paperless - Index and archive all of your scanned paper documents
|
Paperless - Index and archive all of your scanned paper documents
|
||||||
|
|
||||||
@ -18,9 +18,9 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://charts.bitnami.com/bitnami | redis | 15.5.5 |
|
| https://charts.bitnami.com/bitnami | redis | 15.6.10 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -78,6 +78,7 @@ N/A
|
|||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| env | object | See below | See the following files for additional environment variables: https://github.com/jonaswinkler/paperless-ng/tree/master/docker/compose/ https://github.com/jonaswinkler/paperless-ng/blob/master/paperless.conf.example |
|
| env | object | See below | See the following files for additional environment variables: https://github.com/jonaswinkler/paperless-ng/tree/master/docker/compose/ https://github.com/jonaswinkler/paperless-ng/blob/master/paperless.conf.example |
|
||||||
| env.COMPOSE_PROJECT_NAME | string | `"paperless"` | Project name |
|
| env.COMPOSE_PROJECT_NAME | string | `"paperless"` | Project name |
|
||||||
|
| env.PAPERLESS_DBHOST | string | `nil` | Database host to use |
|
||||||
| env.PAPERLESS_OCR_LANGUAGE | string | `"eng"` | OCR languages to install |
|
| env.PAPERLESS_OCR_LANGUAGE | string | `"eng"` | OCR languages to install |
|
||||||
| env.PAPERLESS_REDIS | string | `nil` | Redis to use |
|
| env.PAPERLESS_REDIS | string | `nil` | Redis to use |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
@ -94,48 +95,25 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 8.3.0
|
||||||
|
|
||||||
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).
|
|
||||||
|
|
||||||
### [8.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the App Version to `1.5.0`
|
|
||||||
- Changed the image tag to `1.5.0`
|
|
||||||
- Include postgresql and redis charts from bitnami as Paperless supports both of these. This adds two new configuration sections and can replace the additionalContainers used for redis previously.
|
|
||||||
|
|
||||||
### [7.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [6.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed the image tag to `1.4.5`.
|
|
||||||
|
|
||||||
### [5.3.2]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated icon url.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[7.0.0]: #700
|
#### Changed
|
||||||
[6.0.0]: #600
|
|
||||||
[5.3.2]: #532
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
[1.0.0]: #100
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
* Upgraded `redis` chart dependency to version `15.6.10`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/paperless?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -145,4 +123,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [8.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the App Version to `1.5.0`
|
|
||||||
- Changed the image tag to `1.5.0`
|
|
||||||
- Include postgresql and redis charts from bitnami as Paperless supports both of these. This adds two new configuration sections and can replace the additionalContainers used for redis previously.
|
|
||||||
|
|
||||||
### [7.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [6.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed the image tag to `1.4.5`.
|
|
||||||
|
|
||||||
### [5.3.2]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated icon url.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[7.0.0]: #700
|
|
||||||
[6.0.0]: #600
|
|
||||||
[5.3.2]: #532
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v4.3.1
|
appVersion: v4.3.1
|
||||||
description: PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on most Unix derivatives. PowerDNS features a large number of different backends ranging from simple BIND style zonefiles to relational databases and load balancing/failover algorithms. A DNS recursor is provided as a separate program.
|
description: PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on most Unix derivatives. PowerDNS features a large number of different backends ranging from simple BIND style zonefiles to relational databases and load balancing/failover algorithms. A DNS recursor is provided as a separate program.
|
||||||
name: powerdns
|
name: powerdns
|
||||||
version: 3.5.1
|
version: 4.0.0
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/powerdns
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/powerdns
|
||||||
sources:
|
sources:
|
||||||
- http://www.github.com/PowerDNS/
|
- http://www.github.com/PowerDNS/
|
||||||
@ -12,10 +12,16 @@ maintainers:
|
|||||||
email: ryan@ryanholt.net
|
email: ryan@ryanholt.net
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# powerdns
|
# powerdns
|
||||||
|
|
||||||
![Version: 3.5.1](https://img.shields.io/badge/Version-3.5.1-informational?style=flat-square) ![AppVersion: v4.3.1](https://img.shields.io/badge/AppVersion-v4.3.1-informational?style=flat-square)
|
![Version: 4.0.0](https://img.shields.io/badge/Version-4.0.0-informational?style=flat-square) ![AppVersion: v4.3.1](https://img.shields.io/badge/AppVersion-v4.3.1-informational?style=flat-square)
|
||||||
|
|
||||||
PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on most Unix derivatives. PowerDNS features a large number of different backends ranging from simple BIND style zonefiles to relational databases and load balancing/failover algorithms. A DNS recursor is provided as a separate program.
|
PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on most Unix derivatives. PowerDNS features a large number of different backends ranging from simple BIND style zonefiles to relational databases and load balancing/failover algorithms. A DNS recursor is provided as a separate program.
|
||||||
|
|
||||||
@ -16,8 +16,8 @@ PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -80,22 +80,11 @@ N/A
|
|||||||
| image.repository | string | `"naps/powerdns"` | |
|
| image.repository | string | `"naps/powerdns"` | |
|
||||||
| image.tag | string | `"4.3.1"` | |
|
| image.tag | string | `"4.3.1"` | |
|
||||||
| imagePullSecrets | list | `[]` | |
|
| imagePullSecrets | list | `[]` | |
|
||||||
| mariadb.architecture | string | `"standalone"` | |
|
| mariadb | object | `{"architecture":"standalone","auth":{"database":"pdns","password":"pdns-pass","rootPassword":"pdnsrootpass","username":"pdns"},"enabled":false,"primary":{"persistence":{"enabled":false}}}` | ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb |
|
||||||
| mariadb.auth.database | string | `"pdns"` | |
|
|
||||||
| mariadb.auth.password | string | `"pdns-pass"` | |
|
|
||||||
| mariadb.auth.rootPassword | string | `"pdnsrootpass"` | |
|
|
||||||
| mariadb.auth.username | string | `"pdns"` | |
|
|
||||||
| mariadb.enabled | bool | `false` | |
|
|
||||||
| mariadb.primary.persistence.enabled | bool | `false` | |
|
|
||||||
| nameOverride | string | `""` | |
|
| nameOverride | string | `""` | |
|
||||||
| nodeSelector | object | `{}` | |
|
| nodeSelector | object | `{}` | |
|
||||||
| podSecurityContext | object | `{}` | |
|
| podSecurityContext | object | `{}` | |
|
||||||
| postgresql.enabled | bool | `true` | |
|
| postgresql | object | `{"enabled":true,"persistence":{"enabled":false},"postgresqlDatabase":"pdns","postgresqlPassword":"pdnspass","postgresqlPostgresPassword":"pdnsadminpass","postgresqlUsername":"pdns"}` | ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql |
|
||||||
| postgresql.persistence.enabled | bool | `false` | |
|
|
||||||
| postgresql.postgresqlDatabase | string | `"pdns"` | |
|
|
||||||
| postgresql.postgresqlPassword | string | `"pdnspass"` | |
|
|
||||||
| postgresql.postgresqlPostgresPassword | string | `"pdnsadminpass"` | |
|
|
||||||
| postgresql.postgresqlUsername | string | `"pdns"` | |
|
|
||||||
| powerdns.additionalEnv | list | `[]` | |
|
| powerdns.additionalEnv | list | `[]` | |
|
||||||
| powerdns.config | object | `{}` | |
|
| powerdns.config | object | `{}` | |
|
||||||
| powerdns.dnssec | bool | `true` | |
|
| powerdns.dnssec | bool | `true` | |
|
||||||
@ -124,37 +113,30 @@ N/A
|
|||||||
| service.port | int | `53` | |
|
| service.port | int | `53` | |
|
||||||
| service.type | string | `"ClusterIP"` | |
|
| service.type | string | `"ClusterIP"` | |
|
||||||
| serviceAccount.create | bool | `true` | |
|
| serviceAccount.create | bool | `true` | |
|
||||||
| serviceAccount.name | string | `nil` | |
|
| serviceAccount.name | string | `nil` | If not set and create is true, a name is generated using the fullname template |
|
||||||
| strategyType | string | `"Recreate"` | |
|
| strategyType | string | `"Recreate"` | |
|
||||||
| tolerations | list | `[]` | |
|
| tolerations | list | `[]` | |
|
||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.0.0
|
||||||
|
|
||||||
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).
|
#### Added
|
||||||
|
|
||||||
### [3.3.2]
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Updated changelog
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
### [3.2.2]
|
#### Fixed
|
||||||
|
|
||||||
#### Changed
|
N/A
|
||||||
|
|
||||||
- Updated icon url.
|
### Older versions
|
||||||
|
|
||||||
### [1.0.0]
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/powerdns?modal=changelog)
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- use helm-docs
|
|
||||||
|
|
||||||
[3.3.2]: #332
|
|
||||||
[3.2.2]: #322
|
|
||||||
[3.1.1]: #311
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -164,4 +146,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [3.3.2]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated changelog
|
|
||||||
|
|
||||||
### [3.2.2]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated icon url.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- use helm-docs
|
|
||||||
|
|
||||||
[3.3.2]: #332
|
|
||||||
[3.2.2]: #322
|
|
||||||
[3.1.1]: #311
|
|
||||||
{{- end -}}
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 2.7.1
|
appVersion: 2.7.1
|
||||||
description: A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
description: A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
||||||
name: shlink
|
name: shlink
|
||||||
version: 3.3.1
|
version: 4.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- shlink
|
- shlink
|
||||||
@ -17,12 +17,20 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# shlink
|
# shlink
|
||||||
|
|
||||||
![Version: 3.3.1](https://img.shields.io/badge/Version-3.3.1-informational?style=flat-square) ![AppVersion: 2.7.1](https://img.shields.io/badge/AppVersion-2.7.1-informational?style=flat-square)
|
![Version: 4.0.0](https://img.shields.io/badge/Version-4.0.0-informational?style=flat-square) ![AppVersion: 2.7.1](https://img.shields.io/badge/AppVersion-2.7.1-informational?style=flat-square)
|
||||||
|
|
||||||
A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
||||||
|
|
||||||
@ -18,9 +18,9 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -89,33 +89,25 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.0.0
|
||||||
|
|
||||||
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]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `2.7.1`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[3.0.0]: #300
|
#### Changed
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/shlink?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -125,4 +117,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `2.7.1`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,26 +2,30 @@ apiVersion: v2
|
|||||||
appVersion: v0.90.74
|
appVersion: v0.90.74
|
||||||
description: Status page for monitoring your websites and applications
|
description: Status page for monitoring your websites and applications
|
||||||
name: statping
|
name: statping
|
||||||
version: 5.3.1
|
version: 5.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- statping
|
- statping
|
||||||
- status
|
- status
|
||||||
- status-page
|
- status-page
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/statping
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/statping
|
||||||
icon: https://avatars.githubusercontent.com/u/61949049?s=200&v=4
|
icon: https://avatars.githubusercontent.com/u/61949049?s=200&v=4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/statping/statping
|
- https://github.com/statping/statping
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: DirtyCajunRice
|
- name: DirtyCajunRice
|
||||||
email: nick@cajun.pro
|
email: nick@cajun.pro
|
||||||
- name: angelnu
|
- name: angelnu
|
||||||
email: git@angelnu.com
|
email: git@angelnu.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# statping
|
# statping
|
||||||
|
|
||||||
![Version: 5.3.1](https://img.shields.io/badge/Version-5.3.1-informational?style=flat-square) ![AppVersion: v0.90.74](https://img.shields.io/badge/AppVersion-v0.90.74-informational?style=flat-square)
|
![Version: 5.4.0](https://img.shields.io/badge/Version-5.4.0-informational?style=flat-square) ![AppVersion: v0.90.74](https://img.shields.io/badge/AppVersion-v0.90.74-informational?style=flat-square)
|
||||||
|
|
||||||
Status page for monitoring your websites and applications
|
Status page for monitoring your websites and applications
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -99,41 +99,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 5.4.0
|
||||||
|
|
||||||
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).
|
#### Added
|
||||||
|
|
||||||
### [5.0.0]
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
### [4.0.0]
|
#### Fixed
|
||||||
|
|
||||||
#### Changed
|
N/A
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
### Older versions
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `v0.90.74`.
|
|
||||||
|
|
||||||
### [3.3.2]
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/statping?modal=changelog)
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated icon url
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Migrated to common library chart
|
|
||||||
- Moved `service.port` to `service.port.port`
|
|
||||||
|
|
||||||
[5.0.0]: #500
|
|
||||||
[4.0.0]: #400
|
|
||||||
[3.3.2]: #332
|
|
||||||
[2.0.0]: #200
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -143,4 +125,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -2,25 +2,29 @@ apiVersion: v2
|
|||||||
appVersion: v1.9
|
appVersion: v1.9
|
||||||
description: Teedy is an open source, lightweight document management system for individuals and businesses.
|
description: Teedy is an open source, lightweight document management system for individuals and businesses.
|
||||||
name: teedy
|
name: teedy
|
||||||
version: 5.3.1
|
version: 5.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- teedy
|
- teedy
|
||||||
- documents
|
- documents
|
||||||
- management
|
- management
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/teedy
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/teedy
|
||||||
icon: https://raw.githubusercontent.com/sismics/docs/v1.9/docs-web/src/main/resources/image/logo.png
|
icon: https://raw.githubusercontent.com/sismics/docs/v1.9/docs-web/src/main/resources/image/logo.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/sismics/docs
|
- https://github.com/sismics/docs
|
||||||
- https://github.com/k8s-at-home/charts/tree/master/charts/teedy
|
- https://github.com/k8s-at-home/charts/tree/master/charts/teedy
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: carpenike
|
- name: carpenike
|
||||||
email: ryan@ryanholt.net
|
email: ryan@ryanholt.net
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# teedy
|
# teedy
|
||||||
|
|
||||||
![Version: 5.3.1](https://img.shields.io/badge/Version-5.3.1-informational?style=flat-square) ![AppVersion: v1.9](https://img.shields.io/badge/AppVersion-v1.9-informational?style=flat-square)
|
![Version: 5.4.0](https://img.shields.io/badge/Version-5.4.0-informational?style=flat-square) ![AppVersion: v1.9](https://img.shields.io/badge/AppVersion-v1.9-informational?style=flat-square)
|
||||||
|
|
||||||
Teedy is an open source, lightweight document management system for individuals and businesses.
|
Teedy is an open source, lightweight document management system for individuals and businesses.
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -100,39 +100,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 5.4.0
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.4.1]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated icon url.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[5.0.0]: #500
|
#### Changed
|
||||||
[4.0.0]: #400
|
|
||||||
[3.4.1]: #341
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
[1.0.0]: #100
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/teedy?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -142,4 +126,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
---
|
---
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v1.23.4
|
appVersion: v1.23.4
|
||||||
description: A self-hosted data logger for your Tesla 🚘
|
description: "A self-hosted data logger for your Tesla \U0001F698"
|
||||||
name: teslamate
|
name: teslamate
|
||||||
version: 6.3.1
|
version: 6.4.0
|
||||||
keywords:
|
keywords:
|
||||||
- teslamate
|
- teslamate
|
||||||
- tesla
|
- tesla
|
||||||
@ -17,9 +17,13 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# teslamate
|
# teslamate
|
||||||
|
|
||||||
![Version: 6.3.1](https://img.shields.io/badge/Version-6.3.1-informational?style=flat-square) ![AppVersion: v1.23.4](https://img.shields.io/badge/AppVersion-v1.23.4-informational?style=flat-square)
|
![Version: 6.4.0](https://img.shields.io/badge/Version-6.4.0-informational?style=flat-square) ![AppVersion: v1.23.4](https://img.shields.io/badge/AppVersion-v1.23.4-informational?style=flat-square)
|
||||||
|
|
||||||
A self-hosted data logger for your Tesla 🚘
|
A self-hosted data logger for your Tesla 🚘
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ A self-hosted data logger for your Tesla 🚘
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -92,52 +92,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 6.4.0
|
||||||
|
|
||||||
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).
|
#### Added
|
||||||
|
|
||||||
### [6.1.3]
|
N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
|
|
||||||
- Updated chart URL's.
|
N/A
|
||||||
|
|
||||||
### [6.0.0]
|
### Older versions
|
||||||
|
|
||||||
#### Changed
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/teslamate?modal=changelog)
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `1.23.4`.
|
|
||||||
- Provide dynamic default values for database environment vars.
|
|
||||||
- Provide sane default values for postgresql chart.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
|
||||||
|
|
||||||
#### Removed
|
|
||||||
|
|
||||||
- test-connection
|
|
||||||
|
|
||||||
### [3.6.1]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- use helm-docs
|
|
||||||
|
|
||||||
[6.0.0]: #600
|
|
||||||
[5.0.0]: #500
|
|
||||||
[4.0.0]: #400
|
|
||||||
[3.6.1]: #361
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -147,4 +118,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -2,24 +2,30 @@ apiVersion: v2
|
|||||||
appVersion: v4.13
|
appVersion: v4.13
|
||||||
description: Traccar is an open source GPS tracking system.
|
description: Traccar is an open source GPS tracking system.
|
||||||
name: traccar
|
name: traccar
|
||||||
version: 6.3.1
|
version: 7.0.0
|
||||||
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"
|
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
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: billimek
|
- name: billimek
|
||||||
email: jeff@billimek.com
|
email: jeff@billimek.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# traccar
|
# traccar
|
||||||
|
|
||||||
![Version: 6.3.1](https://img.shields.io/badge/Version-6.3.1-informational?style=flat-square) ![AppVersion: v4.13](https://img.shields.io/badge/AppVersion-v4.13-informational?style=flat-square)
|
![Version: 7.0.0](https://img.shields.io/badge/Version-7.0.0-informational?style=flat-square) ![AppVersion: v4.13](https://img.shields.io/badge/AppVersion-v4.13-informational?style=flat-square)
|
||||||
|
|
||||||
Traccar is an open source GPS tracking system.
|
Traccar is an open source GPS tracking system.
|
||||||
|
|
||||||
@ -19,8 +19,8 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -90,40 +90,24 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 7.0.0
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `4.13`.
|
|
||||||
|
|
||||||
### [4.3.2]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added icon url
|
N/A
|
||||||
|
|
||||||
### [1.0.0]
|
#### Changed
|
||||||
|
|
||||||
#### Added
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
|
||||||
- Initial version
|
#### Fixed
|
||||||
|
|
||||||
[6.0.0]: #600
|
N/A
|
||||||
[5.0.0]: #500
|
|
||||||
[4.3.2]: #432
|
### Older versions
|
||||||
[1.0.0]: #100
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/traccar?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -133,4 +117,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [6.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed image tag to `4.13`.
|
|
||||||
|
|
||||||
### [4.3.2]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Added icon url
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
|
|
||||||
[6.0.0]: #600
|
|
||||||
[5.0.0]: #500
|
|
||||||
[4.3.2]: #432
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,22 +2,26 @@ apiVersion: v2
|
|||||||
appVersion: v1.8723.0
|
appVersion: v1.8723.0
|
||||||
description: Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator
|
description: Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator
|
||||||
name: tt-rss
|
name: tt-rss
|
||||||
version: 4.3.1
|
version: 4.4.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- tt-rss
|
- tt-rss
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/tt-rss
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/tt-rss
|
||||||
icon: https://git.tt-rss.org/fox/tt-rss/raw/branch/master/images/favicon-72px.png
|
icon: https://git.tt-rss.org/fox/tt-rss/raw/branch/master/images/favicon-72px.png
|
||||||
sources:
|
sources:
|
||||||
- https://git.tt-rss.org/fox/tt-rss
|
- https://git.tt-rss.org/fox/tt-rss
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: angelnu
|
- name: angelnu
|
||||||
email: git@angelnu.com
|
email: git@angelnu.com
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# tt-rss
|
# tt-rss
|
||||||
|
|
||||||
![Version: 4.3.1](https://img.shields.io/badge/Version-4.3.1-informational?style=flat-square) ![AppVersion: v1.8723.0](https://img.shields.io/badge/AppVersion-v1.8723.0-informational?style=flat-square)
|
![Version: 4.4.0](https://img.shields.io/badge/Version-4.4.0-informational?style=flat-square) ![AppVersion: v1.8723.0](https://img.shields.io/badge/AppVersion-v1.8723.0-informational?style=flat-square)
|
||||||
|
|
||||||
Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator
|
Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -97,34 +97,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.4.0
|
||||||
|
|
||||||
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).
|
#### Added
|
||||||
|
|
||||||
### [4.0.0]
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
### [3.0.0]
|
#### Fixed
|
||||||
|
|
||||||
#### Changed
|
N/A
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.1.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
### Older versions
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.1.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.6]
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/tt-rss?modal=changelog)
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Use generated template
|
|
||||||
- Use k8s-at-home repository
|
|
||||||
- Generate helm-docs
|
|
||||||
|
|
||||||
[4.0.0]: #400
|
|
||||||
[3.0.0]: #300
|
|
||||||
[1.0.6]: #106
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -134,4 +123,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v6.5.54
|
appVersion: v6.5.54
|
||||||
description: Ubiquiti Network's Unifi Controller
|
description: Ubiquiti Network's Unifi Controller
|
||||||
name: unifi
|
name: unifi
|
||||||
version: 4.5.0
|
version: 4.6.0
|
||||||
keywords:
|
keywords:
|
||||||
- ubiquiti
|
- ubiquiti
|
||||||
- unifi
|
- unifi
|
||||||
@ -16,10 +16,16 @@ maintainers:
|
|||||||
- name: mcronce
|
- name: mcronce
|
||||||
email: mike@quadra-tec.net
|
email: mike@quadra-tec.net
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: mongodb
|
- name: mongodb
|
||||||
version: 10.28.7
|
version: 10.30.12
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mongodb.enabled
|
condition: mongodb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mongodb` chart dependency to version `10.30.12`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# unifi
|
# unifi
|
||||||
|
|
||||||
![Version: 4.5.0](https://img.shields.io/badge/Version-4.5.0-informational?style=flat-square) ![AppVersion: v6.5.54](https://img.shields.io/badge/AppVersion-v6.5.54-informational?style=flat-square)
|
![Version: 4.6.0](https://img.shields.io/badge/Version-4.6.0-informational?style=flat-square) ![AppVersion: v6.5.54](https://img.shields.io/badge/AppVersion-v6.5.54-informational?style=flat-square)
|
||||||
|
|
||||||
Ubiquiti Network's Unifi Controller
|
Ubiquiti Network's Unifi Controller
|
||||||
|
|
||||||
@ -16,8 +16,8 @@ Ubiquiti Network's Unifi Controller
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mongodb | 10.28.7 |
|
| https://charts.bitnami.com/bitnami | mongodb | 10.30.12 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -145,82 +145,24 @@ service:
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.6.0
|
||||||
|
|
||||||
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.5.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Bump controller version to 6.5.54
|
|
||||||
|
|
||||||
### [4.2.2]
|
|
||||||
|
|
||||||
#### Fixed
|
|
||||||
|
|
||||||
- Move HTTPS protocol declaration for default web UI port from ingress annotations to service port attribute.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.1.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Support for running with an external MongoDB instance has been reimplemented.
|
N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mongodb` chart dependency to version `10.30.12`.
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
|
|
||||||
- The chart is now compatible again with PVC's that were created with chart versions < 3.0.0.
|
N/A
|
||||||
|
|
||||||
### [3.0.0]
|
### Older versions
|
||||||
|
|
||||||
#### Changed
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/unifi?modal=changelog)
|
||||||
|
|
||||||
- **BREAKING**: Migrated chart to common library. This means that there are many things that work different from before. Please check the `values.yaml` file for the current implementation.
|
|
||||||
- Changed image tag to `v6.2.26`.
|
|
||||||
|
|
||||||
#### Removed
|
|
||||||
|
|
||||||
- **BREAKING**: Removed support for deploying a separate MongoDB instance.
|
|
||||||
- **BREAKING**: Removed support for specifying custom configMaps in chart values.
|
|
||||||
- **BREAKING**: Removed chart-specific Promtail implementation. This can be replaced by using the common library charts Promtail add-on.
|
|
||||||
|
|
||||||
### [2.0.4]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Bump controller version to 6.2.25
|
|
||||||
|
|
||||||
### [2.0.2]
|
|
||||||
|
|
||||||
#### Fixed
|
|
||||||
|
|
||||||
- Separate syslog service is only created when enabled and unifiedService is disabled.
|
|
||||||
|
|
||||||
### [2.0.1]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated icon url
|
|
||||||
|
|
||||||
### [1.5.3]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Use helm-docs
|
|
||||||
|
|
||||||
[4.0.0]: #400
|
|
||||||
[3.1.0]: #310
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.0.4]: #204
|
|
||||||
[2.0.2]: #202
|
|
||||||
[2.0.1]: #201
|
|
||||||
[1.5.3]: #153
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -230,4 +172,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,84 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [4.5.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Bump controller version to 6.5.54
|
|
||||||
|
|
||||||
### [4.2.2]
|
|
||||||
|
|
||||||
#### Fixed
|
|
||||||
|
|
||||||
- Move HTTPS protocol declaration for default web UI port from ingress annotations to service port attribute.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.1.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Support for running with an external MongoDB instance has been reimplemented.
|
|
||||||
|
|
||||||
#### Fixed
|
|
||||||
|
|
||||||
- The chart is now compatible again with PVC's that were created with chart versions < 3.0.0.
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Migrated chart to common library. This means that there are many things that work different from before. Please check the `values.yaml` file for the current implementation.
|
|
||||||
- Changed image tag to `v6.2.26`.
|
|
||||||
|
|
||||||
#### Removed
|
|
||||||
|
|
||||||
- **BREAKING**: Removed support for deploying a separate MongoDB instance.
|
|
||||||
- **BREAKING**: Removed support for specifying custom configMaps in chart values.
|
|
||||||
- **BREAKING**: Removed chart-specific Promtail implementation. This can be replaced by using the common library charts Promtail add-on.
|
|
||||||
|
|
||||||
### [2.0.4]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Bump controller version to 6.2.25
|
|
||||||
|
|
||||||
### [2.0.2]
|
|
||||||
|
|
||||||
#### Fixed
|
|
||||||
|
|
||||||
- Separate syslog service is only created when enabled and unifiedService is disabled.
|
|
||||||
|
|
||||||
### [2.0.1]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Updated icon url
|
|
||||||
|
|
||||||
### [1.5.3]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Use helm-docs
|
|
||||||
|
|
||||||
[4.0.0]: #400
|
|
||||||
[3.1.0]: #310
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.0.4]: #204
|
|
||||||
[2.0.2]: #202
|
|
||||||
[2.0.1]: #201
|
|
||||||
[1.5.3]: #153
|
|
||||||
{{- end -}}
|
|
@ -2,27 +2,35 @@ apiVersion: v2
|
|||||||
appVersion: 1.22.2
|
appVersion: 1.22.2
|
||||||
description: Vaultwarden is a Bitwarden compatable server in Rust
|
description: Vaultwarden is a Bitwarden compatable server in Rust
|
||||||
name: vaultwarden
|
name: vaultwarden
|
||||||
version: 3.3.2
|
version: 4.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- Vaultwarden
|
- Vaultwarden
|
||||||
- bitwardenrs
|
- bitwardenrs
|
||||||
home: "https://github.com/k8s-at-home/charts/tree/master/charts/stable/vaultwarden"
|
home: "https://github.com/k8s-at-home/charts/tree/master/charts/stable/vaultwarden"
|
||||||
icon: "https://sesoodan.sirv.com/bitwarden_rs.png"
|
icon: "https://sesoodan.sirv.com/bitwarden_rs.png"
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/dani-garcia/vaultwarden
|
- https://github.com/dani-garcia/vaultwarden
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Rwaltr
|
- name: Rwaltr
|
||||||
email: rwalt@pm.me
|
email: rwalt@pm.me
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# vaultwarden
|
# vaultwarden
|
||||||
|
|
||||||
![Version: 3.3.2](https://img.shields.io/badge/Version-3.3.2-informational?style=flat-square) ![AppVersion: 1.22.2](https://img.shields.io/badge/AppVersion-1.22.2-informational?style=flat-square)
|
![Version: 4.0.0](https://img.shields.io/badge/Version-4.0.0-informational?style=flat-square) ![AppVersion: 1.22.2](https://img.shields.io/badge/AppVersion-1.22.2-informational?style=flat-square)
|
||||||
|
|
||||||
Vaultwarden is a Bitwarden compatable server in Rust
|
Vaultwarden is a Bitwarden compatable server in Rust
|
||||||
|
|
||||||
@ -18,9 +18,9 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -99,59 +99,25 @@ persistence:
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 4.0.0
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
### [3.3.2]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Ingress config uses port names. Now there is no need to update port in both service and rember to change it in ingress
|
|
||||||
|
|
||||||
### [3.2.1]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Mentioned that some kind of persistence is required on `/config` mountpoint.
|
N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
|
|
||||||
- Updated ct-values to properly create emptyDir
|
N/A
|
||||||
|
|
||||||
### [3.1.3]
|
### Older versions
|
||||||
|
|
||||||
#### Changed
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/vaultwarden?modal=changelog)
|
||||||
|
|
||||||
- Bump version to 1.22.2
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Pre-rendered Ingress example (disabled by default)
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version, Succeding Bitwarden_RS.
|
|
||||||
|
|
||||||
[3.1.3]: #313
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -161,4 +127,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,61 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [3.3.2]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Ingress config uses port names. Now there is no need to update port in both service and rember to change it in ingress
|
|
||||||
|
|
||||||
### [3.2.1]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Mentioned that some kind of persistence is required on `/config` mountpoint.
|
|
||||||
|
|
||||||
#### Fixed
|
|
||||||
|
|
||||||
- Updated ct-values to properly create emptyDir
|
|
||||||
|
|
||||||
### [3.1.3]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Bump version to 1.22.2
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [2.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Pre-rendered Ingress example (disabled by default)
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version, Succeding Bitwarden_RS.
|
|
||||||
|
|
||||||
[3.1.3]: #313
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.0.0]: #200
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 0.17.0
|
appVersion: 0.17.0
|
||||||
description: The to-do app to organize your life
|
description: The to-do app to organize your life
|
||||||
name: vikunja
|
name: vikunja
|
||||||
version: 5.1.1
|
version: 5.2.0
|
||||||
keywords:
|
keywords:
|
||||||
- vikunja
|
- vikunja
|
||||||
- to-do
|
- to-do
|
||||||
@ -25,6 +25,10 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.2.0
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# vikunja
|
# vikunja
|
||||||
|
|
||||||
![Version: 5.1.1](https://img.shields.io/badge/Version-5.1.1-informational?style=flat-square) ![AppVersion: 0.17.0](https://img.shields.io/badge/AppVersion-0.17.0-informational?style=flat-square)
|
![Version: 5.2.0](https://img.shields.io/badge/Version-5.2.0-informational?style=flat-square) ![AppVersion: 0.17.0](https://img.shields.io/badge/AppVersion-0.17.0-informational?style=flat-square)
|
||||||
|
|
||||||
The to-do app to organize your life
|
The to-do app to organize your life
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ The to-do app to organize your life
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
@ -81,6 +81,7 @@ N/A
|
|||||||
| additionalContainers.api | object | See values.yaml | Set up the vikunja API container. |
|
| additionalContainers.api | object | See values.yaml | Set up the vikunja API container. |
|
||||||
| additionalContainers.api.env | list | See below | You can declare most Vikunja parameters as environment variables. Please consult https://vikunja.io/docs/config-options/ to see all parameters. Note that parameters that are an array cannot be defined as environment variables (like the OpenID Connect settings). Use the vikunja.config Value for that. |
|
| additionalContainers.api.env | list | See below | You can declare most Vikunja parameters as environment variables. Please consult https://vikunja.io/docs/config-options/ to see all parameters. Note that parameters that are an array cannot be defined as environment variables (like the OpenID Connect settings). Use the vikunja.config Value for that. |
|
||||||
| additionalContainers.api.image | string | `"vikunja/api:0.17.1"` | Vikunja api image and tag |
|
| additionalContainers.api.image | string | `"vikunja/api:0.17.1"` | Vikunja api image and tag |
|
||||||
|
| additionalContainers.api.volumeMounts | list | `[{"mountPath":"/etc/vikunja/config.yml","name":"vikunja-config","subPath":"Vikunja.yml"}]` | value: myVeryComplexJWTSecret - name: VIKUNJA_DATABASE_TYPE value: "postgres" - name: VIKUNJA_DATABASE_HOST value: db - name: VIKUNJA_DATABASE_DATABASE value: vikunja - name: VIKUNJA_DATABASE_USER value: "vikunja" - name: VIKUNJA_DATABASE_PASSWORD value: password |
|
||||||
| additionalContainers.frontend | object | See values.yaml | Set up the vikunja frontend container. |
|
| additionalContainers.frontend | object | See values.yaml | Set up the vikunja frontend container. |
|
||||||
| additionalContainers.frontend.image | string | `"vikunja/frontend:0.17.0"` | Vikunja frontend image and tag |
|
| additionalContainers.frontend.image | string | `"vikunja/frontend:0.17.0"` | Vikunja frontend image and tag |
|
||||||
| caddy.noTls | bool | `false` | Disable auto tls if behind another loadbalancer or ingress |
|
| caddy.noTls | bool | `false` | Disable auto tls if behind another loadbalancer or ingress |
|
||||||
@ -95,43 +96,23 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 5.2.0
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Introduced a new configuration value called `vikunja.config` that allows you to provide configuration to Vikunja in a more straightforward way. Most notably: this allows you to configure all options, including any options that expect a list or array. See the [Vikunja documentation](https://vikunja.io/docs/config-options/) for all options.
|
|
||||||
- **Potentially breaking**: The new `vikunja.config` value defaults might conflict with existing `additionalContainers.api.env` configuration. Be sure to double check this before upgrading.
|
|
||||||
- Add `caddy.noTls` configuration value to allow suppression of Caddy's Let's Encrypt feature (e.g. to allow an Ingress controller like Traefik to handle this instead).
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Changed api image tag to `0.17.1`.
|
|
||||||
- Changed frontend image tag to `0.17.0`.
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
N/A
|
||||||
|
|
||||||
[5.0.0]: #500
|
#### Changed
|
||||||
[4.0.0]: #400
|
|
||||||
[3.0.0]: #300
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
[1.0.0]: #100
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/vikunja?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -141,4 +122,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -2,31 +2,41 @@ apiVersion: v2
|
|||||||
appVersion: 2.4.2
|
appVersion: 2.4.2
|
||||||
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: 5.2.1
|
version: 6.0.0
|
||||||
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"
|
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
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Patricol
|
- name: Patricol
|
||||||
url: https://patricol.co/
|
url: https://patricol.co/
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.2.0
|
version: 4.3.0
|
||||||
- name: redis
|
- name: redis
|
||||||
version: 15.5.5
|
version: 15.6.10
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: redis.enabled
|
condition: redis.enabled
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.13.10
|
version: 10.14.4
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.7.1
|
version: 10.2.0
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: mariadb.enabled
|
condition: mariadb.enabled
|
||||||
|
annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
- kind: changed
|
||||||
|
description: Upgraded `redis` chart dependency to version `15.6.10`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# wallabag
|
# wallabag
|
||||||
|
|
||||||
![Version: 5.2.1](https://img.shields.io/badge/Version-5.2.1-informational?style=flat-square) ![AppVersion: 2.4.2](https://img.shields.io/badge/AppVersion-2.4.2-informational?style=flat-square)
|
![Version: 6.0.0](https://img.shields.io/badge/Version-6.0.0-informational?style=flat-square) ![AppVersion: 2.4.2](https://img.shields.io/badge/AppVersion-2.4.2-informational?style=flat-square)
|
||||||
|
|
||||||
A self hostable application for saving web pages, freely.
|
A self hostable application for saving web pages, freely.
|
||||||
|
|
||||||
@ -19,10 +19,10 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.7.1 |
|
| https://charts.bitnami.com/bitnami | mariadb | 10.2.0 |
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.13.10 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.14.4 |
|
||||||
| https://charts.bitnami.com/bitnami | redis | 15.5.5 |
|
| https://charts.bitnami.com/bitnami | redis | 15.6.10 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
|
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@ -93,48 +93,26 @@ Default login is `wallabag:wallabag`.
|
|||||||
|
|
||||||
## Changelog
|
## 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).
|
### Version 6.0.0
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the redis dependency to version 15.x. Be sure to check out the [redis chart repo](https://github.com/bitnami/charts/tree/master/bitnami/redis) for the up-to-date values.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Removed default controller type
|
|
||||||
- Changed image tag to `2.4.2`.
|
|
||||||
|
|
||||||
### [2.4.1]
|
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Icon url
|
N/A
|
||||||
|
|
||||||
### [1.0.0]
|
#### Changed
|
||||||
|
|
||||||
#### Added
|
* Upgraded `common` chart dependency to version `4.3.0`.
|
||||||
|
* Upgraded `mariadb` chart dependency to version `10.2.0`.
|
||||||
|
* Upgraded `postgresql` chart dependency to version `10.14.4`.
|
||||||
|
* Upgraded `redis` chart dependency to version `15.6.10`.
|
||||||
|
|
||||||
- Initial version of the chart
|
#### Fixed
|
||||||
|
|
||||||
[5.0.0]: #500
|
N/A
|
||||||
[4.0.0]: #400
|
|
||||||
[3.0.0]: #300
|
### Older versions
|
||||||
[2.4.1]: #241
|
|
||||||
[1.0.0]: #100
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/wallabag?modal=changelog)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
@ -144,4 +122,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 v0.1.1](https://github.com/k8s-at-home/helm-docs/releases/v0.1.1)
|
||||||
|
@ -106,6 +106,36 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
- Join our [Discord](https://discord.gg/sTMX7Vh) community
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "custom.changelog" -}}
|
||||||
|
{{ $changeTypes := list "added" "changed" "fixed" }}
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### Version {{ template "chart.version" . }}
|
||||||
|
|
||||||
|
{{ range $changeType := $changeTypes }}
|
||||||
|
{{- with (index $.Annotations "artifacthub.io/changes") }}
|
||||||
|
{{- print "#### " ($changeType | title) | nindent 0 }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- $changesFound := false }}
|
||||||
|
{{- range (print "changes:\n" . | fromYaml).changes }}
|
||||||
|
{{- if eq .kind $changeType }}
|
||||||
|
{{- print "* " .description | nindent 0 }}
|
||||||
|
{{- $changesFound = true }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if not $changesFound }}
|
||||||
|
{{- print "N/A" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- print "" | nindent 0 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
### Older versions
|
||||||
|
|
||||||
|
A historical overview of changes can be found on [ArtifactHUB](https://artifacthub.io/packages/helm/k8s-at-home/{{- template "chart.name" . }}?modal=changelog)
|
||||||
|
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
{{ template "chart.header" . }}
|
{{ template "chart.header" . }}
|
||||||
|
|
||||||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
{{- 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).
|
|
||||||
|
|
||||||
### [5.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the redis dependency to version 15.x. Be sure to check out the [redis chart repo](https://github.com/bitnami/charts/tree/master/bitnami/redis) for the up-to-date values.
|
|
||||||
|
|
||||||
### [4.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- Upgraded the common library dependency to version 4.0.0. This introduced (potentially) breaking changes to `initContainers` and `additionalContainers`. Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-4.0.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
|
|
||||||
### [3.0.0]
|
|
||||||
|
|
||||||
#### Changed
|
|
||||||
|
|
||||||
- **BREAKING**: Upgraded the common library dependency to version 3.2.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
|
||||||
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.2.0/charts/stable/common/) for the up-to-date values.
|
|
||||||
- Removed default controller type
|
|
||||||
- Changed image tag to `2.4.2`.
|
|
||||||
|
|
||||||
### [2.4.1]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Icon url
|
|
||||||
|
|
||||||
### [1.0.0]
|
|
||||||
|
|
||||||
#### Added
|
|
||||||
|
|
||||||
- Initial version of the chart
|
|
||||||
|
|
||||||
[5.0.0]: #500
|
|
||||||
[4.0.0]: #400
|
|
||||||
[3.0.0]: #300
|
|
||||||
[2.4.1]: #241
|
|
||||||
[1.0.0]: #100
|
|
||||||
{{- end -}}
|
|
Loading…
Reference in New Issue
Block a user