Skip to content

Commit

Permalink
Add Jaeger independent of Hono
Browse files Browse the repository at this point in the history
  • Loading branch information
jk authored and jk committed Apr 6, 2021
1 parent 218d38a commit aeaf197
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# .tfstate files
*.tfstate
*.tfstate.*
.terraform.lock.hcl

# Crash log files
crash.log
Expand Down
24 changes: 24 additions & 0 deletions modules/container_deployment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,28 @@ resource "helm_release" "hono" {
name = "deviceRegistryExample.mongoDBBasedDeviceRegistry.mongodb.password"
value = "hono-secret"
}
}

resource "helm_release" "ingress-nginx" {
name = "ingress-nginx"

repository = "https://kubernetes.github.io/ingress-nginx"
chart = "ingress-nginx"
}

resource "helm_release" "jaeger-operator" {
name = "jaeger-operator"

repository = "https://jaegertracing.github.io/helm-charts"
chart = "jaeger-operator"

set {
name = "jaeger.create"
value = "true"
}

set {
name = "metadata.name"
value = "simple"
}
}

0 comments on commit aeaf197

Please sign in to comment.