mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 20:12:43 +00:00
55 lines
766 B
YAML
55 lines
766 B
YAML
---
|
|
kind: service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: server-check
|
|
spec:
|
|
selector:
|
|
server: http
|
|
ports:
|
|
- name: http
|
|
protocol: TCP
|
|
port: 5000
|
|
---
|
|
kind: service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: expose-server
|
|
spec:
|
|
selector:
|
|
expose: true
|
|
ports:
|
|
- name: http
|
|
protocol: TCP
|
|
targetPort: 5000
|
|
port: 5000
|
|
nodePort: 30036
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: server-a
|
|
labels:
|
|
server: http
|
|
expose: true
|
|
spec:
|
|
containers:
|
|
- name: front-end
|
|
image: IMAGE-A
|
|
ports:
|
|
- containerPort: 5000
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: server-b
|
|
labels:
|
|
server: http
|
|
spec:
|
|
containers:
|
|
- name: front-end
|
|
image: IMAGE-B
|
|
ports:
|
|
- containerPort: 5000
|
|
|