Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stacks/observability/grafana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ options:
datasources:
- name: Loki
type: loki
url: http://loki:3100
url: http://loki.{{ NAMESPACE }}.svc.cluster.local:3100
access: proxy
isDefault: false
jsonData:
tlsAuthWithCACert: false
- name: Tempo
type: tempo
url: http://tempo:3100
url: http://tempo.{{ NAMESPACE }}.svc.cluster.local:3200
access: proxy
isDefault: false
jsonData:
Expand Down
6 changes: 3 additions & 3 deletions stacks/observability/opentelemetry-collector-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ spec:
debug: {}
# verbosity: detailed
otlp/jaeger:
endpoint: jaeger-collector:4317
endpoint: jaeger.{{ NAMESPACE }}.svc.cluster.local:4317
tls:
insecure: true
otlp/tempo:
endpoint: tempo:4317
endpoint: tempo.{{ NAMESPACE }}.svc.cluster.local:4317
tls:
insecure: true
otlphttp/loki:
endpoint: http://loki:3100/otlp
endpoint: http://loki.{{ NAMESPACE }}.svc.cluster.local:3100/otlp
tls:
insecure: true
# auth:
Expand Down
6 changes: 3 additions & 3 deletions stacks/observability/opentelemetry-collector-sidecar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ spec:
debug: {}
# verbosity: detailed
otlp/jaeger:
endpoint: jaeger-collector:4317
endpoint: jaeger.{{ NAMESPACE }}.svc.cluster.local:4317
tls:
insecure: true
otlp/tempo:
endpoint: tempo:4317
endpoint: tempo.{{ NAMESPACE }}.svc.cluster.local:4317
tls:
insecure: true
otlphttp/loki:
endpoint: http://loki:3100/otlp
endpoint: http://loki.{{ NAMESPACE }}.svc.cluster.local:3100/otlp
tls:
insecure: true
# auth:
Expand Down
6 changes: 4 additions & 2 deletions stacks/stacks-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ stacks:
default: 3.4.0
- name: stackableReleaseVersion
description: The Stackable release to be used for the OpenSearch Dashboards image tag
default: 0.0.0-dev
# TODO (@NickLarsenNZ): Consider using renovate to bump the SDP versions at release branch time.
default: 26.3.0
observability:
description: >-
An observability stack with auto-injection of the opentelemetry-collector sidecar to receive traces/logs/metrics via OTLP, and send them to Jaeger/Tempo/Loki.
Expand Down Expand Up @@ -688,7 +689,8 @@ stacks:
default: 3.4.0
- name: stackableReleaseVersion
description: The Stackable release to be used for the OpenSearch Dashboards image tag
default: 0.0.0-dev
# TODO (@NickLarsenNZ): Consider using renovate to bump the SDP versions at release branch time.
default: 26.3.0
- name: jupyterLabToken
description: Token for JupyterLab UI access
default: adminadmin
Expand Down
Loading