일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- grafana
- bdp
- bottlerocket
- CNI
- pod 네트워킹
- prometheus
- CICD
- aws lb controller
- eks 설치
- 노드 네트워킹
- loadbalancer
- Jenkins
- aws eks
- gogs
- blue-green
- wsl & vagrant
- vpc cni
- eks storage
- vagrant
- WSL
- Kubernetes
- managed node groups
- service mesh
- docker
- eks autoscaling
- Ingress
- ebdp
- eks 모니터링
- eks networking
- kubernetes network policy
- Today
- Total
목록vagrant (2)
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 ..

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 ..