[쿠버네티스 워크로드] 레이블과 셀렉터 연습문제

hi·2023년 7월 31일
0

쿠버네티스

목록 보기
26/60
kubectl get pod -w
kubectl port-forward nginx 80:80


nginx-pod.yaml

apiVersion: v1
kind: Pod
metadata:
  name: nginx
  labels:
    app: nginx
spec:
  containers:
  - name: nginx
    image: nginx
    ports:
    - containerPort: 80
      protocol: TCP


0개의 댓글