분류 전체보기
-
[k8s] curl 오류kubernetes/trouble shooting 2025. 1. 8. 15:15
curl 오류동일 Node 내 A Pod에서 B Pod에서 Curl 명령시, 조회가 되지 않았다.이유는 다양해보이지만 일단 Selinux를 disabled 하니까 해결되긴 되었다,, 해결 방법apt install selinux-utilssetenforce 0 결과root@master:~# kubectl get pods -o wideNAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATESmy-nginx-587f57b444-ffpxq 1/1 Running 0 100m 192.168.166.132 node1 ..
-
[따배쿠] 로그 관리kubernetes 2025. 1. 8. 13:39
Pod 로그 관리로그 활용법로그 수집 -> 로그 정제 -> 로그 보존 -> 분류 후 시각화 개별 Pod의 로그 확인kubectl logs 실습 # pod 생성 (deployment 이용)root@master:~# kubectl create deployment my-nginx --image nginx:1.14 --port 80 --replicas 2deployment.apps/my-nginx created # pod 확인root@master:~/Getting-Start-Kubernetes/17# kubectl get pods -o wideNAME READY STATUS RESTARTS AGE IP NODE NOM..
-
[Azure] Osdisk 크기 축소Azure 2025. 1. 7. 10:44
Osdisk 크기 축소 Azure에서 VM을 생성하면 기본 OS 디스크가 128GiB로 구성된다.생성된 VM의 OS Disk를 줄이려면, Azure Portal에서는 지원하지 않는다. 그러면 어떻게 해야할까? 해당 문서를 참고하여 OsDisk 크기를 줄여보자.Shrink an Azure VMs OS Managed Disk using PowerShell. Shrink an Azure VMs OS Managed Disk using PowerShell.Using PowerShell (and the Azure Portal) to reduce/shrink the OS Managed Disk size for a Windows VM in Azure.jrudlin.github.io 작업 단계 1. 먼저 가동중인 VM ..
-
[따배쿠] 인증과 권한 관리 - 권한관리편kubernetes 2024. 12. 29. 15:57
권한 관리 (Role & RoleBinding) 실습 [Role 생성] # command로 Role 생성kubectl create role developer --verb=create --verb=get --verb=list --verb=update --verb=delete --resource=pods role 이름 : develpoerrole 역할 : create, get, list, update, delete대상 리소스 : pod 즉, pod에 대해 create, get, list, update, delete의 권한을 갖는 role이다. # command로 만든 Role에 관해 yaml 파일로 확인root@master:~# kubectl create role developer --verb=creat..
-
[따배쿠] Secretkubernetes 2024. 12. 25. 10:11
SecretConfigMap과 Secret은 유사하나, Secret이 더욱 더 민감한 정보를 담고 있다.Secret의 값들은 base64로 인코딩 되어있다.secret 생성 시, Available Commands를 필수로 넣어줘야한다. ex) docker-registry, generic, TLS 실습 순서 : Secret 파일 생성 > Secret 생성 > Secret 사용 [nginx-config.conf 파일 생성]root@master:~/Getting-Start-Kubernetes/11# vi genid-web-config/nginx-config.conf ..
-
[따배쿠] ConfigMapkubernetes 2024. 12. 24. 16:07
ConfigMap미리 ConfigMap에 구성정보를 정의해놓았다가, 컨테이너마다 해당 구성정보가 필요할 경우 사용 실습 # Configmap 생성root@master:~/Getting-Start-Kubernetes/10# kubectl create configmap ttabae-config --from-literal=INTERVAL=2 --from-literal=OPTION=boy --from-file=config.dir/configmap/ttabae-config created # 확인root@master:~/Getting-Start-Kubernetes/10# kubectl get configmaps ttabae-configNAME DATA AGEttabae-config 3 ..
-
[Azure] Azure SQL Server 및 SQL DatabaseAzure 2024. 12. 24. 14:02
Azure SQL ServerAzure SQL Server는 Azure에서 호스팅되는 SQL Server 인스턴스를 의미합니다.이는 가상 머신(VM) 형태로 제공되며, 사용자가 SQL Server의 모든 기능을 사용할 수 있습니다. 특징완전한 제어사용자는 SQL Server의 모든 설정과 구성을 직접 관리할 수 있습니다.유연한 배포필요에 따라 인스턴스를 선택하고, 하드웨어 및 소프트웨어를 자유롭게 구성할 수 있습니다.온프레미스와 유사한 환경기존 SQL Server와 유사한 경험을 제공합니다.Azure SQL DatabaseAzure SQL Database는 Microsoft Azure에서 제공하는 완전 관리형 관계형 데이터베이스 서비스입니다.사용자는 데이터베이스에만 집중하고 인프라 관리의 부담을 덜 수 ..