mirror of
https://github.com/argoproj/argocd-example-apps.git
synced 2024-11-25 11:25:15 +01:00
Template variable for container port (#251)
Signed-off-by: Anand Francis Joseph <anjoseph@redhat.com>
This commit is contained in:
parent
53e28ff20c
commit
d7927a27b4
@ -26,7 +26,7 @@ spec:
|
|||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: 80
|
containerPort: {{ .Values.containerPort }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
@ -9,6 +9,8 @@ image:
|
|||||||
tag: 0.1
|
tag: 0.1
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
containerPort: 80
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 80
|
port: 80
|
||||||
|
Loading…
Reference in New Issue
Block a user