diff --git a/README.md b/README.md index 3e110ee..0cac009 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,6 @@ | [grafana\_public\_url](#input\_grafana\_public\_url) | The URL incoming traffic from outisde the cluster uses to access grafana. | `string` | n/a | yes | | [grafana\_secret\_name](#input\_grafana\_secret\_name) | The secret in the holding the grafana admin password. | `string` | n/a | yes | | [istio\_namespace](#input\_istio\_namespace) | The namespace where istio has been deployed. | `string` | `"istio-system"` | no | -| [jaeger\_internal\_url](#input\_jaeger\_internal\_url) | The url within the cluster to use to query the jaegertracing. | `string` | n/a | yes | | [kiali\_application\_version](#input\_kiali\_application\_version) | The version of kiali to install | `string` | `"v1.73.0"` | no | | [kiali\_operator\_version](#input\_kiali\_operator\_version) | The version of kiali to install | `string` | `"1.73.0"` | no | | [namespace](#input\_namespace) | The namespace to create and into which the tools are deployed. | `string` | `"namespace"` | no | diff --git a/main.tf b/main.tf index 62c71c3..1085d46 100644 --- a/main.tf +++ b/main.tf @@ -26,7 +26,6 @@ resource "kubernetes_secret" "kiali_grafana" { } } - # data "kubernetes_namespace" "keycloak" { # count = local.have_keycloak ? 1 : 0 @@ -78,10 +77,10 @@ resource "helm_release" "kiali_operator" { name = "prometheusInClusterUrl" value = var.prometheus_internal_url } - set { - name = "jaegerInClusterUrl" - value = var.jaeger_internal_url - } + # set { + # name = "jaegerInClusterUrl" + # value = var.jaeger_internal_url + # } set { name = "grafanaInClusterUrl" value = var.grafana_internal_url diff --git a/variables.tf b/variables.tf index f5db24e..1bfd57c 100644 --- a/variables.tf +++ b/variables.tf @@ -51,10 +51,10 @@ variable "prometheus_internal_url" { type = string } -variable "jaeger_internal_url" { - description = "The url within the cluster to use to query the jaegertracing." - type = string -} +# variable "jaeger_internal_url" { +# description = "The url within the cluster to use to query the jaegertracing." +# type = string +# } # variable "public_hostname" { # description = "The hostname to use for kiali that will be publicly available"