Is there anyone who successfully implemented Kubernetes cluster autoscaling with Terraform in Alicloud? Is it possible with Terraform?
You can deploy Container Service clusters on Alibaba Cloud by using Terraform Here is how you can install Terraform on Alibaba Cloud.
Download Terraform from the official website. Select the corresponding version and platform. In this document, install the Terraform on Linux (the procedure is similar to that of installing the Terraform on Mac OS X).
export TERRAFORM_HOME=/usr/local/terraform
export PATH=$PATH:$TERRAFORM_HOME
Install Alibaba Cloud Terraform package
Before using Terraform, an initialization operation is required to load Alibaba Cloud Provider. Run the following command in the template file directory:
terraform init
After the download is successful, the corresponding plugin is downloaded to the .terraform hidden directory in the current folder. If you encounter a network timeout problem during the loading process, follow the instructions to complete the manual installation of the plugin.
$ terraform Usage: terraform [--version] [--help] [args]
The available commands for execution are listed below. The most common, useful commands are shown first, followed by less common or more advanced commands. If you're just getting started with Terraform, stick with the common commands. For the other commands, please read the help and docs before usage.
Common commands: ....
All other commands: debug Debug output management (experimental) force-unlock Manually unlock the terraform state state Advanced state management
For more details Click here for Alibaba Cloud Terraform Documentation