Skip to content

Commit

Permalink
feat: #120 Name the ports and move postman-runtime to 0.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: Laurent Broudoux <[email protected]>
  • Loading branch information
lbroudoux committed Aug 18, 2024
1 parent 20e89e8 commit 9b9dc46
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
3 changes: 2 additions & 1 deletion k8s/async-minion-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ spec:
{% endif %}

ports:
- containerPort: 8080
- name: http
containerPort: 8080
protocol: TCP
livenessProbe:
httpGet:
Expand Down
3 changes: 2 additions & 1 deletion k8s/keycloak-postgres-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ spec:
args: ["-c", "max_connections=100", "-c", "shared_buffers=12MB"]
imagePullPolicy: IfNotPresent
ports:
- containerPort: 5432
- name: postgres
containerPort: 5432
protocol: TCP
readinessProbe:
timeoutSeconds: 1
Expand Down
6 changes: 5 additions & 1 deletion k8s/microcks-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ spec:
image: "{{registry|default('quay.io')}}/microcks/microcks:{{version}}"
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
- name: http
containerPort: 8080
protocol: TCP
- name: grpc
containerPort: 9090
protocol: TCP
env:
- name: JAVA_OPTIONS
Expand Down
3 changes: 2 additions & 1 deletion k8s/mongodb-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ spec:
image: {{mongodb.image}}
args: ["--dbpath","/var/lib/mongodb/data"]
ports:
- containerPort: 27017
- name: mongodb
containerPort: 27017
protocol: TCP
env:
- name: MONGODB_USER
Expand Down
5 changes: 3 additions & 2 deletions k8s/postman-runtime-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ spec:
spec:
containers:
- name: postman-runtime
image: "{{registry|default('quay.io')}}/microcks/microcks-postman-runtime:latest"
image: "{{registry|default('quay.io')}}/microcks/microcks-postman-runtime:0.5.0"
ports:
- containerPort: 3000
- name: http
containerPort: 3000
protocol: TCP
env:
- name: LOG_LEVEL
Expand Down

0 comments on commit 9b9dc46

Please sign in to comment.