Skip to content

Commit e6e2c3c

Browse files
authored
Merge pull request #181 from xenit-eu/NYS2AWS-146-mq-init-container-custom-image
[NYS2AWS-146] add support for custom ActiveMQ init. container image
2 parents cd771bb + a16ba36 commit e6e2c3c

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ 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.12]
10+
* Added support for custom ActiveMQ init. container images.
11+
912
[v0.8.11]
1013
* uncouple port for inbound email on acs pod and acs service
1114

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,6 +1019,24 @@ ingress:
10191019
* Default: `1`
10201020
* Description: The number of pods that will be running
10211021

1022+
#### `mq.init.image.registry`
1023+
1024+
* Required: false
1025+
* Default: `docker.io`
1026+
* Description: The registry where the docker container can be found in
1027+
1028+
#### `mq.init.image.repository`
1029+
*
1030+
* Required: false
1031+
* Default: `busybox`
1032+
* Description: The repository of the docker image that will be used
1033+
1034+
#### `mq.init.image.tag`
1035+
1036+
* Required: false
1037+
* Default: `1.35.0`
1038+
* Description: The tag of the docker image that will be used
1039+
10221040
#### `mq.image.registry`
10231041

10241042
* Required: false

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ spec:
101101
{{- if .Values.persistentStorage.mq.initVolumes }}
102102
initContainers:
103103
- name: init-fs
104-
image: "busybox:1.35.0"
104+
image: {{ .Values.mq.init.image.registry }}/{{ .Values.mq.init.image.repository }}:{{ .Values.mq.init.image.tag }}
105105
imagePullPolicy: IfNotPresent
106106
resources:
107107
requests:

xenit-alfresco/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,11 @@ mq:
131131
registry: 'docker.io'
132132
repository: 'alfresco/alfresco-activemq'
133133
tag: '5.18.3-jre17-rockylinux8@sha256:25386b20263b7e838605e07fea2713fb65762010c1c677cf82aecefbaed5d227'
134+
init:
135+
image:
136+
registry: 'docker.io'
137+
repository: 'busybox'
138+
tag: '1.35.0'
134139
strategy:
135140
type: Recreate
136141
resources:

0 commit comments

Comments
 (0)