Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Sysdig addon #1079

Merged
merged 15 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions modules/kubernetes-addons/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,14 @@ module "spark_k8s_operator" {
addon_context = local.addon_context
}

module "sysdig_agent" {
count = var.enable_sysdig_agent ? 1 : 0
source = "sysdiglabs/sysdig-addon/eksblueprints"
version = "0.0.1"
helm_config = var.sysdig_agent_helm_config
addon_context = local.addon_context
}

module "tetrate_istio" {
# source = "tetratelabs/tetrate-istio-addon/eksblueprints"
# version = "0.0.7"
Expand Down
13 changes: 13 additions & 0 deletions modules/kubernetes-addons/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,19 @@ variable "metrics_server_helm_config" {
default = {}
}

#-----------SYSDIG-------------
variable "enable_sysdig_agent" {
description = "Enable Sysdig Agent add-on"
type = bool
default = false
}

variable "sysdig_agent_helm_config" {
description = "Sysdig Helm Chart config"
type = any
default = null
manuelbcd marked this conversation as resolved.
Show resolved Hide resolved
}

#-----------TETRATE ISTIO-------------
variable "enable_tetrate_istio" {
description = "Enable Tetrate Istio add-on"
Expand Down