Difference between revisions of "Kubectl"

From wikieduonline
Jump to navigation Jump to search
 
(31 intermediate revisions by 4 users not shown)
Line 3: Line 3:
  
 
== Installation ==
 
== Installation ==
* To install in MacOS execute: <code>brew install kubernetes-cli</code>
+
* To install in [[macOS]] execute: <code>[[brew install kubernetes-cli]]</code>
* Ubuntu [[Kubernetes installation]]: <code>[[snap install kubectl --classic]]</code>
+
* [[Kubectl in Amazon Linux]]
 +
* [[Ubuntu kubectl installation]]
 
* <code>[[~/.kube/config]]</code>
 
* <code>[[~/.kube/config]]</code>
 +
* [[scoop install kubectl]]
  
 
== Commands ==
 
== Commands ==
 
* <code>[[kubectl --help]]</code>
 
* <code>[[kubectl --help]]</code>
 +
* <code>[[kubectl api-versions]]</code>
 
* <code>[[kubectl apply]]</code>
 
* <code>[[kubectl apply]]</code>
 
* <code>[[kubectl auth]]</code>
 
* <code>[[kubectl auth]]</code>
 
* <code>[[kubectl create]]</code>
 
* <code>[[kubectl create]]</code>
 
* <code>[[kubectl completion]]</code>
 
* <code>[[kubectl completion]]</code>
* <code>[[kubectl config]]</code>
+
* <code>[[kubectl config]]</code>: <code>[[kubectl config use-context|config-use-context]]</code>
 +
* <code>[[kubectl cp]]</code>
 
* <code>[[kubectl debug]]</code> (since [[v1.18]], March 2020)
 
* <code>[[kubectl debug]]</code> (since [[v1.18]], March 2020)
 
* <code>[[kubectl delete]]</code>
 
* <code>[[kubectl delete]]</code>
Line 19: Line 23:
 
* <code>[[kubectl diff]]</code> (since [[v1.18]], March 2020)
 
* <code>[[kubectl diff]]</code> (since [[v1.18]], March 2020)
 
* <code>[[kubectl edit]]</code>
 
* <code>[[kubectl edit]]</code>
 +
* <code>[[kubectl explain]]</code>
 
* <code>[[kubectl expose]]</code>
 
* <code>[[kubectl expose]]</code>
 
* <code>[[kubectl exec]]</code>
 
* <code>[[kubectl exec]]</code>
Line 24: Line 29:
 
* <code>[[kubectl label]]</code>
 
* <code>[[kubectl label]]</code>
 
* <code>[[kubectl logs]]</code>
 
* <code>[[kubectl logs]]</code>
 +
* <code>[[kubectl patch]]</code>
 
* <code>[[kubectl port-forward]]</code>
 
* <code>[[kubectl port-forward]]</code>
 
* <code>[[kubectl proxy]]</code>
 
* <code>[[kubectl proxy]]</code>
Line 99: Line 105:
 
* Read official <code>kubectl</code> cheat sheet: https://kubernetes.io/docs/reference/kubectl/cheatsheet/
 
* Read official <code>kubectl</code> cheat sheet: https://kubernetes.io/docs/reference/kubectl/cheatsheet/
 
* Check examples: https://www.codegrepper.com/code-examples/shell/kubectl+describe+ingress+output+yaml
 
* Check examples: https://www.codegrepper.com/code-examples/shell/kubectl+describe+ingress+output+yaml
 +
* https://stackoverflow.com/questions/tagged/kubectl?tab=Votes
 +
* [[Kubernetes quiz]]
 +
* [[Merge multiple kubeconfigs]]: <code>[[~/.kube/config]]s</code> into one using <code>[[kubectl konfig merge]]</code>
  
 
== Related ==
 
== Related ==
 
* [[Krew]]
 
* [[Krew]]
* [[kops]]
+
* <code>[[kops]]</code>
* <code>[[aws eks]] --region $(terraform output -raw region) [[update-kubeconfig]] --name $(terraform output -raw cluster_name)</code>
+
* [[Kots]] kubectl plugin
* [[kubectl-convert]]
+
* [[K9s]]
 +
* <code>[[aws eks]] --region $([[terraform output -raw]] region) [[update-kubeconfig]] --name $([[terraform output -raw]] cluster_name)</code>
 +
* <code>[[kubectl-convert]]</code>
 
* <code>[[kubeadm]]</code>
 
* <code>[[kubeadm]]</code>
 +
* <code>[[Error: flags cannot be place before plugin name]]</code>
 +
* <code>[[kubectl.kubernetes.io]]</code>
 +
* [[kubectl (alias)]]
 +
* [[Terraform: kubectl provider]]
  
 
== See also ==
 
== See also ==
 
* {{Kubernetes components}}
 
* {{Kubernetes components}}
 
* {{kubectl}}
 
* {{kubectl}}
* {{k8s}}
 
  
 
[[Category: Kubernetes]]
 
[[Category: Kubernetes]]

Latest revision as of 07:53, 7 February 2024

wikipedia:kubectl is a command line interface for running commands against Kubernetes clusters.[1]

Installation[edit]

Commands[edit]

Kubectl information commands[edit]

kubectl operation commands[edit]

kubectl command reference[edit]

The following table includes short descriptions and the general syntax for all of the kubectl operations:[2]

  • Apply kubectl apply -f FILENAME [flags]. Apply a configuration change to a resource from a file or stdin. Allows to create a Pod.
  • Attach kubectl attach POD -c CONTAINER [-i] [-t] [flags]:Attach to a running container either to view the output stream or interact with the container (stdin)
  • Auto Scale kubectl autoscale (-f FILENAME \| TYPE NAME \| TYPE/NAME) [--min=MINPODS] --max=MAXPODS [--cpu-percent=CPU] [flags]: Automatically scale the set of pods that are managed by a replication controller


  • Cluster Info kubectl cluster-info [flags] :Display endpoint information about the master and services in the cluster
  • Create kubectl create -f FILENAME [flags]: Create one or more resources from a file or stdin
    • kubectl create namespace myexamplenamespace
    • kubectl create sa my_new_user (Create service account for your my_new_user)
    • kubectl create -f mypod.yaml


  • Delete kubectl delete (-f FILENAME \| TYPE [NAME \| /NAME \| -l label \| --all]) [flags] :Delete resources
    • kubectl delete --all namespaces
  • Describe kubectl describe (-f FILENAME \| TYPE [NAME_PREFIX \| /NAME \| -l label]) [flags] : Detailed state of one or more resources.
    • kubectl describe pod MyPodName
    • kubectl describe pods
    • kubectl describe replicaset MyReplicaName
  • Edit kubectl edit (-f FILENAME \| TYPE NAME \| TYPE/NAME) [flags] : Edit and update the definition of one or more resources on the server by using the default editor.
  • Execute kubectl exec POD [-c CONTAINER] [-i] [-t] [flags] [-- COMMAND [args...]]: Execute a command against a container in a pod
  • Logs kubectl logs POD [-c CONTAINER] [--follow] [flags]: Print the logs for a container in a pod.
    • kubectl logs -l app=elasticsearch (using labels: -l)
  • Run kubectl run NAME --image=image [--env="key=value"] [--port=port] [--replicas=replicas] [--dry-run=bool] [--overrides=inline-json] [flags]: Run a specified image on the cluster.
  • Stop kubectl stop
  • Version kubectl version [--client] [flags]: Display the Kubernetes version running on the client and server.

Activities[edit]

Related[edit]

See also[edit]

Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.

Source: https://en.wikiversity.org/wiki/DevOps/Kubernetes/kubectl

Advertising: