final changes needed to get kitty working
Kitty cli client and horizon dashboard were not working. The endpoints had a v1 and tenant in them which was not working correctly. This change removed the v1 and tenant bits from the end point which fixed the UI and CLI. Implements: blueprint role-cloudkitty
This commit is contained in:
Michael Rice
committed by
Michael Rice
parent
525574f788
commit
52e56cc298
2 changed files with 5 additions and 5 deletions
@@ -72,11 +72,11 @@ cloudkitty_service_adminuri_proto: "{{ openstack_service_adminuri_proto | defaul
cloudkitty_service_internaluri_proto:"{{ openstack_service_internaluri_proto | default(cloudkitty_service_proto) }}"
cloudkitty_service_type:orchestration
cloudkitty_service_publicuri:"{{ cloudkitty_service_publicuri_proto }}://{{ external_lb_vip_address }}:{{ cloudkitty_service_port }}"
cloudkitty_service_publicurl:"{{ cloudkitty_service_publicuri }}/v1/%(tenant_id)s"
cloudkitty_service_publicurl:"{{ cloudkitty_service_publicuri }}/"
cloudkitty_service_adminuri:"{{ cloudkitty_service_adminuri_proto }}://{{ internal_lb_vip_address }}:{{ cloudkitty_service_port }}"
cloudkitty_service_adminurl:"{{ cloudkitty_service_adminuri }}/v1/%(tenant_id)s"
cloudkitty_service_adminurl:"{{ cloudkitty_service_adminuri }}/"
cloudkitty_service_internaluri:"{{ cloudkitty_service_internaluri_proto }}://{{ internal_lb_vip_address }}:{{ cloudkitty_service_port }}"
cloudkitty_service_internalurl:"{{ cloudkitty_service_internaluri }}/v1/%(tenant_id)s"
cloudkitty_service_internalurl:"{{ cloudkitty_service_internaluri }}/"
cloudkitty_service_program_name:cloudkitty-api
cloudkitty_service_processor_program_name:cloudkitty-processor
@@ -88,7 +88,7 @@
- name:Ensure cloudkitty service
keystone:
command:"ensure_service"
service_name:"CloudKitty"
service_name:"cloudkitty"
service_type:"rating"
login_user:"{{ keystone_admin_user_name }}"
login_password:"{{ keystone_auth_admin_password }}"
@@ -104,7 +104,7 @@
- name:Ensure cloudkitty endpoints
keystone:
command:"ensure_endpoint"
service_name:"CloudKitty"
service_name:"cloudkitty"
service_type:"rating"
region_name:"{{ service_region }}"
endpoint_list:
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.