Compare commits

...

3 Commits

Author SHA1 Message Date
ᗪєνιη ᗷυнʟ
5714a48d9b fix: update releases (#736) 2021-03-29 19:56:40 -04:00
renovate[bot]
7c477c4a0e chore(deps): update helm chart common to v2.1.0 (#735)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-03-29 18:05:18 -04:00
Chris Golden
8def5650cd [Bitwardenrs] A feature add on for ldapsync and vpn (#734)
* Bitwardenrs-ldap: Implement ldapsync and vpn extra container

* Add blank new line

Signed-off-by: Christopher Golden <christopher.golden@bike24.net>
2021-03-29 11:34:48 -04:00
100 changed files with 324 additions and 185 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 10.6.2
description: Airsonic is a Free and Open Source community driven media server
name: airsonic
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- airsonic
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.4.2
description: Bot for Prometheus Alertmanager
name: alertmanager-bot
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- alertmanager
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.0.5
description: AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution environment for writing automation apps for various types of Home Automation Software including Home Assistant and MQTT.
name: appdaemon
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- appdaemon
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.9.0.5
description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
name: bazarr
version: 7.0.1
version: 7.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- bazarr
@@ -22,4 +22,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
name: bitwardenrs
description: Unofficial Bitwarden compatible server written in Rust
type: application
version: 2.0.2
version: 2.1.0
appVersion: 1.18.0
keywords:
- bitwarden

View File

@@ -62,6 +62,14 @@ Alternatively, a YAML file that specifies the values for the above parameters ca
helm install bitwardenrs k8s-at-home/bitwardenrs -f values.yaml
```
### Ldap-Sync
Via [vividboarder/bitwarden_rs_ldap](https://github.com/ViViDboarder/bitwarden_rs_ldap) it is possible to fetch your user base from an ldap server of your choosing. If ldapSync.enabled is true you will get the opportunity to use an ldap server which could assist with inviting users.
With the ldapSync.extraContainers and ldapSync.extraVolumes values you're able to customize the ldap-sync pod.
For example with environments that require a secure connection to an LDAP server you can add a VPN container, which enables the sync container to communicate over a VPN.
## Custom configuration
N/A
@@ -129,6 +137,11 @@ N/A
| ingress.hosts[0].host | string | `"chart-example.local"` | |
| ingress.hosts[0].paths | list | `[]` | |
| ingress.tls | list | `[]` | |
| ldapSync.configToml | string | `"bitwarden_url = \"http://bitwarden:80\"\nbitwarden_admin_token = \"admin\"\nldap_host = \"ldap\"\nldap_bind_dn = \"cn=admin,dc=example,dc=org\"\nldap_bind_password = \"admin\"\nldap_search_base_dn = \"dc=example,dc=org\"\nldap_search_filter = \"(&(objectClass=*)(uid=*))\"\nldap_sync_interval_seconds = 10"` | |
| ldapSync.enabled | bool | `false` | |
| ldapSync.existingSecret | string | `""` | |
| ldapSync.extraContainers | list | `[]` | |
| ldapSync.extraVolumes | list | `[]` | |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| persistence.accessMode | string | `"ReadWriteOnce"` | |

View File

@@ -3,6 +3,14 @@
{{- end -}}
{{- define "custom.custom.configuration" -}}
### Ldap-Sync
Via [vividboarder/bitwarden_rs_ldap](https://github.com/ViViDboarder/bitwarden_rs_ldap) it is possible to fetch your user base from an ldap server of your choosing. If ldapSync.enabled is true you will get the opportunity to use an ldap server which could assist with inviting users.
With the ldapSync.extraContainers and ldapSync.extraVolumes values you're able to customize the ldap-sync pod.
For example with environments that require a secure connection to an LDAP server you can add a VPN container, which enables the sync container to communicate over a VPN.
{{ template "custom.custom.configuration.header" . }}
N/A

View File

@@ -51,6 +51,20 @@ app.kubernetes.io/name: {{ include "bitwardenrs.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}
{{/*
Ldap labels
*/}}
{{- define "bitwardenrsLdap.labels" -}}
helm.sh/chart: {{ include "bitwardenrs.chart" . }}
{{ include "bitwardenrsLdap.selectorLabels" . }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end -}}
{{- define "bitwardenrsLdap.selectorLabels" -}}
app.kubernetes.io/name: {{ include "bitwardenrs.name" . }}-ldap
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end -}}
{{/*
Create the name of the service account to use
*/}}

View File

@@ -0,0 +1,46 @@
{{- if and (.Values.ldapSync.enabled) (not .Values.ldapSync.existinSecret) }}
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
{{- include "bitwardenrsLdap.labels" . | nindent 4 }}
name: {{ include "bitwardenrs.name" . }}-ldap
spec:
selector:
matchLabels:
{{- include "bitwardenrsLdap.selectorLabels" . | nindent 6 }}
replicas: 1
template:
metadata:
labels:
{{- include "bitwardenrsLdap.selectorLabels" . | nindent 8 }}
spec:
initContainers:
containers:
- name: ldap-sync
image: vividboarder/bitwarden_rs_ldap
imagePullPolicy: Always
env:
- name: CONFIG_PATH
value: "/etc/bitwarden/config.toml"
- name: RUST_BACKTRACE
value: "full"
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /etc/bitwarden
name: {{ if .Values.ldapSync.existingSecret }}{{ .Values.ldapSync.existingSecret }}{{ else }}{{ include "bitwardenrs.name" . }}-ldap{{ end }}
readOnly: true
{{- if .Values.ldapSync.extraContainers }}
{{- toYaml .Values.ldapSync.extraContainers | nindent 8 }}
{{- end }}
volumes:
- name: {{ include "bitwardenrs.name" . }}-ldap
secret:
defaultMode: 420
secretName: {{ if .Values.ldapSync.existingSecret }}{{ .Values.ldapSync.existingSecret }}{{ else }}{{ include "bitwardenrs.name" . }}-ldap{{ end }}
{{- if .Values.ldapSync.extraVolumes }}
{{- toYaml .Values.ldapSync.extraVolumes | nindent 8 }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,11 @@
{{- if and (.Values.ldapSync.enabled) (not .Values.ldapSync.existinSecret) }}
apiVersion: v1
data:
config.toml: {{ .Values.ldapSync.configToml | b64enc }}
kind: Secret
metadata:
labels:
{{- include "bitwardenrsLdap.labels" . | nindent 4 }}
name: {{ include "bitwardenrs.name" . -}}-ldap
type: Opaque
{{- end }}

View File

@@ -4,8 +4,8 @@ kind: Secret
metadata:
name: {{ template "bitwardenrs.fullname" . }}
labels:
{{- include "bitwardenrs.labels" . | nindent 4 }}
{{- include "bitwardenrs.labels" . | nindent 4 }}
type: Opaque
data:
admin-token: {{ randAlphaNum 48 | b64enc | quote }}
{{- end }}
{{- end }}

View File

@@ -176,3 +176,46 @@ nodeSelector: {}
tolerations: []
affinity: {}
ldapSync:
enabled: false
# Configuration file for ldap server connection
configToml: |-
bitwarden_url = "http://bitwarden:80"
bitwarden_admin_token = "admin"
ldap_host = "ldap"
ldap_bind_dn = "cn=admin,dc=example,dc=org"
ldap_bind_password = "admin"
ldap_search_base_dn = "dc=example,dc=org"
ldap_search_filter = "(&(objectClass=*)(uid=*))"
ldap_sync_interval_seconds = 10
# Use existing secret for config.toml
existingSecret: ""
# Add extra containers
extraContainers: []
# - name: vpn
# image: dperson/openvpn-client
# command: ["/bin/sh","-c"]
# args: ["openvpn --config 'vpn/client.ovpn' --script-security 3;"]
# stdin: true
# tty: true
# securityContext:
# privileged: true
# capabilities:
# add:
# - NET_ADMIN
# env:
# - name: DE
# value: "Berlin"
# volumeMounts:
# - name: bitwardenrs-vpn
# mountPath: /vpn/client.ovpn
# subPath: client.ovpn
# Add extra volumes
extraVolumes: []
# - name: bitwarden-vpn
# secret:
# secretName: bitwardenrs-vpn
# items:
# - key: client.ovpn
# path: client.ovpn

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.13
description: DNS proxy as ad-blocker for local network
name: blocky
version: 6.0.0
version: 6.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- blocky
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2009.1.0
description: Booksonic is a platform for accessing the audibooks you own wherever you are
name: booksonic-air
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- booksonic
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.6.9
description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
name: calibre-web
version: 6.0.1
version: 6.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- calibre
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -4,7 +4,7 @@ apiVersion: v2
appVersion: 5.13.0
description: Calibre is a powerful and easy to use e-book manager.
name: calibre
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- calibre
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.10.03
description: deCONZ is an easy to use control software, with which you can set up and control Zigbee networks of any size without further programming effort.
name: deconz
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- deconz
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.0.3-2201906121747
description: Deluge is a torrent download client
name: deluge
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- deluge
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.3.0
description: Create live TV channel streams from media on your Plex servers.
name: dizquetv
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- dizqueTV
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.0.0
description: Cert-Manager Webhook for DNSMadeEasy
name: dnsmadeeasy-webhook
version: 2.0.1
version: 2.1.1
keywords:
- cert-manager
- dnsmadeeasy
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v4.9.0
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
name: dsmr-reader
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- dsmr-reader
@@ -18,7 +18,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: postgresql
version: 10.3.7
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.16.2
description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
name: esphome
version: 6.1.0
version: 6.2.1
kubeVersion: ">=1.16.0-0"
keywords:
- esphome
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v1.2.3
description: FlareSolverr is a proxy server to bypass Cloudflare protection
name: flaresolverr
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- flaresolverr
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.1.1
description: Flood is a monitoring service for various torrent clients
name: flood
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- flood
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.17.0
description: FreshRSS is a self-hosted RSS feed aggregator
name: freshrss
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- freshrss
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
name: gaps
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- plex
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.12.0
description: Music streaming server / subsonic server API implementation
name: gonic
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- music
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.7.1
description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
name: grocy
version: 6.0.1
version: 6.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- grocy
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.19.0
description: Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts.
name: healthchecks
version: 2.0.1
version: 2.1.1
keywords:
- cron
- monitoring
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.2.2
description: An Application dashboard and launcher
name: heimdall
version: 6.0.1
version: 6.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- heimdall
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2021.3.4
description: Home Assistant
name: home-assistant
version: 7.1.1
version: 7.2.1
kubeVersion: ">=1.16.0-0"
keywords:
- home-assistant
@@ -20,7 +20,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: postgresql
version: 10.3.7
repository: https://charts.bitnami.com/bitnami

View File

@@ -4,7 +4,7 @@ description: A dead simple static HOMepage for your servER to keep your services
icon: https://raw.githubusercontent.com/bastienwirtz/homer/main/public/logo.png
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/homer
name: homer
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
sources:
- https://github.com/bastienwirtz/homer
@@ -14,4 +14,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.0.0-alpha9
description: Hyperion is an opensource Bias or Ambient Lighting implementation
name: hyperion-ng
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- hyperion-ng
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2021.2.0
description: Create live map data from Valetudo powered robots
name: icantbelieveitsnotvaletudo
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- icantbelieveitsnotvaletudo
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.17.591
description: API Support for your favorite torrent trackers
name: jackett
version: 8.0.1
version: 8.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- jackett
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 10.7.0
description: Jellyfin is a Free Software Media System
name: jellyfin
version: 7.0.1
version: 7.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- jellyfin
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.7.2
description: This server allows you to sync any Joplin client
name: joplin-server
version: 2.0.1
version: 2.1.1
keywords:
- joplin
- notes
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v1.2.18
description: Kanboard is a free and open source Kanban project management software.
name: kanboard
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- kanboard
@@ -17,7 +17,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: postgresql
version: 10.3.7
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.7.2
name: lazylibrarian
description: A Helm chart for deploying LazyLibrarian
version: 5.0.1
version: 5.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- lazylibrarian
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.8.0.1886
description: Looks and smells like Sonarr but made for music
name: lidarr
version: 8.0.1
version: 8.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- lidarr
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.0.8
description: Lychee is a free photo-management tool, which runs on your server or web-space
name: lychee
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- lychee
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.14.0
description: magic-mirror helm package
name: magic-mirror
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- magic-mirror
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.0.28
description: Miniflux is a minimalist and opinionated feed reader.
name: miniflux
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- miniflux
@@ -18,7 +18,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: postgresql
version: 10.3.7
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.19.1
description: A Personal Relationship Management tool to help you organize your social life
name: monica
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- crm
@@ -17,7 +17,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: mariadb
version: 9.3.4
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.0.7
description: Eclipse Mosquitto - An open source MQTT broker
name: mosquitto
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- mosquitto
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.4.9.5
description: Mylar is the automated Comic Book downloader (cbr/cbz) for use with various download clients.
name: mylar
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- mylar
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.39.0
description: Navidrome is an open source web-based music collection server and streamer
name: navidrome
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- navidrome
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.3.0
description: Neolink - RTSP bridge to Reolink IP cameras
name: neolink
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- reolink
@@ -15,4 +15,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.7.4-2061-g46c7da76
description: Network UPS Tools is a collection of programs which provide a common interface for monitoring and administering UPS, PDU and SCD hardware.
name: network-ups-tools
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- nut
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.2.5
description: Node-RED is low-code programming for event-driven applications
name: node-red
version: 7.0.1
version: 7.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- nodered
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v21.0
description: NZBGet is a Usenet downloader client
name: nzbget
version: 9.0.1
version: 9.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- nzbget
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v3.8.1
description: Usenet meta search
name: nzbhydra2
version: 7.0.1
version: 7.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- nzbhydra2
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.4.2
description: OctoPrint is the snappy web interface for your 3D printer
name: octoprint
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- octoprint
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.2.11
description: Omada enables the network administrators to monitor and manage all the Omada products in the network with a centralized management platform.
name: omada-controller
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- omada-controller
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.0.681
description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
name: ombi
version: 9.0.1
version: 9.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- ombi
@@ -22,4 +22,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest
description: HTPC/Homelab Services Organizer
name: organizr
version: 5.0.1
version: 5.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- organizr
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.19.1
description: Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services such as Sonarr, Radarr and Plex!
name: overseerr
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- overseerr
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.0.0
description: Paperless - Index and archive all of your scanned paper documents
name: paperless
version: 5.0.1
version: 5.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- paperless
@@ -15,4 +15,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "20201122"
description: PhotoPrism® is a server-based application for browsing, organizing and sharing your personal photo collection
name: photoprism
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- photos
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v4.0
description: Program for forwarding ADS-B data to FlightAware
name: piaware
version: 6.0.1
version: 6.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- piaware
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v1.22.0.4163-d8c4875dd
description: Plex Media Server
name: plex
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- plex
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.0.1
description: Prometheus NUT Exporter a service monitor to send NUT server metrics to a Prometheus instance.
name: prometheus-nut-exporter
version: 2.0.0
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- nut
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.5.7-1
description: Container for protonmail bridge to work on the network.
name: protonmail-bridge
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- protonmail
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.1.0.181
description: Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps.
name: prowlarr
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- prowlarr
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.4.20
description: pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.
name: pyload
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- pyload
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.3.0
description: qBittorrent is a cross-platform free and open-source BitTorrent client
name: qbittorrent
version: 9.0.1
version: 9.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- qbittorrent
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 3.0.2.4552
description: A fork of Sonarr to work with movies à la Couchpotato
name: radarr
version: 10.0.1
version: 10.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- radarr
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.1.0.351
description: A fork of Radarr to work with Books & AudioBooks
name: readarr
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- readarr
@@ -21,4 +21,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.13.0
description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
name: recipes
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- recipes
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.7.2
description: Resilio Sync is a fast, reliable, and simple file sync and share solution, powered by P2P technology
name: resilio-sync
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- resilio
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest
description: rTorrent is a stable, high-performance and low resource consumption BitTorrent client.
name: rtorrent-flood
version: 6.1.0
version: 6.2.1
kubeVersion: ">=1.16.0-0"
keywords:
- rtorrent
@@ -21,4 +21,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 3.1.0
description: Free and easy binary newsreader
name: sabnzbd
version: 6.0.1
version: 6.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- sabnzbd
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest
description: A simple in-cluster Samba server
name: samba
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- samba
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.18.0
description: Searx is a privacy-respecting, hackable metasearch engine
name: searx
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- searx
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.0.0
description: Serial to Socket Redirector
name: ser2sock
version: 3.0.0
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- ser2sock
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.6.0
description: Sharry allows to share files with others in a simple way. It is a self-hosted web application. The basic concept is to upload files and get a url back that can then be shared.
name: sharry
version: 2.0.1
version: 2.1.1
keywords:
- file sharing
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/sharry
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.1.2
description: Manage hardware resource allocation without a need for privileged containers
name: smarter-device-manager
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- kubernetes
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 3.0.4.993
description: Smart PVR for newsgroup and bittorrent users
name: sonarr
version: 10.0.1
version: 10.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- sonarr
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.90.65
description: Status page for monitoring your websites and applications
name: statping
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- statping
@@ -20,7 +20,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: postgresql
version: 10.3.7
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.6.6
description: A Python based monitoring and tracking tool for Plex Media Server
name: tautulli
version: 8.0.1
version: 8.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- tautulli
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.00.07
description: Tdarr is a self hosted web-app for automating media library transcode/remux management and making sure your files are exactly how you need them to be in terms of codecs/streams/containers etc.
name: tdarr
version: 2.0.1
version: 2.1.1
keywords:
- transcoding
- remux
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v1.9
description: Teedy is an open source, lightweight document management system for individuals and businesses.
name: teedy
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- teedy
@@ -19,7 +19,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: postgresql
version: 10.3.7
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v4.11
description: Traccar is an open source GPS tracking system.
name: traccar
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- traccar
@@ -17,7 +17,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: mariadb
version: 9.3.4
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 3.0.0
description: Transmission is a cross-platform BitTorrent client
name: transmission
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- transmission
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.0.0
description: Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator
name: tt-rss
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- tt-rss
@@ -16,7 +16,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: postgresql
version: 10.3.7
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest
description: TVheadend - a TV streaming server and digital video recorder
name: tvheadend
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- tv
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.0.1
description: Collect ALL UniFi Controller, Site, Device & Client Data - Export to InfluxDB or Prometheus
name: unifi-poller
version: 7.0.1
version: 7.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- unifi
@@ -18,7 +18,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0
- name: influxdb
version: 1.1.9
repository: https://charts.bitnami.com/bitnami

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.7.2
description: This application runs as a daemon on your download host. It checks for completed downloads and extracts them so Radarr, Lidarr, Sonarr, and Readarr may import them.
name: unpackerr
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- unpackerr
@@ -21,4 +21,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest
description: Valheim dedicated gameserver with automatic update and world backup support
name: valheim
version: 2.0.2
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- valheim
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.16.0
description: The to-do app to organize your life
name: vikunja
version: 2.0.1
version: 2.1.1
keywords:
- vikunja
- to-do
@@ -23,4 +23,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.4.1
description: A self hostable application for saving web pages, freely.
name: wallabag
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- wallabag
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.5.191
description: Make documentation a joy to write using Wiki.js's beautiful and intuitive interface!
name: wikijs
version: 4.0.1
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- wiki
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 3.3.3
description: XBackBone is a simple, self-hosted, lightweight PHP file manager that support the instant sharing tool ShareX and *NIX systems. It supports uploading and displaying images, GIF, video, code, formatted text, and file downloading and uploading. Also have a web UI with multi user management, past uploads history and search support.
name: xbackbone
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- xbackbone
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.1.2.0120
description: M3U Proxy for Plex DVR and Emby Live TV.
name: xteve
version: 6.0.1
version: 6.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- xteve
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "4.2"
description: Self-hosted YouTube downloader built on Material Design
name: youtubedl-material
version: 2.0.1
version: 2.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- youtubedl-material
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.17.1
description: Bridges events and allows you to control your Zigbee devices via MQTT
name: zigbee2mqtt
version: 7.0.1
version: 7.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- zigbee
@@ -20,4 +20,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.0.6
description: Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue
name: zwave2mqtt
version: 8.0.1
version: 8.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- zwave
@@ -18,4 +18,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.1.1
description: Fully configurable Zwave to MQTT Gateway and Control Panel
name: zwavejs2mqtt
version: 3.0.1
version: 3.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- zwave
@@ -19,4 +19,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0

4
hack/bump-common-charts.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -eu
find charts/stable/ -name "Chart.yaml" -exec grep -q -l "\- name\: common" {} \; -print0 | xargs -0 sed -i '' -r -e "s|^version: ([0-9]+\.[0-9]+)\.[0-9]+$|version: \1.1|"

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.0.0
description: ${CHARTNAME} helm package
name: ${CHARTNAME}
version: 2.0.1
version: 2.1.0
kubeVersion: ">=1.16.0-0"
keywords:
- ${CHARTNAME}
@@ -16,4 +16,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 2.0.1
version: 2.1.0