Skip to content

Commit

Permalink
rename configmaps from the fields since the use case is more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
JoostDeCupere committed Feb 5, 2024
1 parent bb2c1ce commit d7381b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ For more information take a look at
* Description: If you use an image that is not public. then you can create dockerconfigjson secrets on your cluster and
reference them here.

#### `acs.configMapVolumes.volumeMounts`
#### `acs.additionalVolumeMounts`

* Required: false
* Default: None
Expand All @@ -541,7 +541,7 @@ For more information take a look at
readOnly: true
```

#### `acs.configMapVolumes.volumes`
#### `acs.additionalVolumes`

* Required: false
* Default: None
Expand Down Expand Up @@ -2082,7 +2082,7 @@ additional settings can be added through additionalEnvironmentVariables.

* Required: false
* Default: None
* Description: A list of aditional volume claims that can be added to the alfresco pods. Layout should be as follows:
* Description: A list of additional volume claims that can be added to the alfresco pods. Layout should be as follows:

```yaml
- name: name1
Expand Down
8 changes: 4 additions & 4 deletions xenit-alfresco/templates/acs/acs-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ spec:
subPath: {{ .subPath }}
{{- end }}
{{- end }}
{{- if and .Values.acs.configMapVolumes .Values.acs.configMapVolumes.volumeMounts }}
{{- toYaml .Values.acs.configMapVolumes.volumeMounts | nindent 10 }}
{{- if .Values.acs.additionalVolumeMounts }}
{{- toYaml .Values.acs.additionalVolumeMounts | nindent 10 }}
{{- end }}
{{- if .Values.share.mergeAcsShare}}
- name: share-container
Expand Down Expand Up @@ -172,8 +172,8 @@ spec:
claimName: {{ .name }}-pvc
{{- end }}
{{- end }}
{{- if and .Values.acs.configMapVolumes .Values.acs.configMapVolumes.volumes }}
{{ toYaml .Values.acs.configMapVolumes.volumes | nindent 8 }}
{{- if .Values.acs.additionalVolumes }}
{{ toYaml .Values.acs.additionalVolumes | nindent 8 }}
{{- end }}
imagePullSecrets:
{{- if .Values.general.imagePullSecrets}}
Expand Down

0 comments on commit d7381b9

Please sign in to comment.