Skip to content

Commit f0cea81

Browse files
authored
Merge pull request #52 from turuncuofke/add-extra-init-containers
Add extraInitContainers feature
2 parents 2ebeab0 + 7d57983 commit f0cea81

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

charts/wiremock/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.4.0
18+
version: 1.5.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/wiremock/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ spec:
8484
name: responses-volume
8585
- mountPath: /home/wiremock/storage/__files
8686
name: responses-data
87+
{{- with .Values.extraInitContainers }}
88+
{{- toYaml . | nindent 8 }}
89+
{{- end }}
8790
{{- with .Values.nodeSelector }}
8891
nodeSelector:
8992
{{- toYaml . | nindent 8 }}

charts/wiremock/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ initContainer:
3838
tag: 5
3939
pullPolicy: Always
4040

41+
extraInitContainers: []
42+
4143
imagePullSecrets: []
4244
nameOverride: ""
4345
fullnameOverride: ""

0 commit comments

Comments
 (0)