Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 9b9dc46

Browse files
committed
feat: #120 Name the ports and move postman-runtime to 0.5.0
Signed-off-by: Laurent Broudoux <[email protected]>
1 parent 20e89e8 commit 9b9dc46

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

k8s/async-minion-deployment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ spec:
115115
{% endif %}
116116

117117
ports:
118-
- containerPort: 8080
118+
- name: http
119+
containerPort: 8080
119120
protocol: TCP
120121
livenessProbe:
121122
httpGet:

k8s/keycloak-postgres-deployment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ spec:
3939
args: ["-c", "max_connections=100", "-c", "shared_buffers=12MB"]
4040
imagePullPolicy: IfNotPresent
4141
ports:
42-
- containerPort: 5432
42+
- name: postgres
43+
containerPort: 5432
4344
protocol: TCP
4445
readinessProbe:
4546
timeoutSeconds: 1

k8s/microcks-deployment.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ spec:
3737
image: "{{registry|default('quay.io')}}/microcks/microcks:{{version}}"
3838
imagePullPolicy: IfNotPresent
3939
ports:
40-
- containerPort: 8080
40+
- name: http
41+
containerPort: 8080
42+
protocol: TCP
43+
- name: grpc
44+
containerPort: 9090
4145
protocol: TCP
4246
env:
4347
- name: JAVA_OPTIONS

k8s/mongodb-deployment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ spec:
4444
image: {{mongodb.image}}
4545
args: ["--dbpath","/var/lib/mongodb/data"]
4646
ports:
47-
- containerPort: 27017
47+
- name: mongodb
48+
containerPort: 27017
4849
protocol: TCP
4950
env:
5051
- name: MONGODB_USER

k8s/postman-runtime-deployment.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ spec:
3232
spec:
3333
containers:
3434
- name: postman-runtime
35-
image: "{{registry|default('quay.io')}}/microcks/microcks-postman-runtime:latest"
35+
image: "{{registry|default('quay.io')}}/microcks/microcks-postman-runtime:0.5.0"
3636
ports:
37-
- containerPort: 3000
37+
- name: http
38+
containerPort: 3000
3839
protocol: TCP
3940
env:
4041
- name: LOG_LEVEL

0 commit comments

Comments
 (0)