Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Connect to Grafana using https from auto-provisioning sidecars #627

Merged
merged 3 commits into from
Apr 4, 2024
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* **Overall**

* **Metrics**

* [FIX] Connect to Grafana using https from auto-provisioning sidecar containers when TLS is enabled

* **Logging**
* [FIX] Corrected parser definition for Consul messages to eliminate ERROR/WARNING messages in Fluent Bit pod logs
* [CHANGE] Added parser/processing for Redis log messsages
Expand All @@ -14,7 +15,6 @@

* **Tracing**


## Version 1.2.23 (19MAR2024)
* **Overall**
* [CHANGE] Drop support for OpenShift 4.11; the minimum supported version of OpenShift is now 4.12.
Expand Down
7 changes: 7 additions & 0 deletions monitoring/tls/values-prom-operator-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,15 @@ grafana:
port: 3000
targetPort: 3000
sidecar:
dashboards:
reloadURL: "https://localhost:3000/api/admin/provisioning/dashboards/reload"
env:
REQ_SKIP_TLS_VERIFY: true
datasources:
defaultDatasourceEnabled: false
reloadURL: "https://localhost:3000/api/admin/provisioning/datasources/reload"
env:
REQ_SKIP_TLS_VERIFY: true
"grafana.ini":
server:
protocol: https
Expand Down
Loading