[uptime-kuma] Update persistence to map data volume to /app/data (#1302)

This commit is contained in:
PrymalInstynct 2021-12-09 09:03:11 -07:00 committed by GitHub
parent 1ea8e6bb1a
commit b61de0b706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 6 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2 apiVersion: v2
appVersion: v1.10.2 appVersion: v1.11.1
description: A fancy self-hosted monitoring tool for your websites and applications description: A fancy self-hosted monitoring tool for your websites and applications
name: uptime-kuma name: uptime-kuma
version: 1.0.0 version: 1.0.1
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- uptime-kuma - uptime-kuma

View File

@ -1,6 +1,6 @@
# uptime-kuma # uptime-kuma
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: v1.10.2](https://img.shields.io/badge/AppVersion-v1.10.2-informational?style=flat-square) ![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![AppVersion: v1.11.1](https://img.shields.io/badge/AppVersion-v1.11.1-informational?style=flat-square)
A fancy self-hosted monitoring tool for your websites and applications A fancy self-hosted monitoring tool for your websites and applications
@ -79,7 +79,7 @@ N/A
| env.UPTIME_KUMA_DISABLE_FRAME_SAMEORIGIN | int | `0` | Set the custom ssl cert path (string) UPTIME_KUMA_SSL_CERT: -- Set the custom ssl key path (string) UPTIME_KUMA_SSL_KEY: -- Set the frame same-origin policy (int) | | env.UPTIME_KUMA_DISABLE_FRAME_SAMEORIGIN | int | `0` | Set the custom ssl cert path (string) UPTIME_KUMA_SSL_CERT: -- Set the custom ssl key path (string) UPTIME_KUMA_SSL_KEY: -- Set the frame same-origin policy (int) |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy | | image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"louislam/uptime-kuma"` | image repository | | image.repository | string | `"louislam/uptime-kuma"` | image repository |
| image.tag | string | `"1.10.2"` | image tag | | image.tag | string | `"1.11.1"` | 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. |
| service | object | See values.yaml | Configures service settings for the chart. | | service | object | See values.yaml | Configures service settings for the chart. |
@ -90,6 +90,19 @@ All notable changes to this application Helm chart will be documented in this fi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### [1.0.1]
#### Changed
- Updated values.yaml to map data persistence to /app/data
- Update default image to 1.11.1 (most current at time of chnage)
### [1.0.0]
#### Added
- Initial chart version
## Support ## Support
- See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/) - See the [Docs](https://docs.k8s-at-home.com/our-helm-charts/getting-started/)

View File

@ -8,4 +8,17 @@
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). 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). 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.1]
#### Changed
- Updated values.yaml to map data persistence to /app/data
- Update default image to 1.11.1 (most current at time of chnage)
### [1.0.0]
#### Added
- Initial chart version
{{- end -}} {{- end -}}

View File

@ -9,7 +9,7 @@ image:
# -- image repository # -- image repository
repository: louislam/uptime-kuma repository: louislam/uptime-kuma
# -- image tag # -- image tag
tag: "1.10.2" tag: "1.11.1"
# -- image pull policy # -- image pull policy
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
@ -44,4 +44,4 @@ ingress:
persistence: persistence:
data: data:
enabled: false enabled: false
mountPath: /app mountPath: /app/data