Terraform
The gist of it is that, instead of letting kOps apply the changes, you tell kOps what you want, and then kOps spits out what it wants done into a .tf
file. You are then responsible for turning those plans into reality.
The Terraform output should be reasonably stable (i.e. the text files should only change where something has actually changed - items should appear in the same order etc). This is extremely useful when using version control as you can diff your changes easily.
Note that if you modify the Terraform files that kOps spits out, it will override your changes with the configuration state defined by its own configs. In other terms, kOps’s own state is the ultimate source of truth (as far as kOps is concerned), and Terraform is a representation of that state for your convenience.
Set up remote state
You could keep your Terraform state locally, but we strongly recommend saving it on S3 with versioning turned on that bucket. Configure a remote S3 store with a setting like below:
Learn more about .
Initialize/create a cluster
For example, a complete setup might be:
--name=kubernetes.mydomain.com \
--state=s3://mycompany.kubernetes \
--dns-zone=kubernetes.mydomain.com \
[... your other options ...]
--out=. \
--target=terraform
The above command will create kOps state on S3 (defined in --state
) and output a representation of your configuration into Terraform files. Thereafter you can preview your changes in kubernetes.tf
and then use Terraform to create all the resources as shown below:
Initialize Terraform to set-up the S3 backend and provider plugins.
$ terraform init
If you’re using Terraform v0.12.26+, the following warning will be displayed and can be safely ignored. It will not be displayed if you’re using Terraform v0.13.0+.
Use Terraform to review and create the cloud infrastructure and Kubernetes cluster.
$ terraform plan
$ terraform apply
Wait for the cluster to initialize. If all goes well, you should have a working Kubernetes cluster!
Editing the cluster
It’s possible to use Terraform to make changes to your infrastructure as defined by kOps. In the example below we’d like to change some cluster configs:
$ kops edit cluster \
--state=s3://mycompany.kubernetes
# editor opens, make your changes ...
Then output your changes/edits to kOps cluster state into the Terraform files. Run kops update
with --target
and --out
parameters:
Then apply your changes after previewing what changes will be applied:
$ terraform plan
$ terraform apply
Keep in mind that some changes will require a to be applied. When in doubt, run the command and check if any nodes needs to be updated. For more information see the caveats section below.
Teardown the cluster
When you eventually terraform destroy
the cluster, you should still run kops delete cluster
, to remove the kOps cluster specification and any dynamically created Kubernetes resources (ELBs or volumes). To do this, run:
$ terraform plan -destroy
$ terraform destroy
$ kops delete cluster --yes \
--name=kubernetes.mydomain.com \
--state=s3://mycompany.kubernetes
Ps: You don’t have to kops delete cluster
if you just want to recreate from scratch. Deleting kOps cluster state means that you’ve have to kops create
again.
kops rolling-update
might be needed after editing the cluster
Changes made with kops edit
(like enabling RBAC and / or feature gates) will result in changes to the LaunchTemplate of your cluster nodes. After a terraform apply
, they won’t be applied right away since terraform will not launch new instances as part of that.
To see your changes applied to the cluster you’ll also need to run kops rolling-update
after running terraform apply
. This will ensure that all nodes’ changes have the desired settings configured with kops edit
.
Terraform JSON output
With terraform 0.12 JSON is now officially supported as configuration language. To enable JSON output instead of HCLv2 output you need to enable it through a feature flag.
This is an alternative to of using terraforms own configuration syntax HCL. Be sure to delete the existing kubernetes.tf file. Terraform will otherwise use both and then complain.