서로 다른 계정의 Azure Kubernetes Cluster를 CLI로 넘나드는 법?
·
CLOUD/Azure Cloud
1. 새로운 계정으로 az login을 한다. 2. az aks get-credentials --name cluster_name --resource-group rg_name를 한다. 끝! 이전의 config를 이름을 바꿔놓고, 필요할 때 다시 교체하면 된다. (더 좋은 방법이 있을 수도..)
AKS 실전 - AKS Volume 심화
·
CLOUD/Azure Cloud
AKS의 디스크 타입은 크게 Azure Disk, Azure Files, Azure HPC Cache, Azure NetApp, Azure Ultra Disk가 있다. 여기서 NFS Server는 Azure 외부의 디스크다. 네트워크 서버니까 뭐 당연한 소리.. Kubernetes에서 Volume이라고 하면 1. Storage Class 2. Secret 3. PVC (Persistent Volume Controller) 4. PV 이렇게 이루어져있다. Azure 클라우드 상에 있는 file이나 disk에 해당하는 부분이 있을 수 있고 이걸 맵핑해서 사용하는게 PV다. (? 먼솔?) PVC는 Pod의 Volume과 Azure의 PV를 연결해주는 것이다. PV를 사용할 때 가장 먼저 하는건, Storage..
Locust로 부하 테스트 가능
·
CLOUD/AWS Cloud
AWS에서 시연할 때 보여줌.
GCP ACE 후기 및 전략
·
CLOUD
GCP ACE 후기 오늘 봤고 패스했어요 https://www.coursera.org/professional-certificates/cloud-engineering-gcp#courses coursera 구글이 제공한 6개의 강의로 이루어져있어요 첫 시작 하실 때 좋아요 처음 가입하시면 7일간 free trial 기간이 있어요 6개를 다 하기엔 좀 어려워요 https://cloud.google.com/training#learning-paths 이건 구글이 제공하는 coursera랑 같은 강의들이에요 이걸 몰랐었어요 https://partner.cloudskillsboost.google/ 저희 회사는 GCP partner라서 이곳에서 무료로 강의를 들을 수 있어요 강의 뿐만 아니라 정말 많은 정보와 랩,솔루..
AWS 자격증 준비
·
CLOUD/AWS Cloud
https://aws-hyoh.tistory.com/notice/3 AWS Solutions Architect Associate(SAA) 자격증 준비 방법 AWS Solutions Architect Associate(SAA), Sysops Administrator Assocaite(SOA)에 대한 관심이 급속도로 커지고 있지만 자격증 준비 방법에 대한 정보는 많지 않다. 심지어 올해 시험이 대대적으로 변경되어 더더.. aws-hyoh.tistory.com
local kubectl을 aks와 연결하는 방법? + 연결 리셋하는 방법?
·
CLOUD/Azure Cloud
https://www.reddit.com/r/kubernetes/comments/8ohxcz/how_to_connect_kubectl_to_aks/ How to connect kubectl to AKS? Hi everyone. I'm new to Kubernetes. I've played around with it locally using minikube and kubectl which is pretty straight forward and easy to set... www.reddit.com az aks get-credentials --resource-group myResourceGroup --name myAKSCluster 이거 열어보면 이렇게 나옴. 이거 지워주면 됨. credentials 등록하니..