k3s/tests/perf/agents/variables.tf

33 lines
709 B
Terraform
Raw Normal View History

2019-11-04 16:09:54 +00:00
variable "agent_node_count" {
2019-10-31 21:06:54 +00:00
description = "Number of nodes to run k3s agents on."
type = number
# default = 10
}
2019-11-04 16:09:54 +00:00
variable "agent_instance_type" {
2019-10-31 21:06:54 +00:00
type = string
default = "t3.2xlarge"
}
variable "extra_ssh_keys" {
type = list
default = []
description = "Extra ssh keys to inject into Rancher instances"
}
variable "k3s_version" {
default = "v0.9.1"
type = string
description = "Version of K3S to install"
}
variable "name" {
default = "k3s-loadtest"
type = string
description = "Name to identify this cluster"
}
2019-11-27 18:30:56 +00:00
variable "k3s_cluster_secret" {
type = string
description = "Cluster secret for k3s cluster registration"
}