mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
461e1de6ea
* docs: Update the README file * docs: Add the Docker login instructions to the README * docs: Update the Docker login instructions in the README * docs: Fix a typo in the README file * docs: Code review changes for README.md * docs: Feature the correct README in the project home
527 B
527 B
How to setup integration tests on AKS
cd deployment
# Create ci.tfvars
# Set ARM_CLIENT_ID, ARM_CLIENT_SECRET, ARM_TENANT_ID, ARM_SUBSCRIPTION_ID
# Set usr_node_count, resource_group_name_prefix
# Change backend.tf to use `ci-terraform.tfstate` as key
terraform init
terraform plan -var-file ci.tfvars -out ci.plan
terraform apply ci.plan
terraform output -raw kube_config
# Copy the kube config in GitHub secret KUBECONFIG
Shutdown the cluster once CI is not needed anymore
terraform destroy