Skip to content

Commit 849fc8a

Browse files
authored
Merge pull request #177 from xenit-eu/NYS2AWS-130-specify-activmq-pv-name
[NYS2AWS-130] allow the specification of the ActiveMQ PV(C) names
2 parents 20bcdee + 5885152 commit 849fc8a

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
chronology things are added/fixed/changed and - where possible - links to the PRs involved.
77

88
### Changes
9+
[v0.8.8]
10+
* Introduced the `persistentStorage.aws.efs.storageClass.enableIfRequired`
11+
option, which can be used to prevent the AWS `efs-storage-class` from being created.
12+
* Introduced the `persistentStorage.mq.name` option to specify the name of the ActiveMQ
13+
PV and PVC.
914

1015
[v0.8.7]
1116
* Fixed a bug that caused the Alfresco pod to still use `alfresco-pvc`, even when `persistentStorage.alfresco.name` was set.

xenit-alfresco/templates/active-mq/mq-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ spec:
127127
{{- if .Values.persistentStorage.mq.enabled }}
128128
- name: data
129129
persistentVolumeClaim:
130-
claimName: mq-pvc
130+
claimName: {{ .Values.persistentStorage.mq.name }}-pvc
131131
{{- end }}
132132
{{- if .Values.persistentStorage.mq.additionalClaims }}
133133
{{- range .Values.persistentStorage.mq.additionalClaims }}

xenit-alfresco/templates/storage/mq-volumes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{- $namespace := .Release.Namespace -}}
33
{{- with .Values.persistentStorage.mq }}
44
{{- if .enabled}}
5-
{{- $name := "mq" -}}
5+
{{- $name := .name -}}
66
{{- $storageClassName := .storageClassName -}}
77
{{- $storage := .storage -}}
88
{{- $efsVolumeHandle := .efs.volumeHandle -}}

xenit-alfresco/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ persistentStorage:
286286
efs:
287287
volumeHandle: ""
288288
mq:
289+
name: mq
289290
enabled: true
290291
initVolumes: true
291292
storageClassName: ""

0 commit comments

Comments
 (0)