AWS
-
couldn't get current server API group list: the server has asked for the client to provide credentials카테고리 없음 2023. 8. 9. 10:41
kubectl은 Kubernetes 클러스터와 상호 작용하기 위한 커맨드 라인 도구입니다. Kubernetes는 컨테이너 오케스트레이션 플랫폼으로, 복잡한 컨테이너 기반 애플리케이션을 관리하고 배포하기 위한 기능을 제공합니다. kubectl은 이러한 Kubernetes 클러스터를 다루는데 사용되며, 클러스터 관리자, 개발자, 운영팀 등이 컨테이너화된 애플리케이션을 관리하고 제어하기 위해 사용됩니다. 여러 가지 작업을 수행할 수 있는 kubectl 명령어가 있습니다: Pod 관리: kubectl create: 새로운 리소스 생성. kubectl get: 리소스 목록 조회. kubectl describe: 리소스 상세 정보 조회. kubectl logs: Pod의 로그 조회. Deployment 및 서비스 ..
-
람다 보안그룹 등록카테고리 없음 2023. 6. 2. 17:11
#. ChatGPT 파이썬 짬 ChatGPT — Release Notes | OpenAI Help Center The latest update for ChatGPT help.openai.com #설정 google.com 질의 한 ip를 보안그룹에 등록 아웃바운드 tcp 443 등록 보안그룹 아웃바운드 세분화하기 위해 코드를 구현함 import socket import boto3 import botocore def get_ip_address(domain_name): try: ip_address = socket.gethostbyname(domain_name) return ip_address except socket.gaierror: return None def lambda_handler(event, cont..
-
cli53 명령어 사용법카테고리 없음 2023. 3. 13. 15:27
cli53 명령어 사용법 A 레코드 별칭 생성법 # 예시 cli53 rrcreate utest.co.kr 'dev2-cheongsol AWS ALIAS A dualstack.utest.com-1651651651.ap-northeast-2.elb.amazonaws.com 호스트영역 값 false' #실제 값 cli53 rrcreate utest.co.kr 'dev2-cheongsol AWS ALIAS A dualstack.utest.com-1651651651.ap-northeast-2.elb.amazonaws.com EDSAIJFOASDIJ false' 백업 cli53 export --full --debug utest.co.kr > etoos.com.txt 2> example.com.err.log 삭제 #..
-
Amazon ECS 컨테이너 배포 빠르게카테고리 없음 2023. 2. 15. 15:28
권장 설정 ( 대상 그룹 상태 검사 설정 ): HealthCheckIntervalSeconds: 5 초 HealthyThresholdCount: 2 이 구성은 로드 밸런서가 ECS에서 컨테이너를 정상 상태로 간주하기까지 10초밖에 걸리지 않는다는 것을 의미합니다. 권장 설정 ( 대상 그룹 속성 ): deregistration_delay.timeout_seconds: 5 초 이렇게 하면 로드 밸런서가 클라이언트와 백엔드 서버 간의 연결 유지 연결을 끊기 전에 5초만 대기한 다음 드레이닝이 완료되었음을 ECS에 보고하고 ECS가 작업을 중지할 수 있습니다. 출처 https://nathanpeck.com/speeding-up-amazon-ecs-container-deployments/
-
error: You must be logged in to the server (the server has asked for the client to provide credentials)카테고리 없음 2022. 6. 24. 17:16
#에러메시지 aws eks build error error: You must be logged in to the server (the server has asked for the client to provide credentials) 해결 kubectl edit -n kube-system configmap/aws-auth - groups: - system:masters rolearn: arn:aws:iam::214124124:role/role-codebuild-124 username:role-codebuild-124
-
aws-load-balancer-controller 설치카테고리 없음 2022. 6. 22. 13:47
aws eks aws-load-balancer-controller 설치 방법 AWS Load Balancer Controller 추가 기능 출처 https://oops4u.tistory.com/2586 아래와 같이 진행 ------------------------------- eksctl utils associate-iam-oidc-provider \ --region ap-northeast-2 \ --cluster eks-name \ --approve curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/main/docs/install/iam_policy.json aws ia..
-
-
Amazon EKS 1.22 ingress카테고리 없음 2022. 6. 9. 09:20
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: namespace: game-2048 name: ingress-2048 annotations: alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:ap-northeast-2:124124124124:certificate/125125124sadf alb.ingress.kubernetes.io/ssl-policy: ELBSecurityPolicy-2016-08 alb.ingress.kubernetes.io/listen-ports: '[{"HTTP": 80}, {"HTTPS":443}]' alb.ingress.kubernetes.io/actions.ssl-redir..