v1_deployment
#
# 내부용 마이크로서비스
#
apiVersion: apps/v1
kind: Deployment
metadata:
name: web-apl2-rest
spec:
replicas: 1
selector:
matchLabels:
apl: web-apl2-rest
template:
metadata:
labels:
apl: web-apl2-rest
spec:
containers:
- image: maho/webapl3
name: rest-server-c
ports:
- containerPort: 80
---
#
# 내부 마이크로 서비스 용
#
apiVersion: v1
kind: Service
metadata:
name: web-apl2-rest
spec:
##type: NodePort
type: ClusterIP
selector:
apl: web-apl2-rest
ports:
- port: 80
protocol: TCP