Page cover

Prerequisities

Before installing cldkctl, make sure that your system meets the basic requirements. The cldkctl tool requires yq, a lightweight command-line utility used to process YAML files. Please follow the installation steps below according to your operating system.

Required Dependency

You can install it by following one of the three methods below based on your operating system.

  1. On Windows

You can install yq easily using Chocolatey, a Windows package manager. Open Command Prompt or PowerShell as Administrator, then run the following command.

choco install yq
  1. On macOS

If you are using macOS, install yq with Homebrew by running the command below.

brew install yq
  1. On Linux

For Linux users, you can install yq directly from the official GitHub repository. Run the following commands

sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
sudo chmod +x /usr/local/bin/yq

Verify to Install cldkctl

After installing yq, you can verify that it was successfully installed by checking its version. Run the following command in your terminal.

yq --version

If installed correctly, the terminal will display the yq version number.

Last updated