Skip to content

Commit

Permalink
feat: tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
bcochofel committed Apr 3, 2021
1 parent 18a6d1e commit 2266ccd
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/staging/gateway/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ resources:
- certificate.yaml
- alertmanager-vs.yaml
- prometheus-vs.yaml
- grafana-vs.yaml
- grafana-vs.yaml
- tracing-vs.yaml
19 changes: 19 additions & 0 deletions apps/staging/gateway/tracing-vs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: tracing-vs
spec:
gateways:
- istio-system/gateway
hosts:
- tracing.demo.lab
http:
- match:
- uri:
prefix: /
route:
- destination:
port:
number: 16686
host: tempo.observability.svc.cluster.local
35 changes: 34 additions & 1 deletion infrastructure/staging/kiali-operator-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,37 @@ spec:
strategy: "anonymous"
deployment:
accessible_namespaces:
- '**'
- '**'
istio_namespace: istio-system
external_services:
istio:
component_status:
enabled: true
components:
- app_label: istiod
is_core: true
- app_label: istio-ingressgateway
is_core: true
- app_label: istio-egressgateway
is_core: false
config_map_name: "istio"
istio_identity_domain: "svc.cluster.local"
istio_injection_annotation: "sidecar.istio.io/inject"
istio_sidecar_annotation: "sidecar.istio.io/status"
url_service_version: ""
prometheus:
url: "http://prometheus-operated.observability.svc.cluster.local:9090"
grafana:
enabled: false
auth:
insecure_skip_verify: true
type: "none"
in_cluster_url: "http://kube-prometheus-stack-grafana.observability.svc.cluster.local:80"
url: "https://grafana.demo.lab"
tracing:
enabled: true
auth:
insecure_skip_verify: true
type: "none"
in_cluster_url: "http://tempo.observability.svc.cluster.local:16686"
url: "https://tracing.demo.lab"

0 comments on commit 2266ccd

Please sign in to comment.