From 51fde08069b3b64b9a4d440e2475448f84b64f0d Mon Sep 17 00:00:00 2001 From: Chris Sibbitt Date: Tue, 6 Dec 2022 12:44:53 -0500 Subject: [PATCH] Update README to reflect new params file changes Should merge with https://github.com/infrawatch/osp-observability-ansible/pull/18 --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3aa5d55..e7b6e69 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,18 @@ openstack observability discover --stack-name=standalone Deploy prometheus: ``` -echo "prometheus_remote_write: ['http://someurl', 'http://otherurl']" > test_params.yaml -openstack observability setup prometheus_agent --config ./test_params.yaml +$ cat test_params.yaml +prometheus_remote_write: + stf: + url: https://default-prometheus-proxy-service-telemetry.apps.FAKE.ocp.cluster/api/v1/write + basic_user: internal + basic_pass: Pl4iNt3xTp4a55 + ca_cert: | + -----BEGIN CERTIFICATE----- + ABCDEFGHIJKLMNOPQRSTUVWXYZ + -----END CERTIFICATE----- + not-stf: + url: http://prometheus-rw.example.com/api/v1/write + +$ openstack observability setup prometheus_agent --config ./test_params.yaml ```