Skip to content

kubectl on Ubuntu

Installing kubectl on Ubuntu 24.04

This guide provides multiple methods to install the Kubernetes command-line tool (kubectl) on Ubuntu 24.04.

Table of Contents

  1. Update the apt package index and install required packages:

    Terminal window
    sudo apt update
    sudo apt install -y apt-transport-https ca-certificates curl
  2. Download the Google Cloud public signing key:

    Terminal window
    curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/kubernetes-archive-keyring.gpg
  3. Add the Kubernetes apt repository:

    Terminal window
    echo "deb [signed-by=/etc/apt/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
  4. Update apt package index with the new repository and install kubectl:

    Terminal window
    sudo apt update
    sudo apt install -y kubectl

Method 2: Manual Download and Installation

  1. Download the latest stable release of kubectl:

    Terminal window
    curl -LO "https://dl.k8s.io/release/stable.txt"
    KUBECTL_VERSION=$(cat stable.txt)
    curl -LO "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl"
  2. Validate the binary (optional but recommended):

    Terminal window
    curl -LO "https://dl.k8s.io/${KUBECTL_VERSION}/bin/linux/amd64/kubectl.sha256"
    echo "$(cat kubectl.sha256) kubectl" | sha256sum --check
  3. Install kubectl:

    Terminal window
    sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
  4. Clean up the downloaded files:

    Terminal window
    rm kubectl kubectl.sha256 stable.txt

Method 3: Using curl with Automatic Version Detection

This is a simplified one-liner that handles downloading and installing the latest version:

Terminal window
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && \
rm kubectl

Verifying the Installation

Verify that kubectl is properly installed:

Terminal window
kubectl version --client

You should see output displaying the client version information.

Setting Up kubectl Autocomplete

  1. Set up bash autocomplete:

    Terminal window
    echo 'source <(kubectl completion bash)' >>~/.bashrc
  2. If you’re using zsh:

    Terminal window
    echo 'source <(kubectl completion zsh)' >>~/.zshrc
  3. Create an alias for kubectl (optional):

    Terminal window
    echo 'alias k=kubectl' >>~/.bashrc
    echo 'complete -o default -F __start_kubectl k' >>~/.bashrc
  4. Apply the changes to your current shell:

    Terminal window
    source ~/.bashrc # or source ~/.zshrc if using zsh

Configuration

To configure kubectl to connect to your Kubernetes cluster, you need a kubeconfig file. Here are some common scenarios:

Using kubectl with Minikube

If you’re using Minikube, it automatically configures kubectl:

Terminal window
minikube start

Manually Creating a kubeconfig File

Create a basic config file:

Terminal window
mkdir -p ~/.kube
touch ~/.kube/config

Checking the Configuration

Verify your configuration:

Terminal window
kubectl config view

Troubleshooting

Connection Issues

If you encounter connection problems:

  1. Check if kubectl is properly configured:

    Terminal window
    kubectl config view
  2. Ensure correct context is selected:

    Terminal window
    kubectl config current-context
  3. List available contexts:

    Terminal window
    kubectl config get-contexts
  4. Switch to a different context if needed:

    Terminal window
    kubectl config use-context <context-name>

Permission Issues

If you encounter permission issues:

Terminal window
sudo chown $(id -u):$(id -g) ~/.kube/config
chmod 600 ~/.kube/config

Version Skew Issues

Kubernetes supports only a few minor version differences between client and server. If you’re getting version compatibility warnings, install the specific kubectl version that matches your cluster:

Terminal window
curl -LO "https://dl.k8s.io/release/v1.27.0/bin/linux/amd64/kubectl" # Replace with your cluster version
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl