Deckhouse CLI is a command line interface for cluster management created by the developers of Deckhouse Kubernetes Platform (DKP). Starting with version 1.59, the DH CLI is automatically installed on all cluster nodes. You can also install the CLI on any machine and use it to operate clusters that are not managed by DKP.

On the command line, the utility can be invoked using the d8 alias. All the commands are grouped by their function:

  • d8 k — the kubectl command family.
    For example, d8 k get pods is the same as kubectl get pods.
  • d8 d — the range of delivery-related commands (see the werf tool).
    For example, you can run d8 d plan --repo registry.deckhouse.io instead of werf plan --repo registry.deckhouse.io.

  • d8 mirror — the range of commands that allow you to copy DKP distribution images to a private container registry (previously the dhctl mirror tool was used for this purpose). For example, you can run d8 mirror pull -l <LICENSE> <TAR-BUNDLE-PATH> instead of dhctl mirror --license <LICENSE> --images-bundle-path <TAR-BUNDLE-PATH>.

    The d8 d and d8 mirror command groups are not available for Community Edition (CE) and Basic Edition (BE).

  • d8 v — the set of commands for managing virtual machines created by Deckhouse Virtualization Platform.
    For example, the d8 virtualization console command execs you into the VM console.

    More virtualization commands...
    • d8 v console execs you into the VM console.
    • d8 v port-forward forwards local ports to the virtual machine.
    • d8 v scp uses the SCP client to work with files on the virtual machine.
    • d8 v ssh connects you to the virtual machine over SSH.
    • d8 v vnc connects you to the virtual machine over VNC.

How do I install Deckhouse CLI?

Linux x86-64 macOS x86-64 macOS ARM64 Windows

  1. Download the archive for Linux x86-64:

    curl -LO https://deckhouse.io/downloads/deckhouse-cli/v0.2.1/d8-v0.2.1-linux-amd64.tar.gz
    
  2. Extract the archive:

    tar -xvf "d8-v0.2.1-linux-amd64.tar.gz" "linux-amd64/d8"
    
  3. Move the file d8 to the directory listed in the PATH system environment variable (for example, /usr/local/bin/):

    sudo mv "linux-amd64/d8" /usr/local/bin/
    

    PATH is a system environment variable containing a list of directories with executable files. This is where the OS will look for the binary when a command is run in the terminal. You can view this list with the echo $PATH command.

  4. Check that the CLI is working:

    d8 help
    

Congrats, you have successfully installed Deckhouse CLI.

  1. Download the archive for macOS x86-64:

    curl -LO https://deckhouse.io/downloads/deckhouse-cli/v0.2.1/d8-v0.2.1-darwin-amd64.tar.gz
    
  2. Extract the archive:

    tar -xvf "d8-v0.2.1-darwin-amd64.tar.gz" "darwin-amd64/d8"
    
  3. Move the file d8 to the directory listed in the PATH system environment variable (for example, /usr/local/bin/):

    sudo mv "darwin-amd64/d8" /usr/local/bin/
    

    PATH is a system environment variable containing a list of directories with executable files. This is where the OS will look for the binary when a command is run in the terminal. You can view this list with the echo $PATH command.

  4. Check that the CLI is working:

    d8 help
    

Congrats, you have successfully installed Deckhouse CLI.

  1. Download the archive for macOS ARM64:

    curl -LO https://deckhouse.io/downloads/deckhouse-cli/v0.2.1/d8-v0.2.1-darwin-arm64.tar.gz
    
  2. Extract the archive:

    tar -xvf "d8-v0.2.1-darwin-arm64.tar.gz" "darwin-arm64/d8"
    
  3. Move the file d8 to the directory listed in the PATH system environment variable (for example, /usr/local/bin/):

    sudo mv "darwin-arm64/d8" /usr/local/bin/
    

    PATH is a system environment variable containing a list of directories with executable files. This is where the OS will look for the binary when a command is run in the terminal. You can view this list with the echo $PATH command.

  4. Check that the CLI is working:

    d8 help
    

Congrats, you have successfully installed Deckhouse CLI.

  1. Download the archive for Windows x86-64.

  2. Extract the archive, move the file d8.exe to the directory of your choice, and add the directory to the ‘PATH’ environment variable of the operating system.
  3. Unlock the file d8.exe, for example, in the following way:
    • Right-click on the file and select Properties from the context menu.
    • In the Properties window, make sure you are on the General tab.
    • At the bottom of the General tab, you may see a section that says Security with a message like This file came from another computer and might be blocked to help protect this computer. If this message is displayed, there will be an Unblock button or checkbox next to it.
    • Check the Unblock checkbox or click the Unblock button, then click Apply and OK to save the changes.
  4. Check that the CLI is working:

    d8 help
    
  5. Enable auto-completion in PowerShell by running the following command:

    d8 completion powershell >> $PROFILE
    

Congrats, you have successfully installed Deckhouse CLI.