Dev(61)
-
명령어 꼭 외워야 할까요
제 결론은 외우면 좋다입니다.왜 좋은지, 명령어를 외우는 행동을 분석해 볼게요.1. 테라폼 명령어를 외우다.제 사례를 하나 공유드릴게요. 저는 오랜 기간 동안 테라폼 명령어를 외우지 않고 쓴 경험이 있어요.terraform init 은 알았지만terraform init -reconfigure 나 -migrate-state는 에러메시지에서 나오면 사용했고terraform init -backend-config 같은 명령어는 노트패드에서 복붙 해서 쓰는 식이었어요.terraform plan은 알았지만terraform plan -var-file은 또 저장해 놓은 명령어 모음에서 복사해서 쓰는 식이었죠.무슨 명령어를 쳐야 하는지 알고, 그 명령어가 어디 있는지 알지만, 명령어 자체를 외우지는 않았어요. 그러다가 ..
2024.11.10 -
composable CDP란?
A composable CDP is a modular solution that collects, models and activates customer data from your existing data infrastructure. This customer platform leverages the comprehensive data repository of a data warehouse, which already contains a detailed map of the customer journey. 컴포저블 CDP는 기존 데이터 인프라에서 고객 데이터를 수집, 모델링 및 활성화하는 모듈식 솔루션입니다. 이 고객 플랫폼은 고객 여정에 대한 상세한 맵이 이미 포함된 데이터 웨어하우스의 포괄적인 데이터 저장소를 ..
2024.05.08 -
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 -
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