Install Consul on Kubernetes from Consul K8s CLI
This topic describes how to install Consul on Kubernetes using the Consul K8s CLI tool. The Consul K8s CLI tool enables you to quickly install and interact with Consul on Kubernetes. Use the Consul K8s CLI tool to install Consul on Kubernetes if you are deploying a single cluster. We recommend using the Helm chart installation method if you are installing Consul on Kubernetes for multi-cluster deployments that involve cross-partition or cross datacenter communication.
Introduction
If it is your first time installing Consul on Kubernetes, then you must first install the Consul K8s CLI tool. You can install Consul on Kubernetes using the Consul K8s tool after installing the CLI.
Requirements
- The
kubectl
client must already be configured to authenticate to the Kubernetes cluster using a validkubeconfig
file. - Install one of the following package managers so that you can install the Consul K8s CLI tool. The installation instructions also provide commands for installing and using the package managers:
- MacOS: Homebrew
- Ubuntu/Debian: apt
- CentOS/RHEL: yum
You must install the correct version of the CLI for your Consul on Kubernetes deployment. To deploy a previous version of Consul on Kubernetes, download the specific version of the CLI that matches the version of the control plane that you would like to deploy. Refer to the compatibility matrix for details.
Install the CLI
The following instructions describe how to install the latest version of the Consul K8s CLI tool, as well as earlier versions, so that you can install an appropriate version of tool for your control plane.
Install the latest version
Complete the following instructions for a fresh installation of Consul on Kubernetes.
The Homebrew package manager is required to complete the following installation instructions. The Homebrew formulae always installs the latest version of a binary.
Install the HashiCorp
tap
, which is a repository of all Homebrew packages for HashiCorp:Install the Consul K8s CLI with
hashicorp/tap/consul
formula.(Optional) Issue the
consul-k8s version
command to verify the installation:
Install a previous version
Complete the following instructions to install a specific version of the CLI so that your tool is compatible with your Consul on Kubernetes control plane. Refer to the compatibility matrix for additional information.
Download the appropriate version of Consul K8s CLI using the following
curl
command. Set the$VERSION
environment variable to the appropriate version for your deployment.Unzip the zip file output to extract the
consul-k8s
CLI binary. This overwrites existing files and also creates a.consul-k8s
subdirectory in your$HOME
folder.Add the path to your directory. In order to persist the
$PATH
across sessions, dd it to your shellrc (i.e. shell run commands) file for the shell used by your terminal.(Optional) Issue the
consul-k8s version
command to verify the installation.
Install Consul on Kubernetes
After installing the Consul K8s CLI tool (consul-k8s
), issue the install
subcommand and any additional options to install Consul on your existing Kubernetes cluster. Refer to the Consul K8s CLI reference for details about all commands and available options. If you do not include any additional options, the consul-k8s
CLI installs Consul on Kubernetes using the default settings form the Consul Helm chart values. The following example installs Consul on Kubernetes with service mesh and CRDs enabled.
You can include the -auto-approve
option set to true
to proceed with the installation if the pre-install checks pass.
The pre-install checks may fail if existing PersistentVolumeClaims
(PVC) are detected. Refer to the uninstall instructions for information about removing PVCs.
Custom installation
You can create a values file and specify parameters to overwrite the default Helm chart installation. Add the -f
and specify your values file to implement your configuration, for example:
Install Consul on OpenShift clusters
Red Hat OpenShift is a security-conscious, opinionated wrapper for Kubernetes. To install Consul on OpenShift-managed Kubernetes, set global.openshift.enabled=true
in your custom installation values file:
Refer to openshift
in the Helm chart reference for additional information.
Check the Consul cluster status
Issue the consul-k8s status
command to view the status of the installed Consul cluster.