특징

헤드리스 서비스 생성

헤드리스 서비스로 파드명 이름 해석

스테이트풀셋 외의 파드명으로 이름 해석

---
apiVersion: v1
kind: Pod
metadata:
	name: sample-subdomain
	labels:
		app: sample-app
spec:
	hostname: sample-hostname
	subdomain: sample-subdomain
	containers:
	- name: nginx-container
		image: amsy810/tools:v2.0
---
apiVersion: v1
kind: Service
metadata:
	name: sample-subdomain
spec:
	type: ClusterIP
	clusterIP: None
	ports: []
	selector:
		app: sample-app