2019-03-13 21:56:00 +00:00
|
|
|
---
|
2020-04-07 18:55:19 +00:00
|
|
|
layout: docs
|
|
|
|
page_title: Deploy Consul with Kubernetes
|
|
|
|
description: Deploy Consul on Kubernetes with the official Helm chart.
|
2019-03-13 21:56:00 +00:00
|
|
|
---
|
|
|
|
|
2020-04-06 20:27:35 +00:00
|
|
|
# Deploy Consul with Kubernetes
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
In this guide you will deploy a Consul datacenter with the official Helm chart.
|
|
|
|
You do not need to update any values in the Helm chart for a basic
|
|
|
|
installation. However, you can create a values file with parameters to allow
|
2020-04-06 20:27:35 +00:00
|
|
|
access to the Consul UI.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
~> **Security Warning** This guide is not for production use. By default, the
|
|
|
|
chart will install an insecure configuration of Consul. Please refer to the
|
2020-09-01 15:14:13 +00:00
|
|
|
[Kubernetes documentation](/docs/platform/k8s)
|
2019-03-13 21:56:00 +00:00
|
|
|
to determine how you can secure Consul on Kubernetes in production.
|
|
|
|
Additionally, it is highly recommended to use a properly secured Kubernetes
|
|
|
|
cluster or make sure that you understand and enable the recommended security
|
2020-04-06 20:27:35 +00:00
|
|
|
features.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
To complete this guide successfully, you should have an existing Kubernetes
|
2020-04-06 20:27:35 +00:00
|
|
|
cluster, and locally configured [Helm](https://helm.sh/docs/using_helm/) and
|
2019-03-13 21:56:00 +00:00
|
|
|
[kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/). If you do not have an
|
2020-09-01 15:14:13 +00:00
|
|
|
existing Kubernetes cluster you can use the [Minikube with Consul guide](/docs/guides/minikube) to get started
|
2020-04-06 20:27:35 +00:00
|
|
|
with Consul on Kubernetes.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
2020-04-06 20:27:35 +00:00
|
|
|
## Deploy Consul
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
You can deploy a complete Consul datacenter using the official Helm chart. By
|
|
|
|
default, the chart will install three Consul
|
|
|
|
servers and client on all Kubernetes nodes. You can review the
|
|
|
|
[Helm chart
|
2020-09-01 15:14:13 +00:00
|
|
|
values](/docs/platform/k8s/helm#configuration-values)
|
2020-04-06 20:27:35 +00:00
|
|
|
to learn more about the default settings.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
### Download the Helm Chart
|
|
|
|
|
|
|
|
First, you will need to clone the official Helm chart from HashiCorp's Github
|
|
|
|
repo.
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2020-04-06 20:27:35 +00:00
|
|
|
$ git clone https://github.com/hashicorp/consul-helm.git
|
2019-03-13 21:56:00 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
You do not need to update the Helm chart before deploying Consul, it comes with
|
|
|
|
reasonable defaults. Review the [Helm chart
|
2020-09-01 15:14:13 +00:00
|
|
|
documentation](/docs/platform/k8s/helm) to learn more
|
2019-03-13 21:56:00 +00:00
|
|
|
about the chart.
|
|
|
|
|
|
|
|
### Helm Install Consul
|
|
|
|
|
2020-04-06 20:27:35 +00:00
|
|
|
To deploy Consul you will need to be in the same directory as the chart.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2020-04-06 20:27:35 +00:00
|
|
|
$ cd consul-helm
|
2019-03-13 21:56:00 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Now, you can deploy Consul using `helm install`. This will deploy three servers
|
|
|
|
and agents on all Kubernetes nodes. The process should be quick, less than 5
|
2020-04-06 20:27:35 +00:00
|
|
|
minutes.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-03-13 21:56:00 +00:00
|
|
|
$ helm install ./consul-helm
|
|
|
|
|
|
|
|
NAME: mollified-robin LAST DEPLOYED: Mon Feb 25 15:57:18 2019 NAMESPACE: default STATUS: DEPLOYED
|
|
|
|
NAME READY STATUS RESTARTS AGE
|
|
|
|
mollified-robin-consul-25r6z 0/1 ContainerCreating 0 0s
|
|
|
|
mollified-robin-consul-4p6hr 0/1 ContainerCreating 0 0s
|
|
|
|
mollified-robin-consul-n82j6 0/1 ContainerCreating 0 0s
|
|
|
|
mollified-robin-consul-server-0 0/1 Pending 0 0s
|
|
|
|
mollified-robin-consul-server-1 0/1 Pending 0 0s
|
|
|
|
mollified-robin-consul-server-2 0/1 Pending 0 0s
|
|
|
|
```
|
|
|
|
|
|
|
|
The output above has been reduced for readability. However, you can see that
|
|
|
|
there are three Consul servers and three Consul clients on this three node
|
2020-04-06 20:27:35 +00:00
|
|
|
Kubernetes cluster.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
## Access Consul UI
|
|
|
|
|
|
|
|
To access the UI you will need to update the `ui` values in the Helm chart.
|
|
|
|
Alternatively, if you do not wish to upgrade your cluster, you can set up [port
|
2020-09-01 15:14:13 +00:00
|
|
|
forwarding](/docs/platform/k8s/run#viewing-the-consul-ui) with
|
2020-04-06 20:27:35 +00:00
|
|
|
`kubectl`.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
### Create Values File
|
|
|
|
|
|
|
|
First, create a values file that can be passed on the command line when
|
|
|
|
upgrading.
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
# values.yaml
|
2020-04-06 20:27:35 +00:00
|
|
|
global:
|
|
|
|
datacenter: hashidc1
|
|
|
|
syncCatalog:
|
|
|
|
enabled: true
|
|
|
|
ui:
|
|
|
|
service:
|
|
|
|
type: 'LoadBalancer'
|
|
|
|
server:
|
2019-03-13 21:56:00 +00:00
|
|
|
affinity: |
|
|
|
|
podAntiAffinity:
|
|
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
|
|
- labelSelector:
|
|
|
|
matchLabels:
|
|
|
|
app: {{ template "consul.name" . }}
|
|
|
|
release: "{{ .Release.Name }}"
|
|
|
|
component: server
|
|
|
|
topologyKey: kubernetes.io/hostname
|
|
|
|
```
|
|
|
|
|
|
|
|
This file renames your datacenter, enables catalog sync, sets up a load
|
2020-09-01 15:14:13 +00:00
|
|
|
balancer service for the UI, and enables [affinity](/docs/platform/k8s/helm#v-server-affinity) to allow only one
|
2020-04-06 20:27:35 +00:00
|
|
|
Consul pod per Kubernetes node.
|
2019-03-13 21:56:00 +00:00
|
|
|
The catalog sync parameters will allow you to see
|
2020-04-06 20:27:35 +00:00
|
|
|
the Kubernetes services in the Consul UI.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
2020-04-06 20:27:35 +00:00
|
|
|
### Initiate Rolling Upgrade
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
Finally, initiate the
|
2020-09-01 15:14:13 +00:00
|
|
|
[upgrade](/docs/platform/k8s/run#upgrading-consul-on-kubernetes)
|
2019-03-13 21:56:00 +00:00
|
|
|
with `helm upgrade` and the `-f` flag that passes in your new values file. This
|
2020-04-06 20:27:35 +00:00
|
|
|
processes should also be quick, less than a minute.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2020-04-06 20:27:35 +00:00
|
|
|
$ helm upgrade consul -f values.yaml
|
2019-03-13 21:56:00 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
You can now use `kubectl get services` to discover the external IP of your Consul UI.
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2020-04-06 20:27:35 +00:00
|
|
|
$ kubectl get services
|
|
|
|
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
|
|
|
|
consul ExternalName <none> consul.service.consul <none> 11d
|
2019-03-13 21:56:00 +00:00
|
|
|
kubernetes ClusterIP 122.16.14.1 <none> 443/TCP 137d
|
|
|
|
mollified-robin-consul-dns ClusterIP 122.16.14.25 <none> 53/TCP,53/UDP 13d
|
|
|
|
mollified-robin-consul-server ClusterIP None <none> 8500/TCP 13d
|
|
|
|
mollified-robin-consul-ui LoadBalancer 122.16.31.395 36.276.67.195 80:32718/TCP 13d
|
|
|
|
```
|
|
|
|
|
|
|
|
Additionally, you can use `kubectl get pods` to view the new catalog sync
|
2020-09-01 15:14:13 +00:00
|
|
|
process. The [catalog sync](/docs/platform/k8s/helm#v-synccatalog) process will sync
|
2020-04-06 20:27:35 +00:00
|
|
|
Consul and Kubernetes services bidirectionally by
|
2019-03-13 21:56:00 +00:00
|
|
|
default.
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-03-13 21:56:00 +00:00
|
|
|
$ kubectl get pods
|
|
|
|
NAME READY STATUS RESTARTS AGE
|
|
|
|
mollified-robin-consul-d8mnp 1/1 Running 0 15d
|
|
|
|
mollified-robin-consul-p4m89 1/1 Running 0 15d
|
|
|
|
mollified-robin-consul-qclqc 1/1 Running 0 15d
|
|
|
|
mollified-robin-consul-server-0 1/1 Running 0 15d
|
|
|
|
mollified-robin-consul-server-1 1/1 Running 0 15d
|
|
|
|
mollified-robin-consul-server-2 1/1 Running 0 15d
|
|
|
|
mollified-robin-consul-sync-catalog-f75cd5846-wjfdk 1/1 Running 0 13d
|
|
|
|
```
|
|
|
|
|
|
|
|
The service should have `consul-ui` appended to the deployment name. Note, you
|
2020-04-06 20:27:35 +00:00
|
|
|
do not need to specify a port when accessing the dashboard.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
2020-04-06 20:27:35 +00:00
|
|
|
## Access Consul
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
In addition to accessing Consul with the UI, you can manage Consul with the
|
2020-04-06 20:27:35 +00:00
|
|
|
HTTP API or by directly connecting to the pod with `kubectl`.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
|
|
|
### Kubectl
|
|
|
|
|
|
|
|
To access the pod and data directory you can exec into the pod with `kubectl` to start a shell session.
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2020-04-06 20:27:35 +00:00
|
|
|
$ kubectl exec -it mollified-robin-consul-server-0 /bin/sh
|
2019-03-13 21:56:00 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
This will allow you to navigate the file system and run Consul CLI commands on
|
2020-04-06 20:27:35 +00:00
|
|
|
the pod. For example you can view the Consul members.
|
2019-03-13 21:56:00 +00:00
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2020-04-06 20:27:35 +00:00
|
|
|
$ consul members
|
|
|
|
Node Address Status Type Build Protocol DC Segment
|
2019-03-13 21:56:00 +00:00
|
|
|
mollified-robin-consul-server-0 172.20.2.18:8301 alive server 1.4.2 2 hashidc1 <all>
|
2020-04-06 20:27:35 +00:00
|
|
|
mollified-robin-consul-server-1 172.20.0.21:8301 alive server 1.4.2 2 hashidc1 <all>
|
2019-03-13 21:56:00 +00:00
|
|
|
mollified-robin-consul-server-2 172.20.1.18:8301 alive server 1.4.2 2 hashidc1 <all>
|
|
|
|
gke-tier-2-cluster-default-pool-leri5 172.20.1.17:8301 alive client 1.4.2 2 hashidc1 <default>
|
|
|
|
gke-tier-2-cluster-default-pool-gnv4 172.20.2.17:8301 alive client 1.4.2 2 hashidc1 <default>
|
|
|
|
gke-tier-2-cluster-default-pool-zrr0 172.20.0.20:8301 alive client 1.4.2 2 hashidc1 <default>
|
|
|
|
```
|
|
|
|
|
|
|
|
### Consul HTTP API
|
|
|
|
|
|
|
|
You can use the Consul HTTP API by communicating to the local agent running on
|
|
|
|
the Kubernetes node. You can read the
|
2020-09-01 15:14:13 +00:00
|
|
|
[documentation](/docs/platform/k8s/run#accessing-the-consul-http-api)
|
2019-03-13 21:56:00 +00:00
|
|
|
if you are interested in learning more about using the Consul HTTP API with Kubernetes.
|
|
|
|
|
|
|
|
## Summary
|
|
|
|
|
|
|
|
In this guide, you deployed a Consul datacenter in Kubernetes using the
|
|
|
|
official Helm chart. You also configured access to the Consul UI. To learn more
|
|
|
|
about deploying applications that can use Consul's service discovery and
|
|
|
|
Connect, read the example in the [Minikube with Consul
|
2020-09-01 15:14:13 +00:00
|
|
|
guide](/docs/guides/minikube#step-2-deploy-custom-applications).
|