7가지 서비스 중 어떤 Container 서비스를 선택해야 할까? (+Service Discovery)
·
CLOUD/Azure Cloud
https://docs.microsoft.com/en-us/azure/container-apps/compare-options Comparing Container Apps with other Azure container options Understand when to use Azure Container Apps and how it compares to other container options including Azure Container Instances, Azure App Service, Azure Functions, and Azure Kubernetes Service. docs.microsoft.com 총 7가지의 Container 서비스가 존재한다. * Azure Container Apps 서버리스..
서로 다른 계정의 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..