File tree 5 files changed +19
-3
lines changed
5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
description : Java Helm Chart
3
3
name : java
4
- version : 10.0.1
4
+ version : 10.1.0
5
5
dependencies :
6
6
- name : libchart
7
- version : 4.0.1
7
+ version : 4.1.0
8
8
repository : file://../libchart
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ image:
14
14
# - secret1
15
15
# - secret2
16
16
17
+ initContainers :
18
+ - name : network-proxy
19
+ image : network-proxy:1.0
20
+ restartPolicy : Always
21
+
17
22
nameOverride : " "
18
23
fullnameOverride : " "
19
24
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: library
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 4.0.1
18
+ version : 4.1.0
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ imagePullSecrets:
8
8
serviceAccountName: { { include " libchart.serviceAccountName" . } }
9
9
securityContext:
10
10
{ {- toYaml .Values.podSecurityContext | nindent 2 } }
11
+
12
+ { {- if .Values.initContainers } }
13
+ initContainers:
14
+ { { toYaml .Values.initContainers | nindent 2 } }
15
+ { {- end } }
16
+
11
17
containers:
12
18
- name: { { .Chart.Name } }
13
19
image: "{ { .Values.image.repository } }:{ { .Values.image.tag } }"
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ image:
15
15
# - secret1
16
16
# - secret2
17
17
18
+ initContainers :
19
+ - name : network-proxy
20
+ image : network-proxy:1.0
21
+ restartPolicy : Always
22
+
18
23
nameOverride : " "
19
24
fullnameOverride : " "
20
25
You can’t perform that action at this time.
0 commit comments