Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
aws: Add a knob to disable self-hosted kubelet
Browse files Browse the repository at this point in the history
This commit adds a boolean variable to controller config called
`disable_self_hosted_kubelet`.

Signed-off-by: Suraj Deshmukh <suraj@kinvolk.io>
  • Loading branch information
surajssd committed May 14, 2020
1 parent be81412 commit 2be6c79
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ module "bootkube" {
enable_aggregation = var.enable_aggregation

certs_validity_period_hours = var.certs_validity_period_hours

# Disable the self hosted kubelet
disable_self_hosted_kubelet = var.disable_self_hosted_kubelet
}
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,11 @@ variable "enable_aggregation" {
default = true
}

variable "disable_self_hosted_kubelet" {
description = "Disable the self hosted kubelet installed by default"
type = bool
}

# Certificates

variable "certs_validity_period_hours" {
Expand Down
Loading

0 comments on commit 2be6c79

Please sign in to comment.