docs: Add Bottlerocket example (#1296)

Signed-off-by: Andrey Devyatkin <andrey.devyatkin@fivexl.io>
This commit is contained in:
Andrey Devyatkin
2021-05-19 21:17:18 +02:00
committed by GitHub
parent 06e9078bf4
commit 70f6150956
5 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
variable "k8s_version" {
description = "k8s cluster version"
default = "1.20"
type = string
}
variable "enable_admin_container" {
description = "Enable/disable admin container"
default = false
type = bool
}
variable "enable_control_container" {
description = "Enable/disable control container"
default = true
type = bool
}