본문 바로가기
IT Tech/Cloud

kubectl 설치하기

by _><- 2022. 2. 24.
반응형
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.20.0/bin/windows/amd64/kubectl.exe

 

                                                                                          
λ kubectl                                                                                                               
kubectl controls the Kubernetes cluster manager.                                                                        
                                                                                                                        
 Find more information at: https://kubernetes.io/docs/reference/kubectl/overview/                                       
                                                                                                                        
Basic Commands (Beginner):                                                                                              
  create        Create a resource from a file or from stdin.                                                            
  expose        Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service     
  run           Run a particular image on the cluster                                                                   
  set           Set specific features on objects                                                                        
                                                                                                                        
Basic Commands (Intermediate):                                                                                          
  explain       Documentation of resources                                                                              
  get           Display one or many resources                                                                           
  edit          Edit a resource on the server                                                                           
  delete        Delete resources by filenames, stdin, resources and names, or by resources and label selector           
                                                                                                                        
Deploy Commands:                                                                                                        
  rollout       Manage the rollout of a resource                                                                        
  scale         Set a new size for a Deployment, ReplicaSet or Replication Controller                                   
  autoscale     Auto-scale a Deployment, ReplicaSet, StatefulSet, or ReplicationController                              
                                                                                                                        
Cluster Management Commands:                                                                                            
  certificate   Modify certificate resources.                                                                           
  cluster-info  Display cluster info                                                                                    
  top           Display Resource (CPU/Memory) usage.                                                                    
  cordon        Mark node as unschedulable                                                                              
  uncordon      Mark node as schedulable                                                                                
  drain         Drain node in preparation for maintenance                                                               
  taint         Update the taints on one or more nodes                                                                  
                                                                                                                        
Troubleshooting and Debugging Commands:                                                                                 
  describe      Show details of a specific resource or group of resources                                               
  logs          Print the logs for a container in a pod                                                                 
  attach        Attach to a running container                                                                           
  exec          Execute a command in a container                                                                        
  port-forward  Forward one or more local ports to a pod                                                                
  proxy         Run a proxy to the Kubernetes API server                                                                
  cp            Copy files and directories to and from containers.                                                      
  auth          Inspect authorization                                                                                   
  debug         Create debugging sessions for troubleshooting workloads and nodes                                       
                                                                                                                        
Advanced Commands:                                                                                                      
  diff          Diff live version against would-be applied version                                                      
  apply         구성을 파일 이름 또는 stdin에 의한 자원에 적용합니다                                                                        
  patch         Update field(s) of a resource                                                                           
  replace       Replace a resource by filename or stdin                                                                 
  wait          Experimental: Wait for a specific condition on one or many resources.                                   
  kustomize     Build a kustomization target from a directory or URL.                                                   
                                                                                                                        
Settings Commands:                                                                                                      
  label         Update the labels on a resource                                                                         
  annotate      자원에 대한 주석을 업데이트합니다                                                                                      
  completion    Output shell completion code for the specified shell (bash or zsh)                                      
                                                                                                                        
Other Commands:                                                                                                         
  api-resources Print the supported API resources on the server                                                         
  api-versions  Print the supported API versions on the server, in the form of "group/version"                          
  config        kubeconfig 파일을 수정합니다                                                                                    
  plugin        Provides utilities for interacting with plugins.                                                        
  version       Print the client and server version information                                                         
                                                                                                                        
Usage:                                                                                                                  
  kubectl [flags] [options]                                                                                             
                                                                                                                        
Use "kubectl <command> --help" for more information about a given command.                                              
Use "kubectl options" for a list of global command-line options (applies to all commands).                              
gyuhan@DESKTOP-B06A6T8 ~                                                                                                
λ                                                                                                                       

참고 : https://subicura.com/k8s/prepare/kubectl-setup.html#%E1%84%89%E1%85%A5%E1%86%AF%E1%84%8E%E1%85%B5%E1%84%92%E1%85%A1%E1%84%80%E1%85%B5

 

kubectl 설치

쿠버네티스에 명령을 전달하기 위한 kubectl 프로그램을 설치합니다.

subicura.com

 

반응형

'IT Tech > Cloud' 카테고리의 다른 글

Kubernetes Networking  (0) 2022.03.10
Amazon EKS(Elastic Kubernetes Service)  (0) 2022.03.04
클라우드네이티브 학습을 위한 사이트 링크  (0) 2022.02.24
K8S 실습을 위한 minikube 설치  (0) 2022.02.24
도커, k8s강의  (0) 2022.01.20