분류 전체보기(107)
-
Networking Core Pre-Assessment
Single choice 1) A website runs in three separate AWS regions and users face higher latencies. Which service can ensure that the user gets connected to the nearest regions? AWS Direct Connect AWS VPN AWS Global Accelerator Comments: AWS GlobalAccelerator can redirect the users to the nearest regions even in case of any regional failures. AWS Transit Gateway Score: 1.00 Single choice 2) What type..
2024.04.11 -
Amazon EKS Knowledge Badge Assessment
Single choice 1) A company's security team needs to be able to detect whenever production containers attempt to communicate with known IP addresses associated with cryptocurrency-related activity. Automated vulnerability scanning of container images is performed in the CI/CD pipeline before deployment into managed node groups in EKS. Which solution should the security team leverage to meet their..
2024.04.11 -
Stable Diffusion이란?
Stable Diffusion이란? 1. 텍스트로 이미지를 만들어주는 생성형 인공 지능 모델입니다. 2. "Stable"은 Stability AI의 이름을 딴 것으로 보입니다. ChatGPT는 "모델이 생성하는 이미지의 질과 안정성을 의미한다"고 했지만 그 근거를 찾을 수 없었습니다. "Diffusion"은 Diffusion Model이라는 이미지 생성 모델의 이름에서 따온것으로 보입니다. (확실하지 않습니다) 3. 스테이블 디퓨전은 컴퓨팅 리소스를 대폭 줄여 GPU가 장착된 개인의 데스크탑이나 노트북에서도 실행할 수 있게 만든것이 특징입니다. 4. Stable Diffusion은 오픈소스이며, 사용하여 서비스를 할 경우 Stable AI에서 만든 오픈소스 머신러닝 전용 라이선스를 따라야 합니다. sta..
2024.04.08 -
AWS에서 할 수 있는 10가지 비용 절감 방법
AWS 클라우드에서 비용 절감하는 방법을 몇 가지 소개해드리려고 합니다.클라우드를 도입하고 사용하는 분들이라면 요즘 경제 상황과 더불어 비용 절감에 대한 필요성을 크게 느끼실겁니다.회사든 개인이든, 우리 모두 비용을 줄이려는 노력을 하고 있어요. 특히 클라우드 비용은 방심하면 날벼락 같은 청구서를 받기도 하죠.저는 3년 차 DevOps 엔지니어이자 클라우드 솔루션 아키텍트(SA)로, 최근에 새로 배운 AWS 서비스들과 제 경험과 사례를 바탕으로 클라우드 비용을 절약하는 방법을 몇 가지 소개해드리려고 합니다.1. S3 Bucket KeyS3는 AWS의 대표 서비스입니다.콘솔에서 S3 버킷을 생성하려고 하면 아래와 같은 선택 화면을 만납니다.회색 글씨로 비용 절감에 대한 언급을 확인할 수 있습니다.Using..
2024.03.03 -
kubernetes a count of all Pods on a specific node
k get no NAME STATUS ROLES AGE VERSION ip-10-90-171-141.ap-northeast-2.compute.internal Ready 166d v1.25.7-eks-a59e1f0 ip-10-90-175-17.ap-northeast-2.compute.internal Ready 201d v1.25.7-eks-a59e1f0 ip-10-90-188-119.ap-northeast-2.compute.internal Ready 201d v1.25.7-eks-a59e1f0 ip-10-90-189-196.ap-northeast-2.compute.internal Ready 166d v1.25.7-eks-a59e1f0 ip-10-90-194-17.ap-northeast-2.compute.i..
2023.11.07 -
Amazon ECR 다른 AWS 계정에서 사용하는 법
Amazon ECR - 권한 - 정책 JSON 편집 ECR 이미지 -> Repositories -> Permissions -> Edit policy JSON { "Version": "2012-10-17", "Statement": [ { "Sid": "AllowPushPull", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::account-id:root" }, "Action": [ "ecr:GetDownloadUrlForLayer", "ecr:BatchGetImage", "ecr:BatchCheckLayerAvailability", "ecr:PutImage", "ecr:InitiateLayerUpload", "ecr:UploadLayerPart", "ec..
2023.10.30