Skip to content

Installation Guide for kubectl, oc, git, helm and ansible on Redhat Linux/Fedora/CentOS

Install kubectl and oc

  1. Download the latest release:
curl -LO "https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz"
  1. Extract the tar file:
tar -xzvf openshift-client-linux.tar.gz
  1. Move the binaries to your PATH:
chmod +x oc 
chmod +x kubectl

sudo mv oc kubectl /usr/local/bin/

Install git, ansible, , python3-pip, java (keytool)

  1. Install the dependencies:
sudo dnf install -y python3.13 python3.13-pip helm java-21-openjdk git
  1. Change default python in
sudo alternatives --install /usr/bin/python3 python3 /usr/bin/python3.13 1
sudo alternatives --set python3 /usr/bin/python3.13
  1. Install the ansible:
sudo dnf install -y ansible-core
  1. Install Python Libraries
pip3.13 install kubernetes requests ansible-core
  1. Install kubernetes.core module
ansible-galaxy collection install kubernetes.core

Verify

  1. Verify the installation:
git --version
  1. Verify the installation:
oc version
  1. Verify the installation:
kubectl version
  1. Verify the installation:
ansible --version
  1. Verify the installation:
keytool