Deploy Consul on RedHat OpenShift
Red Hat OpenShift is a distribution of the Kubernetes platform that provides a number of usability and security enhancements.
In this tutorial you will:
- Deploy an OpenShift cluster
- Deploy a Consul datacenter
- Access the Consul UI
- Use the Consul CLI to inspect your environment
- Decommission the OpenShift environment
Security Warning
This tutorial is not for production use. The chart was installed with an insecure configuration of Consul. Refer to the Secure Consul and Registered Services on Kubernetes tutorial to learn how you can secure Consul on Kubernetes in production.
Prerequisites
To complete this tutorial you will need:
- Access to a Kubernetes cluster deployed with OpenShift
- A text editor
- Basic command line access
- A Red Hat account
- The Consul CLI
- CodeReady Containers v2.33.0-4.14.12+
- Helm v3.6+ or consul-k8s v1.4.2+
Deploy OpenShift
OpenShift can be deployed on multiple platforms, and there are several installation options available for installing OpenShift on either production and development environments. This tutorial requires a running OpenShift cluster to deploy Consul on Kubernetes. If an OpenShift cluster is already provisioned in a production or development environment to be used for deploying Consul on Kubernetes, please skip ahead to Deploy Consul. This tutorial will utilize CodeReady Containers (CRC) to provide a pre-configured development OpenShift environment on your local machine. CRC is bundled as a Red Hat Enterprise Linux virtual machine that supports native hypervisors for Linux, macOS, and Windows 10. CRC is the quickest way to get started building OpenShift clusters. It is designed to run on a local computer to simplify setup and emulate the cloud development environment locally with all the tools needed to develop container-based apps. While we use CRC in this tutorial, the Consul Helm deployment process will work on any OpenShift cluster and is production ready.
If deploying CRC is not preferred, a managed OpenShift cluster could quickly be provisioned within less than an hour using Azure RedHat OpenShift. Azure RedHat Openshift requires an Azure subscription. However, it provides the simplest installation flow for getting a production-ready OpenShift cluster available to be used for this tutorial.
CRC Setup
After installing CodeReady Containers, issue the following command to setup your environment.
CRC start
Once the setup is complete, you can start the CRC service with the following command. The command will perform a few system checks to ensure your system meets the minimum requirements and will then ask you to provide an image pull secret. You should have your Red Hat account open so that you can easily copy your image pull secret when prompted.
Next, paste the image pull secret into the terminal and press enter.
Example output:
Notice that the output instructs you to configure your oc-env
, and also includes
a login command and secret password. The secret is specific to your installation.
Make note of this command, as you will use it to login to CRC on your development
host later.
Configure CRC environment
Next, configure the environment as instructed by CRC using the following command.
Login to the OpenShift cluster
Next, use the login command you made note of before to authenticate with the OpenShift cluster.
Note You will have to replace the secret password below with the value output by CRC.
Verify configuration
Validate that your CRC setup was successful with the following command.
Create a new project
First, create an OpenShift project to install Consul on Kubernetes. Creating an OpenShift project creates a Kubernetes namespace to deploy Kubernetes resources.
Create an image pull secret for a RedHat Registry service account
You must create an image pull secret before authenticating to the RedHat Registry and pulling images from the container registry. You must first create a registry service account on the RedHat Customer Portal, and then apply the OpenShift secret that is associated with the registry service account as shown below:
In the Helm chart values file, use the output of previous command and update the attribute imagePullSecrets
stanza with its value.
Deploy Consul
Helm chart configuration
To customize your deployment, you can pass a YAML configuration file to be used during the deployment.
Any values specified in the values file will override the Helm chart's default settings.
The following example file sets the global.openshift.enabled
entry to true,
which is required to operate Consul on OpenShift. Generate a
file named values.yaml
that you will reference in the helm install
command later.
Install Consul
Helm chart preparation
Consul on Kubernetes provides a Helm chart to deploy a Consul datacenter on Kubernetes in a highly customized configuration. Review the docs on Helm chart Configuration to learn more about the available configurations.
Verify chart version
To ensure you have version 1.4.2
of the Helm chart, search your local repo.
If the correct version is not displayed in the output, try updating your helm repo.
Import images from RedHat Catalog
Instead of pulling images directly from the RedHat Registry, Consul and Consul on Kubernetes images could also be pre-loaded onto the internal OpenShift registry using the oc import
command. Read more about importing images into the internal OpenShift Registry in the RedHat OpenShift cookbook
Install Consul in your cluster
You can now deploy a complete Consul datacenter in your Kubernetes cluster using the official Consul Helm chart or the Consul K8S CLI.
Now, issue the helm install
command. The following command specifies that the
installation should:
- Use the custom values file you created earlier
- Use the
hashicorp/consul
chart you downloaded in the last step - Set your Consul installation name to
consul
- Create Consul resources in the
consul
namespace - Use
consul-helm
chart version1.4.2
The output will be similar to the following.
Verify installation
Use kubectl get pods
to verify your installation.
Once all pods have a status of Running
, enter CTRL-C
to stop the watch.
Accessing the Consul UI
Now that Consul has been deployed, you can access the Consul UI to verify that the Consul installation was successful, and that the environment is healthy.
Expose the UI service to the host
Since the application is running on your local development host, you can expose
the Consul UI to the development host using kubectl port-forward
. The UI and the
HTTP API Server run on the consul-server-0
pod. Issue the following command to
expose the server endpoint at port 8500
to your local development host.
Open http://localhost:8500
in a new browser tab, and you should observe a
page that looks similar to the following.
Accessing Consul with the CLI and HTTP API
To access Consul with the CLI, set the CONSUL_HTTP_ADDR
following environment variable on the development host so that the Consul CLI knows which Consul server to interact with.
You should be able to issue the consul members
command to view all available
Consul datacenter members.
You can use the same URL to make HTTP API requests with your custom code.
Deploy example services
Create a 'demo' project
To simulate an active environment you will deploy a client, and an upstream backend service. First, create a new project to deploy the client and server to:
Create security context constraints for the application sidecars
The consul-dataplane
sidecar injected into each application pod runs with user ID 100, which is not allowed by default in OpenShift. Run the following commands to use this user ID.
First, export the target namespace as an environment variable.
Add the service accounts in the targeted namespace access to the anyuid security context constraints (SCC).
When removing your application, remove the permissions as follows.
Create a network attachment definition
By default, OpenShift uses Multus for managed CNI, and thus requires a NetworkAttachmentDefinition
in the application namespace to invoke the consul-cni
plugin.
Read about the Network Attachment Definition Custom Resource for more details. Issue the following command to create a file named networkattachmentdefinition.yaml
that will be used to create a Network Attachment Definition in the demo
namespace:
Note
If your OpenShift cluster has network isolation enabled, a Network Attachment Definition will be need per namespace. If network isolation is disabled, it is possible to use the Network Attachment Definition created in the namespace where Consul is installed.
Next, deploy the NetworkAttachmentDefinition.
When removing your application, remove the NetworkAttachmentDefinition as follows.
Deploy the server service
Issue the following command to create a file named server.yaml
that will be used to create an http echo server on Kubernetes:
Next, deploy the sample backend service.
Deploy the client service
Next, create a file named client.yaml
that defines the sample client service.
Next, deploy the sample client.
Finally, ensure all pods/containers having a status of Running
before proceeding to the next section.
Decommission the environment
Now that you have completed the tutorial, you should decommission the CRC environment.
Enter CTRL-C
in the terminal to stop the port forwarding process.
Stop CRC
First, stop the running cluster.
Example output:
Delete CRC
Next, issue the following command to delete the cluster.
The CRC CLI will ask you to confirm that you want to delete the cluster.
Example prompt:
Enter y
to confirm.
Example output:
Next steps
In this tutorial you created a Red Hat OpenShift cluster, and installed Consul to the cluster.
Specifically, you:
- Deployed an OpenShift cluster
- Deployed a Consul datacenter
- Accessed the Consul UI
- Used the Consul CLI to inspect your environment
- Decommissioned the environment
It is highly recommended that you properly secure your Kubernetes cluster and that you understand and enable the recommended security features of Consul. Refer to the Secure Consul and Registered Services on Kubernetes tutorial to learn how you can deploy an example workload, and secure Consul on Kubernetes for production.
For more information on the Consul Helm chart configuration options, review the consul-helm chart documentation.