-
Notifications
You must be signed in to change notification settings - Fork 170
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
[RDR] Enable ACM observability for DR monitoring dashboard on RHACM console #9646
Conversation
name: thanos-object-storage | ||
receiveStorageSize: 100Gi | ||
ruleStorageSize: 1Gi | ||
storageClass: thin-csi-odf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This value should be configurable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
0b7a1ea
to
1c694b1
Compare
333a385
to
68a227f
Compare
68a227f
to
4015270
Compare
6ed9c17
to
1040496
Compare
bfd5839
to
241b545
Compare
988b98d
to
9c15351
Compare
7b47d36
to
e2d0945
Compare
Passed here- https://url.corp.redhat.com/d200c31 |
ocs_ci/deployment/deployment.py
Outdated
logger.info( | ||
"Creating thanos.yaml needed for ACM observability after passing required params" | ||
) | ||
run_cmd(f"oc create -f {thanos_data_yaml.name}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run_cmd is a deprecated form of exec_cmd, we need to change replace it here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
ocs_ci/deployment/deployment.py
Outdated
""" | ||
|
||
acm_observability_status = bool( | ||
run_cmd( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run_cmd is a deprecated form of exec_cmd, we need to change replace it here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
ocs_ci/deployment/deployment.py
Outdated
multiclusterobservability_data_yaml.name, | ||
) | ||
|
||
run_cmd(f"oc create -f {multiclusterobservability_data_yaml.name}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run_cmd is a deprecated form of exec_cmd, we need to change replace it here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
ocs_ci/deployment/deployment.py
Outdated
logger.info( | ||
"Add label for cluster-monitoring needed to fire VolumeSyncronizationDelayAlert on the Hub cluster" | ||
) | ||
run_cmd( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run_cmd is a deprecated form of exec_cmd, we need to change replace it here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
ocs_ci/deployment/deployment.py
Outdated
self.thanos_secret() | ||
|
||
logger.info("Whitelist RBD metrics by creating configmap") | ||
run_cmd(f"oc create -f {constants.OBSERVABILITYMETRICSCONFIGMAP_PATH}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run_cmd is a deprecated form of exec_cmd, we need to change replace it here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Signed-off-by: am-agrawa <[email protected]>
Signed-off-by: am-agrawa <[email protected]>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: am-agrawa, ebondare, keesturam, sidhant-agrawal The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/cherry-pick release-4.16 |
@am-agrawa: new pull request created: #10261 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Whitelist RDB metrics and enable ACM observability to access DR monitoring dashboard on the RHACM console.
Also fixes #9622