diff --git a/charts/homer/README.md b/charts/homer/README.md index 709c04a46..b49b7c34e 100644 --- a/charts/homer/README.md +++ b/charts/homer/README.md @@ -86,7 +86,7 @@ N/A |-----|------|---------|-------------| | addons.codeserver.enabled | bool | `false` | Enable VS Code server addon. This allows for easy access to assets. | | addons.codeserver.ingress | object | See [values.yaml](./values.yaml) | Enable and configure ingress settings for the VS Code server under this key. | -| configmap.config.data | object | See [values.yaml](./values.yaml) | Homer configuration. [[ref]](https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md) | +| configMaps.config.data | object | See [values.yaml](./values.yaml) | Homer configuration. [[ref]](https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md) | | configmap.config.enabled | bool | `false` | Store homer configuration as a ConfigMap | | controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy | | env | object | See [values.yaml](./values.yaml) | environment variables. | diff --git a/charts/homer/templates/common.yaml b/charts/homer/templates/common.yaml index 4be3f95f3..dc115bc58 100644 --- a/charts/homer/templates/common.yaml +++ b/charts/homer/templates/common.yaml @@ -1,6 +1,6 @@ {{/* Append the hardcoded settings */}} {{- define "homer.harcodedValues" -}} - {{- if .Values.configmap.config.enabled }} + {{- if .Values.configMaps.config.enabled }} {{/* Append the configMap volume to the volumes */}} persistence: config: diff --git a/charts/homer/values.yaml b/charts/homer/values.yaml index 2d175be5b..618bb9e67 100644 --- a/charts/homer/values.yaml +++ b/charts/homer/values.yaml @@ -55,7 +55,7 @@ persistence: # accessMode: ReadWriteOnce # size: 1Gi -configmap: +configMaps: config: # -- Store homer configuration as a ConfigMap enabled: false