본문 바로가기

728x90

리눅스

screen 명령어 screen 명령어 Summary : A screen manager that supports multiple logins on one terminal screen 설치 yum install -y screen screen 세션 시작 세션 생성 screen -S [session name] screen -S sangchul $ screen -S sangchul [detached from 4008445.sangchul] 세션 나기기 Ctrl + a, d 세션 리스트 확인 screen -ls $ screen -ls There are screens on: 4008445.sangchul(Detached) 4008392.sangchu(Detached) 2 Sockets in /var/run/screen/S-root. .. 더보기
[kubernetes] kubeadm 구성 보기 kubeadm 구성 보기 kubectl get cm -o yaml -n kube-system kubeadm-config $ kubectl get cm -o yaml -n kube-system kubeadm-config apiVersion: v1 data: ClusterConfiguration: | apiServer: extraArgs: authorization-mode: Node,RBAC timeoutForControlPlane: 4m0s apiVersion: kubeadm.k8s.io/v1beta2 certificatesDir: /etc/kubernetes/pki clusterName: kubernetes controllerManager: {} dns: type: CoreDNS etcd: local: .. 더보기
쿠버네티스에서 실행 중인 컨테이너에 대화형 셀로 접근하는 방법 쿠버네티스에서 실행 중인 컨테이너에 대화형 셀로 접근하는 방법kubectl exec 명령어를 통해 Kubernetes 클러스터에서 실행 중인 컨테이너 내부로 들어가서 대화형 셀을 실행할 수 있습니다.1. 실행 중인 Pod 확인쿠버네티스 클러스터에서 실행 중인 Pod를 확인해야 합니다.kubectl get pods현재 네임스페이스에서 실행 중인 모든 Pod의 목록을 출력합니다. 특정 네임스페이스에서 Pod를 확인하려면 -n 플래그를 사용합니다.kubectl get pods -n 2. Pod의 컨테이너 목록 확인만약 Pod 안에 여러 컨테이너가 있을 경우 해당 Pod의 컨테이너 목록을 확인할 수 있습니다.kubectl get pod -o jsonpath='{.spec.containers[*].name}'3.. 더보기
쿠버네티스 레플리카셋(Replica Set) 쿠버네티스 레플리카셋(Replica Set) 쿠버네티스에서 레플리카셋(ReplicaSet)은 파드(Pod)의 복제본을 관리하는 리소스입니다. 레플리카셋은 지정된 수의 파드 복제본을 유지하도록 보장하며 파드가 비정상적으로 종료되었을 때 새로운 복제본을 생성하여 대체합니다. 레플리카셋의 중요한 특징 레플리카 수 유지 : 레플리카셋은 사용자가 지정한 수의 복제본을 유지합니다. 파드가 삭제되거나 종료된 경우 새로운 파드를 생성하여 복제본 수를 유지합니다. 라벨 셀렉터 사용 : 레플리카셋은 라벨 셀렉터를 사용하여 자신이 관리하는 파드를 식별합니다. 이를 통해 레플리카셋이 복제하는 파드를 선택할 수 있습니다. 스케일링 : 사용자는 필요에 따라 레플리카셋의 복제본 수를 조정하여 애플리케이션을 확장하거나 축소할 수 있.. 더보기
[kubernetes] APP(httpd) 배포 테스트 APP(httpd) 배포 테스트 deployment 생성 $ kubectl create deployment test-httpd --image=httpd deployment.apps/test-httpd created Pod/Deployment 확인 $ kubectl get pods NAME READY STATUS RESTARTS AGE test-httpd-7f58b4d6cf-8nmx7 1/1 Running 0 41s $ kubectl get deployment NAME READY UP-TO-DATE AVAILABLE AGE test-httpd 1/1 1 1 6m43s ###label 확인 $ kubectl get pod --show-labels NAME READY STATUS RESTARTS AGE LAB.. 더보기
쿠버네티스에서 NGINX Ingress Controller를 설정하는 방법 쿠버네티스에서 NGINX Ingress Controller를 설정하는 방법 NGINX Ingress Controller를 설정하는 방법 NGINX Ingress Controller 배포 kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/cloud/deploy.yaml $ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/cloud/deploy.yaml namespace/ingress-nginx created serviceaccount/i.. 더보기
Kubernetes Dashboard를 설치하고 구성하는 방법 Kubernetes Dashboard를 설치하고 구성하는 방법(WEB UI)1. Kubernetes Dashboard 설치Dashboard 배포kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-beta4/aio/deploy/recommended.yaml$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-beta4/aio/deploy/recommended.yamlnamespace/kubernetes-dashboard unchangedserviceaccount/kubernetes-dashboard unchangedservice.. 더보기
[kubernetes] 웹 서버(nginx) 배포(deployment) kubernetes 웹 서버(nginx) 배포 도커 이미지 확인 $ docker search nginx NAME DESCRIPTION STARS OFFICIAL AUTOMATED nginx Official build of Nginx. 13956 [OK] 쿠버네티스 네임스페이스 생성 ###네임스페이스 생성 $ kubectl create namespace nginx-namespace namespace/nginx-namespace created ###네임스페이지 확인 $ kubectl get namespace | grep nginx-namespace nginx-namespace Active 62s 쿠버네티스 웹 서버(nginx) 배포 ###디플로이먼트 생성 $ kubectl create deployment n.. 더보기

반응형