<쿠버네티스> CKAD(Kubernetes Certified Application Developer) 사이버 먼데이 할인코드

노설·2022년 11월 28일
0

쿠버네티스

목록 보기
3/5

CKAD 자격증 비용 395 달러 (사이버먼데이 할인코드: CYBER22CC)
사이버 먼데이를 맞이하며 현재 50% 할인 => 197.5 달러

CKA 자격증도 동일한 가격으로 할인중이다.
Cyber Monday 할인 페이지

번들은 무려 65% 할인중이다. 할인코드가 다르니 유의

인터넷 강의 결제 UDemy : 14,000원 (할인된 가격으로 결제)
해당 강의는 Tests 문제가 포함되어 있다.
강의 링크

CKAD는 쿠버네티스 기반 애플리케이션 개발에 초점이 되어있다.

1년에 한번 오는 기회니 비싼 자격증 저렴하게 신청하시길!


메모장

kubectl run hello-minikube
kubectl cluster-info
kubectl get nodes
kubectl get pods -n kube-system

// pod를 배포하는 방법
kubectl run nginx --image nginx
PS C:\> kubectl run nginx --image nginx
pod/nginx created
PS C:\> kubectl get pods
NAME    READY   STATUS    RESTARTS   AGE
nginx   1/1     Running   0          3m22s

controlplane ~ ➜  kubectl get pods
controlplane ~ ➜ kubectl run nginx --image=nginx
pod/nginx created
controlplane ~ ➜ kubectl get pods
NAME    READY   STATUS    RESTARTS   AGE
nginx   1/1     Running   0          21s
controlplane ~ ➜  kubectl get pods -o wide
NAME            READY   STATUS    RESTARTS   AGE     IP           NODE           NOMINATED NODE   READINESS GATES
nginx           1/1     Running   0          4m3s    10.42.0.9    controlplane   <none>           <none>
newpods-cvdd4   1/1     Running   0          3m28s   10.42.0.10   controlplane   <none>           <none>
newpods-mg7hm   1/1     Running   0          3m28패 s   10.42.0.11   controlplane   <none>           <none>
newpods-qgzbz   1/1     Running   0          3m28s   10.42.0.12   controlplane   <none>           <none>
controlplane ~ ➜ kubectl describe pod newpods-q74nk
controlplane ~ ➜ kubectl delete pod webapp
pod "webapp" deleted
controlplane ~ ➜  kubectl describe pod newpods-rdf4l
// Pod 생성하지 않고 YAML 파일만 생성
controlplane ~ ➜  kubectl run redis --image=redis123 --dry-run=client -o yaml > redis.yaml
controlplane ~ ➜ vi redis.yaml
//yaml파일 수정후 적용
controlplane ~ ➜  kubectl apply -f redis.yaml 
Warning: resource pods/redis is missing the kubectl.kubernetes.io/last-applied-configuration annotation which is required by kubectl apply. kubectl apply should only be used on resources created declaratively by either kubectl create --save-config or kubectl apply. The missing annotation will be patched automatically.
pod/redis configure

kubectl edit pod pod-name


profile
IT업계에서 노설 이라는 이름이 보이면 그건 무조건 나.

0개의 댓글