일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- prometheus
- bottlerocket
- grafana
- Istio
- eks 모니터링
- CNI
- inplace 업그레이드
- docker
- Jenkins
- Kubernetes
- eks autoscaling
- eks인증
- service mesh
- eks 업그레이드 전략
- vpc cni
- aws eks
- Kind
- k8s인증
- vagrant
- loadbalancer
- CICD
- aws 워크샵
- eks auto mode
- WSL
- aws k8s 업그레이드
- irsa
- blue-green 업그레이드
- Ingress
- argocd
- K8S
- Today
- Total
목록Tip & Tips (4)
WellSpring

1. Install Vagrant1) WSL2 에서 Vagrant 설치# run inside WSL 2# check https://www.vagrantup.com/downloads for more infocurl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"sudo apt-get update && sudo apt-get install vagrant 2) enable WSL 2 support ( add below 2-lines into ~/.bashrc ..

windows 상에서 AWS CLI 설치 및 연동을 위한 환경 구성에 대해 간략히 정리합니다. Step1. AWS CLI 설치 - 파일 다운로드 및 설치 : docs.aws.amazon.com/ko_kr/cli/latest/userguide/install-cliv2-windows.html 더보기1. Windows용 AWS CLI MSI 설치 프로그램 (64비트) 을 다운로드하고 실행합니다.https://awscli.amazonaws.com/.msi AWSCLIV2또는 msiexec 명령을 실행하여 설치 프로그램을 실행할 수도 있습니다. MSImsiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi msiexec에서 사용할 수 있는 다양한 파라미터는 Micros..

1. Windows key + R 1-1. 관리자 권한으로 CMD 실행 필요 시, - Windows key + R > cmd 입력 후, ctrl + shift + Enter 2. 현재 ubuntu 버전 확인 > wsl -l -v 3. 등록된 배포판 제거 합니다. > wsl --unregister Ubuntu 4. 다음으로, 배포판 앱을 제거해야 합니다. 윈도우키를 누르고 배포판 이름 ubuntu를 입력한 후, 제거를 클릭합니다. 5.윈도우키를 누른 후, 설정을 클릭합니다. => 앱 선택 후, 조회 창에서 linux 입력 => Windows Subsystem for linux update 대상 선택 및 제거 6. 추가 설정 확인 및 해제 Step 6-1 ) 5. 과정에서 앱 선택 후..

vagrant 라는 Tool을 처음 접하면서, 여러가지 겪었던 문제 위주로 사용법을 정리해 보았습니다 ~~ 1탄으로, vagrant 환경으로 로컬 파일 가상화 VM으로 복사하기 입니다.♣ 로컬에 있는 파일을 어떻게 Vagrant VM에 올리나요??Step1. vagrant scp 설치하기 ( 로컬 호스트 - 노트북 or Desktop 컴퓨터 에서 수행 ) Prompt> vagrant plugin install vagrant-scp Step2. vagrant VM 확인하기 Prompt> vagrant global status Step3. VM에 파일 업로드할 Directory 만들기 ( Target-Directory 명을 /imsi 로 가정하면 ) # mkdir -p /imsi # chmod 777 ..