-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsvc-pythonrestapi.yml
44 lines (44 loc) · 964 Bytes
/
svc-pythonrestapi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
apiVersion: v1
kind: Service
metadata:
name: svc-pythonrestapi
# annotations:
# alb.ingress.kubernetes.io/healthcheck-path: /pythonrestapi/actuator/health
labels:
app: pythonrestapi
component: pythonrestapi
spec:
ports:
- name: http
protocol: TCP
port: 80
targetPort: http
- name: https-udp
protocol: UDP
port: 443
targetPort: https-udp
clusterIP: None # Headless. type cannot be LoadBalancer
selector:
app: pythonrestapi
component: pythonrestapi
# tier: frontend
# type: LoadBalancer # Exposes web to traffic from outside of the cluster
---
apiVersion: v1
kind: Service
metadata:
name: svc-pythonrestapi-nodeport
labels:
app: pythonrestapi
component: pythonrestapi
spec:
ports:
- name: https-udp
protocol: UDP
port: 443
targetPort: https-udp
nodePort: 31002
type: NodePort
selector:
app: pythonrestapi
component: pythonrestapi