File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.3.0
18+ version : 0.3.1
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ A Helm chart for home assistant on Kubernetes
3636| nodeSelector | object | ` {} ` | |
3737| persistence.accessMode | string | ` "ReadWriteOnce" ` | |
3838| persistence.annotations | object | ` {} ` | |
39- | persistence.enabled | bool | ` false ` | |
40- | persistence.existingClaim | string | ` "" ` | |
39+ | persistence.enabled | bool | ` false ` | enable or disable persistent volumes |
40+ | persistence.existingClaim | string | ` "" ` | use an existing persistent volume claim |
4141| persistence.size | string | ` "8Gi" ` | |
4242| persistence.storageClass | string | ` "nil" ` | |
4343| podAnnotations | object | ` {} ` | |
Original file line number Diff line number Diff line change @@ -88,9 +88,11 @@ autoscaling:
8888 # targetMemoryUtilizationPercentage: 80
8989
9090persistence :
91+ # -- enable or disable persistent volumes
9192 enabled : false
9293 annotations : {}
9394 storageClass : nil
95+ # -- use an existing persistent volume claim
9496 existingClaim : " "
9597 accessMode : " ReadWriteOnce"
9698 size : " 8Gi"
You can’t perform that action at this time.
0 commit comments