실습
쿠버네티스 API 호출
Kubectl
kubectl run nginx --image=nginxkubectl get pod nginxkubectl delete pod nginxcat <<EOF > nginx.yaml apiVersion: v1 kind: Pod metadata: name: nginx spec: containers: - name: nginx image: nginx EOFkubectl apply -f nginx.yamlkubectl get pod nginxkubectl delete -f nginx.yaml
REST API
Kubernetes SDK
Deprecated API Migration
Last updated