Compare commits

...

10 Commits

Author SHA1 Message Date
YuenSun b6e0c36e7e
Merge 3ec1be06f0 into d7927a27b4 2024-04-26 18:52:17 +01: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
Joonianry 3ec1be06f0
Merge pull request #3 from siyoo/dev
f
2020-08-05 17:53:08 +08:00
Yuan Sun 90f56901c2 f 2020-08-05 17:52:37 +08:00
Joonianry f420b40949
Merge pull request #2 from siyoo/dev
Dev
2020-08-04 17:01:02 +08:00
Yuan Sun c2d95a189b c 2020-08-04 16:59:44 +08:00
Yuan Sun f70f62a488 c 2020-08-04 16:55:14 +08:00
Joonianry 29dbb905b6
Merge pull request #1 from siyoo/dev
c
2020-08-04 16:53:07 +08:00
Yuan Sun 76c0b838cf c 2020-08-04 16:50:07 +08:00
Yuan Sun ffe61b44ce fix 2020-08-04 16:47:24 +08:00
3 changed files with 5 additions and 3 deletions

View File

@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: guestbook-ui
spec:
replicas: 1
replicas: 2
revisionHistoryLimit: 3
selector:
matchLabels:

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

@ -2,13 +2,15 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
replicaCount: 2
image:
repository: gcr.io/heptio-images/ks-guestbook-demo
tag: 0.1
pullPolicy: IfNotPresent
containerPort: 80
service:
type: ClusterIP
port: 80