Skip to content

Commit

Permalink
no jaeger
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 17, 2025
1 parent 2542ebd commit 9340e57
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 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 @@ -25,7 +25,6 @@ resource "kubernetes_secret" "kiali_grafana" {
}
}


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

Expand Down Expand Up @@ -87,10 +86,10 @@ resource "helm_release" "kiali_operator" {
name = "prometheus.url"
value = var.prometheus_internal_url
}
set {
name = "grafana.secretName"
value = local.grafana_secret_name
}
# set {
# name = "jaegerInClusterUrl"
# value = var.jaeger_internal_url
# }
set {
name = "grafana.passwordKey"
value = local.grafana_password_key
Expand Down
13 changes: 4 additions & 9 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,10 @@ variable "prometheus_internal_url" {
type = string
}

variable "tempo_internal_url" {
description = "The url within the cluster to use to query tempo tracing."
type = string
}

variable "tempo_datasource_id" {
description = "The UID of the created Tempo datasource"
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 9340e57

Please sign in to comment.