-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Remove unused version command #4249
Conversation
Codecov Report
|
Codecov Report
|
output, _, _ = get_subprocess_output(args, self.log) | ||
except Exception as e: | ||
raise Exception('Unable to run cmd=%s: %s' % (' '.join(args), str(e))) | ||
ceph_args = '{} --cluster {}'.format(ceph_args, ceph_cluster) |
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.
We're not running the version command anymore?
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.
No it didn't seem to do anything.
|
||
for sc in EXPECTED_SERVICE_CHECKS: | ||
aggregator.assert_service_check(sc, status=Ceph.OK, tags=EXPECTED_SERVICE_TAGS) | ||
aggregator.assert_service_check('ceph.overall_status', status=Ceph.OK, tags=EXPECTED_SERVICE_TAGS) |
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.
assert all metrics covered?
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.
Probably too many dynamic metrics, it's not in the integration tests either.
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.
Ok 🤷♀
This adds a new e2e test, turning the local environment into a docker one. This
also allows the check to run a command made of various parts.