From cf6454cad62a26fb628811f0203714ea6d7faac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?n=CE=B9c=D0=BDola=D1=95=20w=CE=B9lde?= Date: Sun, 9 May 2021 00:40:42 -0700 Subject: [PATCH] - Added persistence.config.mountPath (#901) - Removed commented items in persistence. Signed-off-by: Nicholas Wilde --- charts/stable/appdaemon/Chart.yaml | 2 +- charts/stable/appdaemon/README.md | 19 +++++++++++++++++-- charts/stable/appdaemon/README.md.gotmpl | 1 + .../appdaemon/README_CHANGELOG.md.gotmpl | 14 ++++++++++++++ charts/stable/appdaemon/values.yaml | 13 +------------ 5 files changed, 34 insertions(+), 15 deletions(-) diff --git a/charts/stable/appdaemon/Chart.yaml b/charts/stable/appdaemon/Chart.yaml index 8964e510..b7e8d16d 100644 --- a/charts/stable/appdaemon/Chart.yaml +++ b/charts/stable/appdaemon/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.0.8 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: 5.1.0 +version: 6.0.0 kubeVersion: ">=1.16.0-0" keywords: - appdaemon diff --git a/charts/stable/appdaemon/README.md b/charts/stable/appdaemon/README.md index dedaf144..2048069c 100644 --- a/charts/stable/appdaemon/README.md +++ b/charts/stable/appdaemon/README.md @@ -1,6 +1,6 @@ # appdaemon -![Version: 5.0.1](https://img.shields.io/badge/Version-5.0.1-informational?style=flat-square) ![AppVersion: 4.0.8](https://img.shields.io/badge/AppVersion-4.0.8-informational?style=flat-square) +![Version: 6.0.0](https://img.shields.io/badge/Version-6.0.0-informational?style=flat-square) ![AppVersion: 4.0.8](https://img.shields.io/badge/AppVersion-4.0.8-informational?style=flat-square) 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. @@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://library-charts.k8s-at-home.com | common | 2.3.1 | +| https://library-charts.k8s-at-home.com | common | 2.5.0 | ## TL;DR @@ -83,6 +83,7 @@ N/A | ingress.enabled | bool | `false` | | | persistence.config.emptyDir.enabled | bool | `false` | | | persistence.config.enabled | bool | `false` | | +| persistence.config.mountPath | string | `"/conf"` | | | service.port.port | int | `5050` | | | strategy.type | string | `"Recreate"` | | @@ -92,6 +93,20 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [6.0.0] + +#### Added + +- Added persistence.config.mountPath + +#### Changed + +- N/A + +#### Removed + +- Commented items under persistence. + ### [5.0.1] #### Added diff --git a/charts/stable/appdaemon/README.md.gotmpl b/charts/stable/appdaemon/README.md.gotmpl index c21f99b3..358abe31 100644 --- a/charts/stable/appdaemon/README.md.gotmpl +++ b/charts/stable/appdaemon/README.md.gotmpl @@ -143,3 +143,4 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} - {{ template "custom.support" . }} {{ template "helm-docs.versionFooter" . }} +{{ "" }} diff --git a/charts/stable/appdaemon/README_CHANGELOG.md.gotmpl b/charts/stable/appdaemon/README_CHANGELOG.md.gotmpl index 066b39f2..99659475 100644 --- a/charts/stable/appdaemon/README_CHANGELOG.md.gotmpl +++ b/charts/stable/appdaemon/README_CHANGELOG.md.gotmpl @@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [6.0.0] + +#### Added + +- Added persistence.config.mountPath + +#### Changed + +- N/A + +#### Removed + +- Commented items under persistence. + ### [5.0.1] #### Added diff --git a/charts/stable/appdaemon/values.yaml b/charts/stable/appdaemon/values.yaml index 31056233..e0a0273a 100644 --- a/charts/stable/appdaemon/values.yaml +++ b/charts/stable/appdaemon/values.yaml @@ -36,15 +36,4 @@ persistence: enabled: false emptyDir: enabled: false - ## Persistent Volume Storage Class - ## If defined, storageClassName: - ## If set to "-", storageClassName: "", which disables dynamic provisioning - ## If undefined (the default) or set to null, no storageClassName spec is - ## set, choosing the default provisioner. (gp2 on AWS, standard on - ## GKE, AWS & OpenStack) - # storageClass: "-" - # accessMode: ReadWriteOnce - # size: 1Gi - ## Set to true to retain the PVC upon helm uninstall - # skipuninstall: false - # existingClaim: "" + mountPath: /conf