k3s/tests/perf/scripts/config

35 lines
772 B
Plaintext
Raw Normal View History

2019-10-31 21:06:54 +00:00
## MAIN VARIABLES ##
####################
2019-11-04 16:09:54 +00:00
CLUSTER_NAME="loadtest-k3s"
DOMAIN_NAME=""
ZONE_ID=""
K3S_VERSION="v0.11.0-alpha2"
EXTRA_SSH_KEYS="" # comma separated public keys
PRIVATE_KEY_PATH="~/.ssh/id_rsa"
DEBUG=1
2019-10-31 21:06:54 +00:00
2019-11-04 16:09:54 +00:00
## K3S DB VARIABLES ##
##########################
DB_ENGINE="postgres"
DB_INSTANCE_TYPE="db.m4.4xlarge"
DB_NAME="k3s"
DB_USERNAME="k3suser"
DB_PASSWORD="024d9442b3add64b7ef90655bc302cd8"
DB_VERSION=11.5
2019-10-31 21:06:54 +00:00
## K3S SERVER VARIABLES ##
##########################
2019-11-04 16:09:54 +00:00
SERVER_HA=1
SERVER_COUNT=3
2019-10-31 21:06:54 +00:00
SERVER_INSTANCE_TYPE="m5.2xlarge"
## PROMETHEUS SERVER VARIABLES ##
#################################
PROM_WORKER_NODE_COUNT=1
2019-11-04 16:09:54 +00:00
PROM_WORKER_INSTANCE_TYPE="m5.large"
2019-10-31 21:06:54 +00:00
## K3S AGENTS VARIABLES ##
##########################
AGENT_NODE_COUNT=100
2019-11-04 16:09:54 +00:00
AGENT_INSTANCE_TYPE="m5.large"