Skip to content

Commit

Permalink
no jaeger
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 11, 2025
1 parent 24448a5 commit d9e797a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
| <a name="input_grafana_public_url"></a> [grafana\_public\_url](#input\_grafana\_public\_url) | The URL incoming traffic from outisde the cluster uses to access grafana. | `string` | n/a | yes |
| <a name="input_grafana_secret_name"></a> [grafana\_secret\_name](#input\_grafana\_secret\_name) | The secret in the <grafana\_namespace> holding the grafana admin password. | `string` | n/a | yes |
| <a name="input_istio_namespace"></a> [istio\_namespace](#input\_istio\_namespace) | The namespace where istio has been deployed. | `string` | `"istio-system"` | no |
| <a name="input_jaeger_internal_url"></a> [jaeger\_internal\_url](#input\_jaeger\_internal\_url) | The url within the cluster to use to query the jaegertracing. | `string` | n/a | yes |
| <a name="input_kiali_application_version"></a> [kiali\_application\_version](#input\_kiali\_application\_version) | The version of kiali to install | `string` | `"v1.73.0"` | no |
| <a name="input_kiali_operator_version"></a> [kiali\_operator\_version](#input\_kiali\_operator\_version) | The version of kiali to install | `string` | `"1.73.0"` | no |
| <a name="input_namespace"></a> [namespace](#input\_namespace) | The namespace to create and into which the tools are deployed. | `string` | `"namespace"` | no |
Expand Down
9 changes: 4 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ resource "kubernetes_secret" "kiali_grafana" {
}
}


# data "kubernetes_namespace" "keycloak" {
# count = local.have_keycloak ? 1 : 0

Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d9e797a

Please sign in to comment.