🐶 이전 수업 내용 복습하기
- Rolling
: 특정 시점에 운영환경으로 찍고, 이동하는 등을 수행함
: 이를 통해서 이미지 변경 및 작업함
: 버전 up & down 가능
🟣 Stateless and Stateful Applications?
- Stateless
: 웹서버를 간단하게 띄운 것 (nginx), 요청이오면 응답하는 것- Stateful
: 데이터가 있을 때, 요청이 오면, 데이터와 요청을 기반으로 응답이 달라질 수 있는 것
🟣 Stateless Applications
- State가 없다는 의미로, 클라이언트가 요청해오면 서버는 기존의 기록을 바탕으로 판단하는 것이 아님 (과거의 메모리가 없음)
- 최초의 요청인 경우, 판단함 (ex. A, B, C에서 응답이 왔을 때, A와 B를 기반으로 C를 판단하는 것이 아님. 과거의 기록이 없으므로 현재시점에서 요청만으로 판단하는 것)
🟣 Stateful Applications
- 과거의 데이터가 있으므로 과거에 무슨일을 했는지를 기억하고 있음 (과거에 이루어졌던 일이 응답에 영향을 줌)
- 클라이언트가 요청하면 서버가 응답을 하겠지만, 그 내용을 저장함
- 메모리의 정의는 (도커에서 설명한 것처럼 volume, storage는 메모리에 속하며, 그외에 컴퓨터 메모리가 있음)
- 즉, 과거의 transactions(업무)에 영향을 주는데 이를
Stateful
이라고 함
🟣 Creating Nginx Deployment (1)
- application/deployment.yaml
- 과거의 데이터가 없으므로, Rolling에 매우 강함 (무엇을 하든 상관없음)
- 새로운 이미지가 떴을 때, 과거의 정보와 전혀 상관이 없기 때문에 새로운 이미지가 독자적으로 움직일 수 있음
- 즉,
Stateless
는 메모리를 가지고 있지 않기 때문에 요청이 현재 내용에 의해 결정 됨(과거의 내용 상관없음)
🟣 Creating Nginx Deployment (2)
- 직접 만들지 않고, 사이트에 있는 것을 가져옴 : https:k8s.io/examples/application/deployment.yaml
- 사이트에 접속하면 yaml파일이 다운됨
- 파일 열어서 확인하기 (image: nginx:#.##.#)
minikube start kubectl apply -f https:k8s.io/examples/application/deployment.yaml kubectl describe deployment nginx-deployment kubectl get pods -l app=nginx kubectl describe pod <pod-name>
🟣 Updating and Scaling the Deployment (1)
- application/deployment-update.yaml
🟣 Updating and Scaling the Deployment (2)
kubectl apply -f https:k8s.io/examples/application/deployment-update.yaml kubectl get pods -l app=nginx
🟣 Updating and Scaling the Deployment (3)
- application/deployment-scale.yaml
🟣 Updating and Scaling the Deployment (4)
kubectl apply -f https:k8s.io/examples/application/deployment-scale.yaml kubectl get pods -l app=nginx kubectl delete deployment nginx-deployment
🟣 Run Five Instances
kubectl run hello-world --replicas=5 --labels="run=load-balancer-example" --image=gcr.io/google-samples/node-hello:1.0 --port=8080 kubectl get deployments hello-world kubectl describe deployments hello-world kubectl get replicasets kubectl describe replicasets
🟣 Create a Service Object with Exposed IP
kubectl expose deployment hello-world --type=LoadBalancer --name=my-service kubectl get services my-service kubectl describe services my-service
🟣 Service Object for the Running Application
minikube service my-service kubectl delete services my-service kubectl delete deployment hello-world