2019-03-21 00:20:05 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "Kubernetes Consul Reference Architecture"
|
|
|
|
sidebar_current: "docs-guides-k8s-reference-architecture"
|
|
|
|
description: |-
|
|
|
|
This document provides recommended practices and a reference architecture.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Consul and Kubernetes Reference Architecture
|
|
|
|
|
|
|
|
Preparing your Kubernetes cluster to successfully deploy and run Consul is an
|
|
|
|
important first step in your production deployment process. In this guide you
|
2019-04-03 19:39:36 +00:00
|
|
|
will prepare your Kubernetes cluster, that can be running on any platform
|
2019-04-03 18:27:42 +00:00
|
|
|
(AKS, EKS, GKE, etc). However, we will call out cloud specific differences when
|
2019-03-21 00:20:05 +00:00
|
|
|
applicable. Before starting this guide you should have experience with
|
|
|
|
Kubernetes, and have `kubectl` and helm configured locally.
|
|
|
|
|
|
|
|
By the end of this guide, you will be able to select the right resource limits
|
|
|
|
for Consul pods, select the Consul datacenter design that meets your use case,
|
|
|
|
and understand the minimum networking requirements.
|
|
|
|
|
|
|
|
## Infrastructure Requirements
|
|
|
|
|
|
|
|
Consul server agents are responsible for the cluster state, responding to RPC
|
|
|
|
queries, and processing all write operations. Since the Consul servers are
|
|
|
|
highly active and are responsible for maintaining the cluster state, server
|
2019-04-03 15:59:12 +00:00
|
|
|
sizing is critical for the overall performance, efficiency, and health of the
|
2019-03-21 00:20:05 +00:00
|
|
|
Consul cluster. Review the [Consul Reference
|
|
|
|
Architecture](/advanced/day-1-operations/reference-architecture#consul-servers)
|
|
|
|
guide for sizing recommendations for small and large Consul datacenters.
|
|
|
|
|
|
|
|
The CPU and memory recommendations can be used when you select the resources
|
|
|
|
limits for the Consul pods. The disk recommendations can also be used when
|
|
|
|
selecting the resources limits and configuring persistent volumes. You will
|
2019-04-03 15:58:55 +00:00
|
|
|
need to set both `limits` and `requests` in the Helm chart. Below is an example
|
2019-03-21 00:20:05 +00:00
|
|
|
Helm chart for a Consul server in a large environment.
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
server
|
|
|
|
resources: |
|
|
|
|
requests:
|
|
|
|
memory: "32Gi"
|
|
|
|
cpu: "4"
|
|
|
|
disk: "50Gi"
|
|
|
|
limits:
|
|
|
|
memory: "32Gi"
|
|
|
|
cpu: "4"
|
|
|
|
disk: "50Gi"
|
|
|
|
```
|
|
|
|
|
|
|
|
You should also set [resource limits for Consul
|
|
|
|
clients](https://www.consul.io/docs/platform/k8s/helm.html#v-client-resources),
|
|
|
|
so that the client pods do not unexpectedly consume more resources than
|
|
|
|
expected.
|
|
|
|
|
|
|
|
[Persistent
|
|
|
|
volumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/) (PV)
|
|
|
|
allow you to have a fixed disk location for the Consul data. This ensures that
|
|
|
|
if a Consul server is lost, the data will not be lost. This is an important
|
|
|
|
feature of Kubernetes, but may take some additional configuration. If you are
|
|
|
|
running Kubernetes on one of the major cloud platforms, persistent volumes
|
2019-03-21 14:50:25 +00:00
|
|
|
should already be configured; be sure to read their documentation for more
|
2019-03-21 00:20:05 +00:00
|
|
|
details. In addition to setting up the PV resource in Kubernetes, you will need
|
|
|
|
to map the Consul server to that volume with the [storage class
|
|
|
|
parameter](https://www.consul.io/docs/platform/k8s/helm.html#v-server-storageclass).
|
|
|
|
|
|
|
|
Finally, you will need to enable RBAC on your Kubernetes cluster. Review
|
|
|
|
[Kubernetes
|
|
|
|
RBAC](https://kubernetes.io/docs/reference/access-authn-authz/rbac/),
|
|
|
|
[AWS](https://docs.aws.amazon.com/eks/latest/userguide/managing-auth.html),
|
|
|
|
[GCP](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control),
|
|
|
|
and
|
|
|
|
[Azure](https://docs.microsoft.com/en-us/cli/azure/aks?view=azure-cli-latest#az-aks-create).
|
2019-04-03 19:47:11 +00:00
|
|
|
In Azure, RBAC is enabled by default.
|
2019-03-21 00:20:05 +00:00
|
|
|
|
|
|
|
## Datacenter Design
|
|
|
|
|
2019-04-03 15:55:00 +00:00
|
|
|
There are many possible configurations for running Consul with Kubernetes. In this guide
|
2019-03-21 00:20:05 +00:00
|
|
|
we will cover three of the most common.
|
|
|
|
|
2019-04-03 15:56:25 +00:00
|
|
|
1. Consul agents can be solely deployed within Kubernetes.
|
2019-03-21 00:20:05 +00:00
|
|
|
1. Consul servers
|
2019-04-03 15:56:51 +00:00
|
|
|
can be deployed outside of Kubernetes and clients inside of Kubernetes.
|
2019-03-21 00:20:05 +00:00
|
|
|
1. Multiple Consul datacenters with agents inside and outside of Kubernetes.
|
|
|
|
|
2019-04-03 18:30:46 +00:00
|
|
|
Review the Consul Kubernetes-specific
|
2019-03-21 00:20:05 +00:00
|
|
|
[documentation](https://www.consul.io/docs/platform/k8s/index.html#use-cases)
|
|
|
|
for additional use case information.
|
|
|
|
|
|
|
|
Since all three use cases will also need catalog sync, review the
|
2019-04-03 18:31:51 +00:00
|
|
|
implementation [details for catalog sync](https://www.consul.io/docs/platform/k8s/service-sync.html).
|
2019-03-21 00:20:05 +00:00
|
|
|
|
|
|
|
### Consul Datacenter Deployed in Kubernetes
|
|
|
|
|
|
|
|
Deploying a Consul cluster, servers and clients, in Kubernetes can be done with
|
|
|
|
the official [Helm
|
|
|
|
chart](https://www.consul.io/docs/platform/k8s/helm.html#using-the-helm-chart).
|
|
|
|
This configuration is useful for managing services within Kubernetes and is
|
|
|
|
common for users who do not already have a production Consul datacenter.
|
|
|
|
|
|
|
|
![Reference Diagram](/assets/images/k8s-consul-simple.png "Consul in Kubernetes Reference Diagram")
|
|
|
|
|
|
|
|
The Consul datacenter in Kubernetes will function the same as a platform
|
|
|
|
independent Consul datacenter. Agents will communicate over LAN Gossip, servers
|
2019-04-03 18:33:01 +00:00
|
|
|
will participate in the Raft consensus, and client requests will be
|
2019-04-03 15:54:20 +00:00
|
|
|
forwarded to the servers via RPCs.
|
2019-03-21 00:20:05 +00:00
|
|
|
|
|
|
|
### Consul Datacenter with a Kubernetes Cluster
|
|
|
|
|
|
|
|
To use an existing Consul cluster to manage services in Kubernetes, Consul
|
2019-04-03 18:36:24 +00:00
|
|
|
clients can be deployed within the Kubernetes cluster. This will also allow
|
2019-03-21 00:20:05 +00:00
|
|
|
Kubernetes services to be synced to Consul. This design allows Consul tools
|
|
|
|
such as envconsul, consul-template, and more to work on Kubernetes. It will
|
|
|
|
also register each Kubernetes node with the Consul catalog for full visibility
|
|
|
|
into your infrastructure.
|
|
|
|
|
|
|
|
![Reference Diagram](/assets/images/k8s-cluster-consul-datacenter.png "Consul and Kubernetes Reference Diagram")
|
|
|
|
|
|
|
|
This type of deployment in Kubernetes can also be set up with the official Helm
|
|
|
|
chart.
|
|
|
|
|
|
|
|
|
|
|
|
### Multiple Consul Clusters with a Kubernetes Cluster
|
|
|
|
|
|
|
|
Consul clusters in different datacenters running the same service can be joined
|
|
|
|
by WAN links. The clusters can operate independently and only communicate over
|
|
|
|
the WAN. This type datacenter design is detailed in the [Reference Architecture
|
|
|
|
guide](/advanced/day-1-operations/reference-architecture#multiple-datacenters).
|
|
|
|
In this setup, you can have a Consul cluster running outside of Kubernetes and
|
|
|
|
a Consul cluster running inside of Kubernetes.
|
|
|
|
|
|
|
|
### Catalog Sync
|
|
|
|
|
|
|
|
To use catalog sync, you must enable it in the [Helm
|
|
|
|
chart](https://www.consul.io/docs/platform/k8s/helm.html#v-synccatalog).
|
|
|
|
Catalog sync allows you to sync services between Consul and Kubernetes. The
|
2019-03-21 14:51:37 +00:00
|
|
|
sync can be unidirectional in either direction or bidirectional. Read the
|
2019-03-21 00:20:05 +00:00
|
|
|
[documentation](https://www.consul.io/docs/platform/k8s/service-sync.html) to
|
|
|
|
learn more about the configuration.
|
|
|
|
|
|
|
|
Services synced from Kubernetes to Consul will be discoverable, like any other
|
|
|
|
service within the Consul datacenter. Read more in the [network
|
|
|
|
connectivity](#networking-connectivity) section to learn more about related
|
|
|
|
Kubernetes configuration. Services synced from Consul to Kubernetes will be
|
|
|
|
discoverable with the built-in Kubernetes DNS once a [Consul stub
|
|
|
|
domain](https://www.consul.io/docs/platform/k8s/dns.html) is deployed. When
|
|
|
|
bidirectional catalog sync is enabled, it will behave like the two
|
|
|
|
unidirectional setups.
|
|
|
|
|
|
|
|
## Networking Connectivity
|
|
|
|
|
|
|
|
When running Consul inside Kubernetes as a pod, the Consul servers will be
|
|
|
|
automatically configured with the appropriate addresses. However, when running
|
|
|
|
Consul servers outside of the Kubernetes cluster and clients inside Kubernetes
|
|
|
|
as pods, there are additional [networking
|
|
|
|
considerations](/consul/advanced/day-1-operations/reference-architecture#network-connectivity).
|
|
|
|
|
|
|
|
### Network Connectivity for Services
|
|
|
|
|
|
|
|
When using Consul catalog sync, to sync Kubernetes services to Consul, you will
|
|
|
|
need to ensure the Kubernetes services are supported [service
|
|
|
|
types](https://www.consul.io/docs/platform/k8s/service-sync.html#kubernetes-service-types)
|
|
|
|
and configure correctly in Kubernetes. If the service is configured correctly,
|
|
|
|
it will be discoverable by Consul like any other service in the datacenter.
|
|
|
|
|
|
|
|
### Network Security
|
|
|
|
|
|
|
|
Finally, you should consider securing your Consul datacenter with
|
2019-04-03 18:41:09 +00:00
|
|
|
[ACLs](/consul/advanced/day-1-operations/production-acls). ACLs should be used with [Consul
|
2019-03-21 00:20:05 +00:00
|
|
|
Connect](https://www.consul.io/docs/platform/k8s/connect.html) to secure
|
|
|
|
service to service communication. The Kubernetes cluster should also be
|
|
|
|
secured.
|
|
|
|
|
|
|
|
## Summary
|
|
|
|
|
|
|
|
You are now prepared to deploy Consul with Kubernetes. In this
|
|
|
|
guide, you were introduced to several a datacenter design for a variety of use
|
|
|
|
cases. This guide also outlined the Kubernetes prerequisites, resource
|
|
|
|
requirements for Consul, and networking considerations. Continue onto the
|
|
|
|
[Deploying Consul with Kubernetes
|
|
|
|
guide](https://learn.hashicorp.com/consul/getting-started-k8s/helm-deploy) for
|
|
|
|
information on deploying Consul with the official Helm chart or continue
|
|
|
|
reading about Consul Operations in the [Day 1 Path](https://learn.hashicorp.com/consul/?track=advanced#advanced).
|
|
|
|
|