mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[gatus] fix config volume (#1607)
Co-authored-by: angelnu <git@angelnucom>
This commit is contained in:
parent
d2f18a6fb9
commit
fe4c265938
@ -5,7 +5,7 @@ description: A developer-oriented health dashboard that gives you the ability to
|
|||||||
icon: https://github.com/TwiN/gatus/raw/master/.github/assets/logo-with-dark-text.png
|
icon: https://github.com/TwiN/gatus/raw/master/.github/assets/logo-with-dark-text.png
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/gatus
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/gatus
|
||||||
name: gatus
|
name: gatus
|
||||||
version: 1.0.0
|
version: 1.0.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/TwiN/gatus
|
- https://github.com/TwiN/gatus
|
||||||
@ -18,5 +18,5 @@ dependencies:
|
|||||||
version: 4.4.2
|
version: 4.4.2
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |-
|
artifacthub.io/changes: |-
|
||||||
- kind: added
|
- kind: modified
|
||||||
description: Initial version
|
description: fix configmap
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# gatus
|
# gatus
|
||||||
|
|
||||||
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: v3.8.0](https://img.shields.io/badge/AppVersion-v3.8.0-informational?style=flat-square)
|
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![AppVersion: v3.8.0](https://img.shields.io/badge/AppVersion-v3.8.0-informational?style=flat-square)
|
||||||
|
|
||||||
A developer-oriented health dashboard that gives you the ability to monitor your services using HTTP, ICMP, TCP, and even DNS queries.
|
A developer-oriented health dashboard that gives you the ability to monitor your services using HTTP, ICMP, TCP, and even DNS queries.
|
||||||
|
|
||||||
@ -88,11 +88,11 @@ N/A
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### Version 1.0.0
|
### Version 1.0.1
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
* Initial version
|
N/A
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
|
@ -14,10 +14,8 @@
|
|||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: "configMap"
|
type: configMap
|
||||||
name: "{{ include "common.names.fullname" . }}-config"
|
name: "{{ include "common.names.fullname" . }}-config"
|
||||||
mountPath: "/www/assets/config.yml"
|
|
||||||
subPath: "config.yml"
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- $_ := mergeOverwrite .Values (include "gatus.harcodedValues" . | fromYaml) -}}
|
{{- $_ := mergeOverwrite .Values (include "gatus.harcodedValues" . | fromYaml) -}}
|
||||||
|
@ -37,14 +37,9 @@ ingress:
|
|||||||
# -- Configure persistence settings for the chart under this key.
|
# -- Configure persistence settings for the chart under this key.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
data:
|
||||||
enabled: "true"
|
enabled: true
|
||||||
mountPath: "/config/config.yaml"
|
type: emptyDir
|
||||||
subPath: "config.yaml"
|
|
||||||
type: "custom"
|
|
||||||
volumeSpec:
|
|
||||||
configMap:
|
|
||||||
name: gatus-config
|
|
||||||
|
|
||||||
configmap:
|
configmap:
|
||||||
config:
|
config:
|
||||||
|
Loading…
Reference in New Issue
Block a user