혹시 그거 아시나요? 사용자가 Kubernetes를 사용하면서 WorkerNode에 Pod를 생성하지 말입니다. 그런데 실은 그 Pod는 Docker Container입니다. 어떻게 알 수 있냐고요? 직접 WorkerNode에 접근해서 확인해보면 됩니다.
cat << EOF > frontend.yaml
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: frontend
labels:
app: guestbook
tier: frontend
spec:
# 케이스에 따라 레플리카를 수정한다.
replicas: 3
selector:
matchLabels:
tier: frontend
template:
metadata:
labels:
tier: frontend
spec:
containers:
- name: php-redis
image: gcr.io/google_samples/gb-frontend:v3
EOF
kubectl apply -f frontend.yaml
ssh -i [[KeyPair.pem]] ec2-user@[[WorkerNodeIP]]
kubectl get nodes -A #A옵션은 모든 Namespace에 Pod를 가져온다~ 입니다