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

move to keystone v3 #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 cvp_checks/tests/test_cinder_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ def test_cinder_services(local_salt_client):
service_down = local_salt_client.cmd(
'keystone:server',
'cmd.run',
['. /root/keystonerc; cinder service-list | grep "down\|disabled"'],
['. /root/keystonercv3; cinder service-list | grep "down\|disabled"'],
expr_form='pillar')
cinder_volume = local_salt_client.cmd(
'keystone:server',
'cmd.run',
['. /root/keystonerc; cinder service-list | grep -c "volume"'],
['. /root/keystonercv3; cinder service-list | grep -c "volume"'],
expr_form='pillar')
backends_cinder = cinder_backends_info[cinder_backends_info.keys()[0]]
backends_num = len(backends_cinder.keys())
Expand Down
2 changes: 1 addition & 1 deletion cvp_checks/tests/test_nova_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def test_nova_services_status(local_salt_client):
result = local_salt_client.cmd(
'keystone:server',
'cmd.run',
['. /root/keystonerc; nova service-list | grep "down\|disabled" | grep -v "Forced down"'],
['. /root/keystonercv3; nova service-list | grep "down\|disabled" | grep -v "Forced down"'],
expr_form='pillar')

if not result:
Expand Down