title | weight | description |
---|---|---|
lokoctl |
10 |
lokoctl is a command line interface for Lokomotive, Kinvolk's open-source Kubernetes distribution which includes installers for various platforms and Lokomotive components.
|
Every release of Lokomotive provides the lokoctl
binary for several operating systems.
These binaries can be manually downloaded and installed.
-
Download your desired version, including the GPG signature.
-
Verify the signature. It should match one of the Trusted keys.
gpg --verify lokoctl_0.7.0_linux_amd64.tar.gz.sig
- Unpack it
tar xvf lokoctl_0.7.0_linux_amd64.tar.gz
- Find the lokoctl binary in the unpacked directory and move it to its desired location
mv lokoctl_0.7.0_linux_amd64/lokoctl ~/.local/bin/lokoctl
- Verify the version of
lokoctl
lokoctl version
v0.7.0
You can quickly get latest version of lokoctl
by running following command:
go get github.com/kinvolk/lokomotive/cmd/lokoctl
Once finished, lokoctl
binary should be available in $GOPATH/bin
.
Clone this repository and build the lokoctl binary:
git clone https://github.com/kinvolk/lokomotive
cd lokomotive
make
The binary will be created in the project main directory.
Run lokoctl help
to get an overview of all available commands.