Compare commits

...

2 Commits

Author SHA1 Message Date
Peefy bcbea8663e
Merge 930c853a7c into d7927a27b4 2024-01-15 16:03:01 +08:00
Anand Francis Joseph d7927a27b4
Template variable for container port (#251)
Signed-off-by: Anand Francis Joseph <anjoseph@redhat.com>
2023-11-15 09:00:20 -05:00
2 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 80
containerPort: {{ .Values.containerPort }}
protocol: TCP
livenessProbe:
httpGet:

View File

@ -9,6 +9,8 @@ image:
tag: 0.1
pullPolicy: IfNotPresent
containerPort: 80
service:
type: ClusterIP
port: 80