Skip to content

Commit 4ea506e

Browse files
committed
add helm docs for persistent volumes
1 parent f7edf9a commit 4ea506e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

charts/home-assistant/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

charts/home-assistant/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 | `{}` | |

charts/home-assistant/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,11 @@ autoscaling:
8888
# targetMemoryUtilizationPercentage: 80
8989

9090
persistence:
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"

0 commit comments

Comments
 (0)