Manage Kubernetes resources via Terraform
Kubernetes (K8S) is an open-source workload scheduler with focus on containerized applications. You can use the Terraform Kubernetes provider to interact with resources supported by Kubernetes.
In this tutorial, you will learn how to interact with Kubernetes using Terraform, by scheduling and exposing a NGINX deployment on a Kubernetes cluster. You will also manage custom resources using Terraform.
The final Terraform configuration files used in this tutorial can be found in the Deploy NGINX on Kubernetes via Terraform GitHub repository.
Why deploy with Terraform?
While you could use kubectl
or similar CLI-based tools to
manage your Kubernetes resources, using Terraform has the following benefits:
Unified Workflow - If you are already provisioning Kubernetes clusters with Terraform, use the same configuration language to deploy your applications into your cluster.
Full Lifecycle Management - Terraform doesn't only create resources, it updates, and deletes tracked resources without requiring you to inspect the API to identify those resources.
Graph of Relationships - Terraform understands dependency relationships between resources. For example, if a Persistent Volume Claim claims space from a particular Persistent Volume, Terraform won't attempt to create the claim if it fails to create the volume.
Prerequisites
The tutorial assumes some basic familiarity with
Kubernetes and kubectl
.
It also assumes that you are familiar with the usual Terraform plan/apply workflow. If you're new to Terraform itself, refer first to the Getting Started tutorial.
For this tutorial, you will need an existing Kubernetes cluster. If you don't have a Kubernetes cluster, you can use kind to provision a local Kubernetes cluster or provision one on a cloud provider.
Follow these instructions or choose a package manager based on your operating system to install kind.
Use the package manager homebrew
to install kind.
Once you've done this, download and save the
kind configuration
into a file named kind-config.yaml
. This configuration adds extra port
mappings, so you can access the NGINX service locally later.
Then, create a kind Kubernetes cluster.
Verify that your cluster exists by listing your kind clusters.
Then, point kubectl
to interact with this cluster. The context is kind-
followed by the name of your cluster.
Configure the provider
Before you can schedule any Kubernetes services using Terraform, you need to configure the Terraform Kubernetes provider.
There are many ways to configure the Kubernetes provider. We recommend them in the following order (most recommended first, least recommended last):
- Use cloud-specific auth plugins (for example,
eks get-token
,az get-token
,gcloud config
) - Use oauth2 token
- Use TLS certificate credentials
- Use
kubeconfig
file by setting bothconfig_path
andconfig_context
- Use username and password (HTTP Basic Authorization)
Follow the instructions in the kind or cloud provider tabs to configure the provider to target a specific Kubernetes cluster. The cloud provider tabs will configure the Kubernetes provider using cloud-specific auth tokens.
Create a directory named learn-terraform-deploy-nginx-kubernetes
.
Then, navigate into it
Note
This directory is only used for managing Kubernetes cluster resources with Terraform. By keeping the Terraform configuration for provisioning a Kubernetes cluster and managing a Kubernetes resources separate, changes in one repository doesn't affect the other. In addition, the modularity makes the configuration more readable and enables you to scope different permissions to each workspace.
Then, create a new file named kubernetes.tf
and add the following configuration to it.
This serves as a base configuration for the provider.
To properly configure this provider, you need to define the variables.
First, view your kind cluster information.
Define the variables in a terraform.tfvars
file.
host
corresponds withclusters.cluster.server
.client_certificate
corresponds withusers.user.client-certificate
.client_key
corresponds withusers.user.client-key
.cluster_ca_certificate
corresponds withclusters.cluster.certificate-authority-data
.
You should end up with something similar to the following.
After configuring the provider, run terraform init
to download the latest
version and initialize your Terraform workspace.
Schedule a deployment
Add the following to your kubernetes.tf
file. This Terraform configuration will schedule
a NGINX deployment with two replicas on your Kubernetes cluster, internally
exposing port 80 (HTTP).
You may notice the similarities between the Terraform configuration and Kubernetes configuration YAML file.
Apply the configuration to schedule the NGINX deployment. Confirm your apply
with a yes
.
Once the apply is complete, verify the NGINX deployment is running.
Schedule a Service
There are multiple Kubernetes services you can use to expose your NGINX to users.
If your Kubernetes cluster is hosted locally on kind, you will expose your
NGINX instance via NodePort to access your instance. This exposes the
service on each node's IP at a static port, allowing you to access the service
from outside the cluster at <NodeIP>:<NodePort>
.
If your Kubernetes cluster is hosted on a cloud provider, you will expose your NGINX instance via LoadBalancer to access your instance. This exposes the service externally using a cloud provider's load balancer.
Notice how the Kubernetes Service resource block dynamically assigns the selector to the Deployment's label. This avoids common bugs due to mismatched service label selectors.
Add the following configuration to your kubernetes.tf
file. This will expose
the NGINX instance at the node_port
: 30201
.
Apply the configuration to schedule the NodePort Service. Confirm your apply
with a yes
.
Once the apply is complete, verify the NGINX service is running.
You can access the NGINX instance by navigating to the NodePort at
http://localhost:30201/
.
Scale the deployment
You can scale your deployment by increasing the replicas
field in your
configuration. Change the number of replicas in your Kubernetes deployment from
2
to 4
.
Apply the change to scale your deployment. Confirm your apply with a yes
.
Once the apply is complete, verify the NGINX deployment has four replicas.
Managing Custom Resources
In addition to built-in resources and data sources, the Terraform provider also
includes a
kubernetes_manifest
resource that lets you manage custom resource definitions
(CRDs),
custom
resources,
or any resource that is not built into the Terraform provider.
You will use Terraform to apply a CRD then manage custom resources. You have to do this in two steps:
- Apply the required CRD to the cluster
- Apply the Custom Resources to the cluster
You need two apply steps because at plan time Terraform queries the Kubernetes
API to verify the schema for the kind of object specified in the manifest
field. If Terraform doesn't find the CRD for the resource defined in the
manifest the plan will return an error.
Note
To make this tutorial faster we included the CRD in the same workspace as the Kubernetes resources that it manages. In production create a new workspace for the CRD.
Create a custom resource definition
Create a new file named crontab_crd.tf
and paste in the bellow configuration
for a CRD that extends Kubernetes to store cron data as a resource called
CronTab.
The resource has two configurable fields: cronSpec
and image
. Apply the
configuration to create the CRD. Confirm your apply with yes
.
Note that in the plan, Terraform created a resource with two attributes:
manifest
and object
.
- The
manifest
attribute is your desired configuration, andobject
is the end state returned by the Kubernetes API server after Terraform created the resource. - The
object
attribute contains many more fields than you specified inmanifest
because Terraform generated a schema containing all of the possible resource attributes that the Kubernetes API server could add. When referencing thekubernetes_manifest
resource from outputs or other resources, always use theobject
attribute.
Confirm that Terraform created the CRD using kubectl
.
The contrabs
resource definition now exists in Kubernetes, but you have not
used it to define any Kubernetes resources yet. Check for the resource
definition with kubectl
, which would return error: the server doesn't have a
resource type "crontab"
if the CRD didn't exist.
Create a custom resource
Now, create a new file named my_new_crontab.tf
and paste in the following
configuration, which creates a custom resource based on your newly created
CronTab CRD.
Apply the configuration to create the custom resource. Confirm the apply with yes
.
Confirm that Terraform created the custom resource.
View the new custom resource.
Clean up your workspace
Destroy any resources you created once you're done with this tutorial.
Running terraform destroy
will de-provision the NGINX deployment and service
you created in this tutorial. Confirm your destroy with a yes
.
If you are using a kind Kubernetes cluster, run the following command to delete it.
If you followed a previous tutorial to set up a Kubernetes cluster, refer to the "Cleaning up your workspace" section of the tutorial to remove those resources as well. Otherwise, your Kubernetes cluster will remain running.
Next steps
In this tutorial, you configured the Terraform Kubernetes provider and used it to schedule, expose and scale an NGINX instance. You also used Terraform to create a custom resource definition and manage a custom resource.
To discover additional capabilities, visit the Terraform Kubernetes Provider Registry Documentation Page.
For a more in-depth Kubernetes examples, complete the Deploy Consul and Vault on a Kubernetes Cluster using Run Triggers (runs on Google Cloud Platform) and Manage Kubernetes Custom Resources tutorials.