changes.mady.by.user Sansae
Saved on Mar 05, 2024
Saved on Mar 06, 2024
...
https://dev-k8sref-io.web.app/docs/workloads/pod-v1/
apiVersion: v1 #쿠버네티스 API버전을 가리킴
kind: Pod #리소스 유형
metadata (ObjectMeta): 포드와 관련된 이름, 네임스페이스, 라벨, 그밖의 정보
spec (PodSpec): #컨테이너, 볼륨등의 정보
curl -X GET http://<kube-apiserver-ip>:<port>/api/v1/namespaces/default/pods 'JSON'
apiVersion: v1 kind: Pod metadata: name: nginx lables: app: myapp type: front-end spec: containers: - name: nginx image: nginx:1.14.2 ports: - containerPort: 80
kubectl run nginx --image=nginx:1.14.2 --dry-run=client # 명령어 검토 kubectl run nginx --image=nginx:1.14.2 --dry-run=client -o yaml # 명령에 대해 yaml로 보기 kubectl run nginx --image=nginx:1.14.2 --dry-run=client -o yaml > nginx-pod.yaml # yaml을 파일로 저장하기