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:
The d8 d
and d8 mirror
command groups are not available for Community Edition (CE) and Basic Edition (BE).
d8 k
— thekubectl
command family.
For example,d8 k get pods
is the same askubectl get pods
.-
d8 d
— the range of delivery-related commands (see thewerf
tool).
For example, you can rund8 d plan --repo registry.deckhouse.io
instead ofwerf 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 thedhctl mirror
tool was used for this purpose). For example, you can rund8 mirror pull -l <LICENSE> <TAR-BUNDLE-PATH>
instead ofdhctl mirror --license <LICENSE> --images-bundle-path <TAR-BUNDLE-PATH>
.Usage scenarios:
-
d8 v
— the set of commands for managing virtual machines created by Deckhouse Virtualization Platform.
For example, thed8 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
-
Download the archive for Linux x86-64:
curl -LO https://deckhouse.io/downloads/deckhouse-cli/v0.3.2/d8-v0.3.2-linux-amd64.tar.gz
-
Extract the archive:
tar -xvf "d8-v0.3.2-linux-amd64.tar.gz" "linux-amd64/d8"
-
Move the file
d8
to the directory listed in thePATH
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 theecho $PATH
command. -
Check that the CLI is working:
d8 help
Congrats, you have successfully installed Deckhouse CLI.
-
Download the archive for macOS x86-64:
curl -LO https://deckhouse.io/downloads/deckhouse-cli/v0.3.2/d8-v0.3.2-darwin-amd64.tar.gz
-
Extract the archive:
tar -xvf "d8-v0.3.2-darwin-amd64.tar.gz" "darwin-amd64/d8"
-
Move the file
d8
to the directory listed in thePATH
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 theecho $PATH
command. -
Check that the CLI is working:
d8 help
Congrats, you have successfully installed Deckhouse CLI.
-
Download the archive for macOS ARM64:
curl -LO https://deckhouse.io/downloads/deckhouse-cli/v0.3.2/d8-v0.3.2-darwin-arm64.tar.gz
-
Extract the archive:
tar -xvf "d8-v0.3.2-darwin-arm64.tar.gz" "darwin-arm64/d8"
-
Move the file
d8
to the directory listed in thePATH
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 theecho $PATH
command. -
Check that the CLI is working:
d8 help
Congrats, you have successfully installed Deckhouse CLI.
-
Download the archive for Windows x86-64.
- 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. - 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.
-
Check that the CLI is working:
d8 help
-
Enable auto-completion in PowerShell by running the following command:
d8 completion powershell >> $PROFILE
Congrats, you have successfully installed Deckhouse CLI.