Skip to content

Kubernetes with Terraformยค

Terraform offers two strictly seperate integrations for/with Kubernetes:

  1. You can create Kubernetes Instances (clusters) on pretty much any cloud infra offering, using the cloud infra provider's specific terraform provider plugin. See k8s_on_do for a live demo of getting to a Kubernetes cluster on DigitalOcean.
  2. Once you have management access to a Kubernetes Cluster, you can, instead of using raw kubectl, also use terraform to configure resources on it, using the kubernetes provider. See k8s_provider tutorial for a live session.
Back to top