일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- wireshark
- nginx-media-server
- Flutter
- ffmpeg
- Sysinternals
- Java
- configmap
- HLS
- dart
- VSCode
- deployment
- Pod
- golang
- Android
- Kubernetes
- ebpf
- aws
- docker
- macos
- android studio
- Shell script
- 행정구역분류
- Windows10
- kubectl
- service
- namespace
- RTMP
- aws cli
- Python
- spring cloud config
- Today
- Total
목록aws (7)
woonizzooni
[참고] AWS CLI구성 (MacOS) 맥의 경우와 차이 없으나, MSI 설치 관리자가 아닌 python & pip로 설치할 경우 나처럼 지저분한(?) 파이썬 상태 보유자를 위한 글. o 설치 - 참고 : https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/install-windows.html - 설치 방법 중 python & pip를 이용해서 설치 - python 설치 참고 : [VSCode] Python가상 실행 환경 구성 (Windows환경에서) * 이군데 저군데 너무 많이 python이 분포(?)되어 있어서 아래를 PATH 최상위로 잡아둠 * C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python..
sqs.SQS.GetQueueUr("queue-name") 실행 에러 status code 400 the specified queue does not exist or you do not have access to it 에러 메시지 내용만으로는 1) queue-name이 진짜로 없거나 2) 엑세스 권한이 없거나 이군. 실제 큐가 있었으니 난 엑세스 정책을 변경함. 대충 *로... 그랬더니 해결~ 변경 전 변경 후 { "Version": "yyyy-mm-dd", "Id": "*****", "Statement": [ { "Sid": "*****", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::{id}:root" }, "Action": "SQS:*", "Re..
aws 명령의 default output format은 json임. aws명령으로 이용하려는 서비스별 조회/생성/조회/업데이트/삭제 등의 동작을 할 수 있는데, 이중 'describe'명령 결과를 내 기호에 맞는 데이터와 형식으로 출력시켜보자. o 기본 출력 예 (json) $ aws autoscaling describe-auto-scaling-groups --auto-scaling-group-names 이름-*** { "AutoScalingGroups": [ { "AutoScalingGroupName": "이름-***...", "AutoScalingGroupARN": "arn:aws::........", ... "MinSize": 2, "MaxSize": 6, "DesiredCapacity": 2, "..
AWS SDK for Go 가능하면 session을 캐시하고 쓰라고 하네? 동시성에도 안전하니(수정하지/되지 않는한) 재사용 하자! docs.aws.amazon.com/sdk-for-go/api/aws/session/ Overview ▾ Package session provides configuration for the SDK's service clients. Sessions can be shared across service clients that share the same base configuration. Sessions are safe to use concurrently as long as the Session is not being modified. Sessions should be cached..
kubeconfig 구성 참고 https://woonizzooni.tistory.com/entry/EKS-클러스터-인증-관리 윗 글에서 2개의 클러스터를 다음과 같이 더 추가. $ aws eks --region 내region update-kubeconfig --name cc $ aws eks --region 내region update-kubeconfig --name dd $ kubectl config get-contexts CURRENT NAME CLUSTER AUTHINFO NAMESPACE arn:aws:eks:내region:**:cluster/aa ** ** arn:aws:eks:내region:**:cluster/bb ** ** arn:aws:eks:내region:**:cluster/cc ** **..
참고글 (계정 연동 부문) : AWS CLI구성 클러스터 인증 관리 (Managing Cluster Authentication) https://docs.aws.amazon.com/ko_kr/eks/latest/userguide/managing-auth.html CLI로 EKS 클러스터에 pod생성 등을 하기 위해 인증 환경을 구성한다. (위 그림의 kubectl에 해당), kubectl 설치 : "EKS-vended kubectl binaries for macOS" https://docs.aws.amazon.com/ko_kr/eks/latest/userguide/install-kubectl.html $ curl -o kubectl https://amazon-eks.s3-us-west-2.amazonaws..
AWS CLI 설치 https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/install-cliv1.html $ pip3 install awscli --upgrade --user Collecting awscli Downloading https://files.pythonhosted.org/packages/8e/6d/2c212d8646f093e73d505c1b20605588c048c3d1935cc7a08423544ca5e5/awscli-1.18.31-py2.py3-none-any.whl (3.0MB) |████████████████████████████████| 3.0MB 716kB/s .... Successfully installed PyYAML-5.3.1 aws..