Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
fix(generic): fix persistence.mountPoint -> persistence.mountPath in …
Browse files Browse the repository at this point in the history
…default values (#111)
  • Loading branch information
ekeih authored Sep 8, 2022
1 parent efcb893 commit 20c977c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/generic/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: generic
description: A chart for generic applications. Use this if you need to deploy something without wanting to build a fully fledged new helm chart.
type: application
version: 3.4.0
version: 3.4.1
maintainers:
- name: morremeyer
email: [email protected]
Expand Down
4 changes: 2 additions & 2 deletions charts/generic/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generic

![Version: 3.4.0](https://img.shields.io/badge/Version-3.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 3.4.1](https://img.shields.io/badge/Version-3.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A chart for generic applications. Use this if you need to deploy something without wanting to build a fully fledged new helm chart.

Expand Down Expand Up @@ -124,7 +124,7 @@ If you have environment variables set from ConfigMaps or Secrets, check out `env
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| persistence.enabled | bool | `false` | |
| persistence.mountPoint | string | `"/data"` | Where the persistent volume is mounted |
| persistence.mountPath | string | `"/data"` | Where the persistent volume is mounted |
| persistence.storage | string | `"100Mi"` | |
| persistence.storageClassName | string | `nil` | Set a storageClassName, otherwise the default class is used. |
| podAnnotations | object | `{}` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/generic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ configMap:
persistence:
enabled: false
# -- Where the persistent volume is mounted
mountPoint: /data
mountPath: /data
storage: 100Mi
# -- Set a storageClassName, otherwise the default class is used.
storageClassName: ~
Expand Down

0 comments on commit 20c977c

Please sign in to comment.