forked from hashicorp/vault-secrets-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scale-testing.mk
45 lines (39 loc) · 1.73 KB
/
scale-testing.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# run the following from the project root:
# make -f scale-testing.mk <make rule>
# AWS variables for cloud hosted k8s testing
AWS_REGION ?= us-east-2
EKS_K8S_VERSION ?= 1.30
# directories for cloud hosted k8s infrastructure for running tests
# root directory for all integration tests
TF_EKS_SRC_DIR ?= $(INTEGRATION_TEST_ROOT)/infra/scale-testing/eks-cluster
TF_EKS_STATE_DIR ?= $(TF_EKS_SRC_DIR)/state
TF_DEPLOY_SRC_DIR ?= $(INTEGRATION_TEST_ROOT)/infra/scale-testing/deployments
TF_DEPLOY_STATE_DIR ?= $(TF_DEPLOY_SRC_DIR)/state
include ./Makefile
.PHONY: create-eks
create-eks: ## Create a new EKS cluster
@mkdir -p $(TF_EKS_STATE_DIR)
rm -f $(TF_EKS_STATE_DIR)/*.tf
cp -v $(TF_EKS_SRC_DIR)/*.tf $(TF_EKS_STATE_DIR)/.
$(TERRAFORM) -chdir=$(TF_EKS_STATE_DIR) init -upgrade
$(TERRAFORM) -chdir=$(TF_EKS_STATE_DIR) apply -auto-approve \
-var region=$(AWS_REGION) \
-var kubernetes_version=$(EKS_K8S_VERSION) || exit 1
rm -f $(TF_EKS_STATE_DIR)/*.tfvars
.PHONY: deploy-workload
deploy-workload: set-vault-license ## Deploy the workload to the EKS cluster
@mkdir -p $(TF_DEPLOY_STATE_DIR)
ifeq ($(VAULT_ENTERPRISE), true)
## ensure that the license is *not* emitted to the console
@echo "vault_license = \"$(_VAULT_LICENSE)\"" > $(TF_DEPLOY_STATE_DIR)/license.auto.tfvars
endif
rm -f $(TF_DEPLOY_STATE_DIR)/*.tf
cp -v $(TF_DEPLOY_SRC_DIR)/*.tf $(TF_DEPLOY_STATE_DIR)/.
$(TERRAFORM) -chdir=$(TF_DEPLOY_STATE_DIR) init -upgrade
$(TERRAFORM) -chdir=$(TF_DEPLOY_STATE_DIR) apply -auto-approve || exit 1
rm -f $(TF_DEPLOY_STATE_DIR)/*.tfvars
.PHONY: destroy-eks
destroy-eks: ## Destroy the EKS cluster
$(TERRAFORM) -chdir=$(TF_EKS_STATE_DIR) destroy -auto-approve \
-var region=$(AWS_REGION) \
-var kubernetes_version=$(EKS_K8S_VERSION) || exit 1