Skip to content

Commit

Permalink
add :: Datadog 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Jan 31, 2024
1 parent 6762bc0 commit 4882d40
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions helm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ locals {
spot-handler-namespace = "spot-handler"
cert-manager-namespace = "cert-manager"
istio-namespace = "istio-system"

// Datadog
datadog-name = "datadog"
datadog-version = "1.0.0"
datadog-namespace = "datadog"

}

module "argocd" {
Expand Down Expand Up @@ -86,3 +92,12 @@ module "karpenter" {
iam_role_arn = module.eksv2.iam_role_arn
cluster_endpoint = module.eksv2.cluster_endpoint
}

module "datadog" {
source = "./modules/helm"
name = local.datadog-name
namespace = local.datadog-namespace
repository = local.xquare-repository
chart = local.datadog-name
chart_version = local.datadog-version
}

0 comments on commit 4882d40

Please sign in to comment.