Skip to content

Commit

Permalink
Create provider field in the tracing config (#679)
Browse files Browse the repository at this point in the history
* Create provider field in the tracing config

* typo
  • Loading branch information
josunect authored Sep 26, 2023
1 parent 1b7937d commit a204a5e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions crd-docs/cr/kiali.io_v1alpha1_kiali.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ spec:
in_cluster_url: ""
is_core: false
namespace_selector: true
provider: "jaeger"
# default: query_scope is empty
query_scope:
mesh_id: "mesh-1"
Expand Down
5 changes: 4 additions & 1 deletion crd-docs/crd/kiali.io_kialis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ spec:
description: "The URL used to query the Prometheus Server. This URL must be accessible from the Kiali pod. If empty, the default will assume Prometheus is in the Istio control plane namespace; e.g. `http://prometheus.<istio_namespace>:9090`."
type: string
tracing:
description: "Configuration used to access the Tracing (Jaeger) dashboards."
description: "Configuration used to access the Tracing (Jaeger or Tempo) dashboards."
type: object
properties:
auth:
Expand Down Expand Up @@ -903,6 +903,9 @@ spec:
namespace_selector:
description: "Kiali use this boolean to find traces with a namespace selector : service.namespace."
type: boolean
provider:
description: "The trace provider to get the traces from. Value must be one of: `jaeger` or `tempo`."
type: string
query_scope:
description: "A set of tagKey/tagValue settings applied to every Jaeger query. Used to narrow unified traces to only those scoped to the Kiali instance."
type: object
Expand Down
1 change: 1 addition & 0 deletions roles/default/kiali-deploy/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ kiali_defaults:
in_cluster_url: ""
is_core: false
namespace_selector: true
provider: "jaeger"
query_scope: {}
query_timeout: 5
url: ""
Expand Down

0 comments on commit a204a5e

Please sign in to comment.