[Kubernetes] kubectl copy command
기본 구조 kubectl cp [소스] [대상] # Local Machine의 /path/to/local/file 파일을 my-pod 파드의 /path/to/destination 경로로 복사할 수 있다. kubectl cp /path/to/local/file my-pod:/path/to/destination [명령어] --help를 입력하...
기본 구조 kubectl cp [소스] [대상] # Local Machine의 /path/to/local/file 파일을 my-pod 파드의 /path/to/destination 경로로 복사할 수 있다. kubectl cp /path/to/local/file my-pod:/path/to/destination [명령어] --help를 입력하...
iTerm2 설치 brew install iterm2 Homebrew 설치 참고 oh my zsh 설치 iTerm2에 다음 명령어를 입력한다. sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ...
기본 구조 kubectl delete [리소스 유형] [리소스 이름] # Pod 삭제하려면 다음과 같이 입력 kubectl delete pod [파드 이름] [명령어] --help를 입력하면 더 다양한 옵션들을 찾을 수 있다. Option --all: 모든 리소스를 삭제 --force: 강제 삭제 ...
기본 구조 kubectl run [파드 이름] --image=[이미지 이름] # 명령어를 실행하여 nginx 이미지를 실행하는 nginx 파드를 생성할 수 있다. kubectl run nginx --image=nginx [명령어] --help를 입력하면 더 다양한 옵션들을 찾을 수 있다. Option --image: 실행할 이미지...
df ( Disk Free ) Linux System 전체의(Mount 포함) Disk의 여유 공간 확인 File System, Disk 크기, 사용량, 남아있는 용량, 사용률, Mount 지점 순으로 정보를 출력 du ( Disk Usage ) 해당 파일 및 Directory의 Disk 크기를 확인하는 명령어 옵션이 없으면 ...
기본 구조 kubectl create [리소스 종류] [리소스 이름] [명령어] --help를 입력하면 더 다양한 옵션들을 찾을 수 있다. 자주 사용하는 Command kubectl create pod # Nginx 이미지를 사용하는 my-pod 이름을 가진 Pod 리소스를 생성 kubectl create pod my-pod --im...
기본 구조 kubectl scale deployment [deployment name] --replicas=[수정할 replica 수] # my-deployment 이름을 가진 deployment의 replica 수를 3개로 조정 kubectl scale deployment my-deployment --replicas=3 [명령어] --h...
hostNetwork: false apiVersion: v1 kind: Pod metadata: name: test-pod spec: containers: - name: nginx image: nginx ports: - name: nginx-port hostIP: [Node IP] hostPort...
기본 구조 kubectl patch [리소스 종류] [리소스 이름] [수정할 필드]=[새 값] # my-deployment 이름의 배포의 replica 수를 3으로 변경할 수 있다. kubectl patch deployment my-deployment -p '{"spec":{"replicas":3}}' [명령어] --help를 입력하면 더...
Spring Context 란? Bean의 확장 버전으로 Spring이 Bean을 다루기 좀 더 쉽도록 기능들이 추가된 공간이다. 단순히 Bean을 다루는 것 이외에도 추가적인 기능을 수행한다. ROOT-CONTEXT (공통 부분) 모든 서블릿이 공유할 수 있는 Bean들이 모인 공간. DB와 관련된 Repository, Ser...