AWS Elastic Beanstalk 설치 과정
·
☁️Cloud/AWS
간단 설명부터 시작해서 설치 방법까지 작성AWS(Amazon Web Services)에서 제공하는 PaaS(Platform as a Service) 서비스애플리케이션을 쉽게 배포하고 운영할 수 있도록 도와주는 플랫폼Elastic Beanstalk을 사용하면 개발자는 인프라 관리에 대한 걱정 없이 애플리케이션 코드에 집중할 수 있습니다.간단 한줄: Architecture 를 한방에 구성   구체적 구성Amazon EC2 Instances (Amazon EC2 인스턴스)Elastic Beanstalk은 애플리케이션을 실행하는 가상 서버로서 Amazon EC2 인스턴스를 사용합니다. 이 인스턴스들은 애플리케이션의 코드 및 데이터를 호스팅하며, Elastic Beanstalk은 이를 관리합니다.Amazon RD..
[Kubernetes] Controller 소개
·
🔹Kubernetes
정의Pod 개수 보장실행 안정적 유지ReplicationController 생성 명령어kubectl create rc-exam --image=nginx --replicas=3 --selector=app-webui 갯수를 살펴봐서 많으면 pod 를 죽이고, 부족하면 새로 생성해준다kubectl edit rc rc-nginx # 'replicas: '부분을 변경, 실행 중인 pod 개수 변경 (3->4)# 다른 부분 (예시, image: nginx:1.15) 변경은 적용되지 않는다# # 변경 사항을 적용하려면, kubectl delete 로 삭제하라.# # 다시 생성될 것이다kubectl scale rc rc-nginx —replicas=2# 4개가 강제적으로 2개로 줄어듬kubectl delete rc r..
AWS CloudFormation
·
☁️Cloud/AWS
https://aws.amazon.com/ko/cloudformation/#