2018-04-19 12:32:01 -0600
| received badge | ● Nice Question
(source)
|
2018-02-12 06:28:24 -0600
| received badge | ● Famous Question
(source)
|
2018-02-12 06:28:24 -0600
| received badge | ● Notable Question
(source)
|
2017-08-02 18:21:40 -0600
| received badge | ● Famous Question
(source)
|
2017-08-02 18:21:40 -0600
| received badge | ● Popular Question
(source)
|
2017-08-02 18:21:40 -0600
| received badge | ● Notable Question
(source)
|
2017-07-19 03:00:25 -0600
| commented question | How do I retrospectively apply a QOS policy to some in-use cinder volumes? Hi, did you get any workaround here? |
2017-06-01 10:37:46 -0600
| received badge | ● Popular Question
(source)
|
2017-05-30 10:25:46 -0600
| asked a question | nested yaml templates for stack create in python I have a yaml template (lets call it main.yaml) which calls another yaml template like below. the VM1.yaml template is a normal template that creates another stack. (It will be like a nested template) main.yaml resources:
VM1:
type: OS::Heat::Stack
properties:
template: {get_file: vm/VM1.yaml}
parameters:
name: { list_join: ["_", [ { get_param: 'OS::stack_name' }, "VM1"]] }
Below is the folder structure - StackCreation.py => this calls for stack create using MAIN_VM1_MOUNTED.yaml
- MAIN_VM1_MOUNTED.yaml
- vm/VM1.yaml
vm/parameter.yaml => this is a parameter file where I am passing the parameters. template_file = 'MAIN_VM1_MOUNTED.yaml'
template = open(template_file, 'r')
stack_name = 'HeenaStack' + sys.argv[5]
heat_parameters = open('vm/parameter.yaml')
temp_params = yaml.load(heat_parameters)
heat_parameters.close()
try:
#hc.stacks.create(stack_name=stack_name, template=template.read(), parameters=temp_params["parameters"])
stackCreate = hc.stacks.create(stack_name=stack_name, template=template.read(), parameters=temp_params["parameters"])
print("Stack Created successfully", "Stack ID:", str(hc.stacks.get(stack_name).id))
Whn I am running openstack stack create with this nested yaml templates, the stack gets created successfully. The same is not happening in python.
I am getting below error. Bad request : {'explanation': 'The server could not comply with the request since it is either malformed or otherwise incorrect.', 'code': 400, 'error': {'message': 'Property error: : resources.VM1.properties.template: : No content found in the "files" section for get_file path: C:/Users/xxx/PycharmProjects/xxx/vm/VM1.yaml', 'traceback': None, 'type': 'StackValidationFailed'}, 'title': 'Bad Request'
I dont understand what I need to do. |
2017-04-24 12:01:39 -0600
| received badge | ● Student
(source)
|
2017-03-15 15:44:05 -0600
| received badge | ● Famous Question
(source)
|
2017-02-22 13:52:25 -0600
| received badge | ● Notable Question
(source)
|
2017-01-27 02:44:38 -0600
| received badge | ● Popular Question
(source)
|
2017-01-23 02:33:19 -0600
| asked a question | error while deploying openstack-ansible newton I am following the guide http://docs.openstack.org/project-dep... When running the below playbook, I am getting an error openstack-ansible setup-hosts.yml
ERROR! Attempted to execute "/opt/openstack-ansible/playbooks/inventory/dynamic_inventory.py" as inventory script: Inventory script (/opt/openstack-ansible/playbooks/inventory/dynamic_inventory.py) had an execution error: Could not read data sources: '(['/etc/openstack_deploy', '/etc/openstack_deploy/conf.d'],)'. Any idea why this is happening? I have /etc/openstack_deploy folder as well $ cd /etc/openstack_deploy/
$ ls
ansible_facts env.d openstack_user_config.yml.aio openstack_user_config.yml.prod.example user_secrets.yml user_variables.yml.prod.example
conf.d openstack_user_config.yml openstack_user_config.yml.example openstack_user_config.yml.test.example user_variables.yml
|
2016-10-22 08:57:29 -0600
| received badge | ● Famous Question
(source)
|
2016-07-19 17:00:36 -0600
| received badge | ● Popular Question
(source)
|
2016-07-19 17:00:36 -0600
| received badge | ● Famous Question
(source)
|
2016-07-19 17:00:36 -0600
| received badge | ● Notable Question
(source)
|
2016-07-18 06:34:50 -0600
| asked a question | openstack python connect not working I am using below code to connect to Openstack with Python from libcloud.compute.types import Provider
from libcloud.compute.providers import get_driver
provider = get_driver(Provider.OPENSTACK)
conn = provider('admin',
'redhat',
ex_force_auth_url='https://192.168.217.142:5000/v2.0', # ( I have tried this without /v2.0 and with /v2.0/tokens as well but getting the same error)
ex_force_auth_version='2.0_password',
ex_tenant_name='admin',
ex_force_service_region='RegionOne')
But I am getting below error on images=conn.list_images() Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/site-packages/libcloud/compute/drivers/openstack.py", line 279, in list_images
self.connection.request('/images/detail').object, ex_only_active)
File "/usr/lib/python2.7/site-packages/libcloud/common/openstack.py", line 227, in request
raw=raw)
File "/usr/lib/python2.7/site-packages/libcloud/common/base.py", line 753, in request
action = self.morph_action_hook(action)
File "/usr/lib/python2.7/site-packages/libcloud/common/openstack.py", line 294, in morph_action_hook
self._populate_hosts_and_request_paths()
File "/usr/lib/python2.7/site-packages/libcloud/common/openstack.py", line 327, in _populate_hosts_and_request_paths
osa = osa.authenticate(**kwargs) # may throw InvalidCreds
File "/usr/lib/python2.7/site-packages/libcloud/common/openstack_identity.py", line 852, in authenticate
return self._authenticate_2_0_with_password()
File "/usr/lib/python2.7/site-packages/libcloud/common/openstack_identity.py", line 877, in _authenticate_2_0_with_password
return self._authenticate_2_0_with_body(reqbody)
File "/usr/lib/python2.7/site-packages/libcloud/common/openstack_identity.py", line 882, in _authenticate_2_0_with_body
method='POST')
File "/usr/lib/python2.7/site-packages/libcloud/common/base.py", line 851, in request
raise ssl.SSLError(str(e))
ssl.SSLError: ('[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:765)',)
I am getting the output otherwise glance image-list
--------------------------------------+--------+
| ID | Name |
+--------------------------------------+--------+
| 2badab24-0366-4097-8254-28dc3bf0eb9d | Cirros |
+--------------------------------------+--------+
|
2016-07-18 06:06:25 -0600
| answered a question | Why doesn't this libcloud app connect? Getting the same error. Has there been an answer to this? Is python or openstack version an issue? |
2016-07-12 05:43:00 -0600
| received badge | ● Notable Question
(source)
|
2016-06-13 09:19:08 -0600
| received badge | ● Popular Question
(source)
|
2016-05-30 05:13:16 -0600
| received badge | ● Famous Question
(source)
|
2016-05-29 20:36:35 -0600
| received badge | ● Famous Question
(source)
|
2016-05-26 09:08:13 -0600
| received badge | ● Notable Question
(source)
|
2016-05-26 07:36:55 -0600
| received badge | ● Popular Question
(source)
|
2016-05-26 05:10:27 -0600
| received badge | ● Notable Question
(source)
|
2016-05-26 05:10:27 -0600
| received badge | ● Popular Question
(source)
|
2016-05-25 09:46:43 -0600
| commented question | Openstack Networking issue. cannot ssh or ping the instances still trying but no luck it says port 22: Connection refused |
2016-05-25 09:44:51 -0600
| commented question | Openstack Networking issue. cannot ssh or ping the instances I have it
Egress IPv6 Any Any ::/0 -
Egress IPv4 Any Any 0.0.0.0/0 -
Ingress IPv4 ICMP Any 0.0.0.0/0 -
Egress IPv4 ICMP Any 0.0.0.0/0 -
Ingress IPv4 TCP 22 (SSH) 0.0.0.0/0 -
Ingress IPv4 TCP 80 (HTTP) - sec1
Ingress IPv4 TCP 443 (HTTPS) 0.0.0.0/0 |
2016-05-25 09:35:09 -0600
| commented answer | Ceilometer services missing Yes...I followed Mitaka guide and now I have all the services running. Thank you :) |
2016-05-25 07:09:45 -0600
| commented question | Error: Could not start Service[httpd]: Execution of '/usr/bin/systemctl start httpd' returned 1 I had to un install and reinstall httpd and the it worked |
2016-05-25 06:30:12 -0600
| asked a question | Ceilometer services missing I have below ceilometer services running but I am sure I am missing many other services. I tried installing those services but it said packages are already installed. There is nothing to do. == Ceilometer services ==
openstack-ceilometer-api: active
openstack-ceilometer-central: active
openstack-ceilometer-compute: active
openstack-ceilometer-collector: active
openstack-ceilometer-notification: active
I executed below command to install the modules but I get 'No package avail' yum install -y ceilometer-api ceilometer-collector ceilometer-agent-central ceilometer-agent-notification ceilometer-alarm-evaluator ceilometer-alarm-notifier python-ceilometerclient
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: ftp.iitm.ac.in
* extras: ftp.iitm.ac.in
* updates: ftp.iitm.ac.in
No package ceilometer-api available.
No package ceilometer-collector available.
No package ceilometer-agent-central available.
....
Also on running below command I am getting this kind of error ceilometer meter-list
HTTPConnectionPool(host='192.168.80.136', port=8042): Max retries exceeded with url: / (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x31ec350>: Failed to establish a new connection: [Errno 111] Connection refused
Any help is much appreciated. |
2016-05-25 05:29:02 -0600
| asked a question | Openstack Networking issue. cannot ssh or ping the instances I am not able to SSH/CURL/HTTP (or anything) to the instances running in my Openstack environment.
I have Mitaka Version running on a VM with below config. I have create bridged network. I want to ping these instances from my VM(controller) and I want the instances to ping each other. I am able to ping each other with private IP but not with floating IP. When I am trying to ping these instances form the controller(the openstack VM) I am not getting any response and SSH says connection refused on port 22. I am very new to openstack. And I really need to know what is wrong here.
Let me know if any other information is needed. ip a s lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master ovs-system state UP qlen 1000
link/ether 00:0c:29:59:72:b8 brd ff:ff:ff:ff:ff:ff
inet 192.168.80.136/24 brd 192.168.80.255 scope global eno16777736
valid_lft forever preferred_lft forever
inet6 fe80::20c:29ff:fe59:72b8/64 scope link
valid_lft forever preferred_lft forever
3: eno33554984: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:59:72:c2 brd ff:ff:ff:ff:ff:ff
inet 192.168.159.130/24 brd 192.168.159.255 scope global dynamic eno33554984
valid_lft 1143sec preferred_lft 1143sec
inet6 fe80::20c:29ff:fe59:72c2/64 scope link
valid_lft forever preferred_lft forever
4: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
link/ether ce:76:29:1d:bc:ce brd ff:ff:ff:ff:ff:ff
5: br-int: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
link/ether 6e:76:97:17:97:41 brd ff:ff:ff:ff:ff:ff
6: br-ex: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
link/ether 00:0c:29:59:72:b8 brd ff:ff:ff:ff:ff:ff
inet 192.168.80.136/24 brd 192.168.80.255 scope global br-ex
valid_lft forever preferred_lft forever
inet6 fe80::20c:29ff:fe59:72b8/64 scope link
valid_lft forever preferred_lft forever
7: br-eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
link/ether b6:e8:1a:90:6a:4a brd ff:ff:ff:ff:ff:ff
ovs-vsctl show [root@controller ~]# ovs-vsctl show
4d26879a-71d4-4ac5-841b-d3fe720584fa
Bridge br-int
fail_mode: secure
Port "qvoed47d803-ce"
tag: 2
Interface "qvoed47d803-ce"
Port "qvo96967a11-d3"
tag: 1
Interface "qvo96967a11-d3"
Port "tap98e25736-d0"
tag: 2
Interface "tap98e25736-d0"
type: internal
Port "int-br-eth1"
Interface "int-br-eth1"
type: patch
options: {peer="phy-br-eth1"}
Port "tap0a1552a6-c1"
tag: 2
Interface "tap0a1552a6-c1"
type: internal
Port "tap34bbe49a-ae"
tag: 2
Interface "tap34bbe49a-ae"
type: internal
Port "tap2b6950fb-25"
tag: 1
Interface "tap2b6950fb-25"
type: internal
Port "qvo6e721fd4-77"
tag: 2
Interface "qvo6e721fd4-77"
Port "qvo36b2b2b7-ad"
tag ... (more) |
2016-05-24 05:15:08 -0600
| asked a question | How can I add esxi hypervisor in openstack? I am using the basic setup of openstack (with packstack) on my laptop. By default I have qemu hypervisor added. I want to try and add ESXi hypervisor. Do I need a Vmware infrastructure for that? Do I need ESXi cluster? I just want to add one ESXi (I have RAM limitations) so that it appears in the hypervisor list of openstack. After that I want to see if I can launch instance on the top of that hypervisor. How can I achieve that? Can someone help me? P.S I am using Mitaka version. |
2016-05-24 03:50:00 -0600
| received badge | ● Enthusiast
|
2016-05-23 03:59:21 -0600
| received badge | ● Notable Question
(source)
|
2016-05-20 06:33:01 -0600
| asked a question | Mitaka horizon login issue Has anyone come across the login issue in Mitaka for the first time through the dashboard using admin creds?
I had to login to the dashboard using the default password given in the keystonerc_admin file. But changing the password in keystonerc_admin didnt work on the dashboard and gave issues. I had to login to the dashboard and change the password there. Same is the case with any other user that I create. I have to depend on dashboard to create the user and the password for that user.
Not sure if there is an issue from my end. |
2016-05-05 04:50:09 -0600
| received badge | ● Famous Question
(source)
|
2016-04-05 06:15:48 -0600
| received badge | ● Notable Question
(source)
|
2016-04-05 06:15:48 -0600
| received badge | ● Famous Question
(source)
|
2016-04-05 06:15:48 -0600
| received badge | ● Popular Question
(source)
|
2016-04-04 01:36:06 -0600
| received badge | ● Notable Question
(source)
|
2016-04-04 01:36:06 -0600
| received badge | ● Popular Question
(source)
|
2016-03-29 18:31:17 -0600
| asked a question | Error: Could not start Service[httpd]: Execution of '/usr/bin/systemctl start httpd' returned 1 Hi I am getting below error while installing openstack-packstack from answer file. I am unable to start httpd. Can anyone help me? Applying 192.168.72.152_cinder.pp
192.168.72.152_keystone.pp: [ ERROR ]
Applying Puppet manifests [ ERROR ]
ERROR : Error appeared during Puppet run: 192.168.72.152_keystone.pp
Error: Could not start Service[httpd]: Execution of '/usr/bin/systemctl start httpd' returned 1: Job for httpd.service failed because a timeout was exceeded. See "systemctl status httpd.service" and "journalctl -xe" for details.
You will find full trace in log /var/tmp/packstack/20160329-155117-MeMHLQ/manifests/192.168.72.152_keystone.pp.log
Please check log file /var/tmp/packstack/20160329-155117-MeMHLQ/openstack-setup.log for more information
Additional information:
* Time synchronization installation was skipped. Please note that unsynchronized time on server instances might be problem for some OpenStack components.
* Warning: NetworkManager is active on 192.168.72.152. OpenStack networking currently does not work on systems that have the Network Manager service enabled.
* File /root/keystonerc_admin has been created on OpenStack client host 192.168.72.152. To use the command line tools you need to source the file.
* NOTE : A certificate was generated to be used for ssl, You should change the ssl certificate configured in /etc/httpd/conf.d/ssl.conf on 192.168.72.152 to use a CA signed cert.
* To access the OpenStack Dashboard browse to https://192.168.72.152/dashboard .
Please, find your login credentials stored in the keystonerc_admin in your home directory.
* To use Nagios, browse to http://192.168.72.152/nagios username: nagiosadmin, password: ec59246a857f41d1
[root@controller ~]# systemctl status httpd
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Drop-In: /usr/lib/systemd/system/httpd.service.d
└─openstack-dashboard.conf
Active: failed (Result: timeout) since Tue 2016-03-29 16:07:32 PDT; 8min ago
Docs: man:httpd(8)
man:apachectl(8)
Process: 127772 ExecStartPre=/usr/bin/python /usr/share/openstack-dashboard/manage.py compress --force (code=exited, status=0/SUCCESS)
Process: 127539 ExecStartPre=/usr/bin/python /usr/share/openstack-dashboard/manage.py collectstatic --noinput --clear (code=exited, status=0/SUCCESS)
Main PID: 40566 (code=exited, status=0/SUCCESS)
Mar 29 16:07:00 controller python[127772]: ERROR:scss.ast:Function not found: twbs-font-path:1
Mar 29 16:07:32 controller python[127772]: Found 'compress' tags in:
Mar 29 16:07:32 controller python[127772]: /usr/share/openstack-dashboard/openstack_dashboard/templates/_stylesheets.html
Mar 29 16:07:32 controller python[127772]: /usr/share/openstack-dashboard/openstack_dashboard/templates/horizon/_conf.html
Mar 29 16:07:32 controller python[127772]: /usr/share/openstack-dashboard/openstack_dashboard/templates/horizon/_scripts.html
Mar 29 16:07:32 controller python[127772]: Compressing... done
Mar 29 16:07:32 controller python[127772]: Compressed 4 block(s) from 3 template(s).
Mar 29 16:07:32 controller systemd[1]: Failed to start The Apache HTTP Server.
Mar 29 16:07:32 controller systemd[1]: Unit httpd.service entered failed state.
Mar 29 16:07:32 controller systemd[1]: httpd.service failed.
|
2016-02-17 06:40:42 -0600
| received badge | ● Popular Question
(source)
|
2015-11-23 07:30:57 -0600
| asked a question | Unable to ping the gateway Hi, I am trying to install openstack. While I created the bridge file, I am not able to ping anything now except loopback address. Here are my config files ip a s
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master ovs-system state UP qlen 1000
link/ether 00:0c:29:1e:e3:64 brd ff:ff:ff:ff:ff:ff
inet 192.168.72.141/24 brd 192.168.72.255 scope global dynamic eno16777736
valid_lft 432sec preferred_lft 432sec
inet6 fe80::20c:29ff:fe1e:e364/64 scope link
valid_lft forever preferred_lft forever
3: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
link/ether 3e:b9:07:bb:ee:f5 brd ff:ff:ff:ff:ff:ff
4: br-ex: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
link/ether 00:0c:29:1e:e3:64 brd ff:ff:ff:ff:ff:ff
inet 192.168.72.137/24 brd 192.168.72.255 scope global br-ex
valid_lft forever preferred_lft forever
inet6 fe80::20c:29ff:fe1e:e364/64 scope link
valid_lft forever preferred_lft forever
5: br-int: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
link/ether 2a:58:be:b5:1d:45 brd ff:ff:ff:ff:ff:ff
6: br-eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
link/ether 1e:1e:de:c5:0b:46 brd ff:ff:ff:ff:ff:ff
cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
cat /etc/resolv.conf
# Generated by NetworkManager
search localdomain cloud9.com
nameserver 192.168.254.254
I have my another server configuration as controller node ip a s
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:83:cd:fe brd ff:ff:ff:ff:ff:ff
inet 192.168.72.142/24 brd 192.168.72.255 scope global dynamic eth1
valid_lft 1450sec preferred_lft 1450sec
inet6 fe80::20c:29ff:fe83:cdfe/64 scope link
valid_lft forever preferred_lft forever
I tried to make an eth1 ethernet card. but according to below status, I got it all wrong. ovs-vsctl show
1beba460-fe81-42c9-a69f-45a73c61d03d
Bridge br-ex
Port br-ex
Interface br-ex
type: internal
Port "eno16777736"
Interface "eno16777736"
Bridge br-int
fail_mode: secure
Port "int-br-eth1"
Interface "int-br-eth1"
type: patch
options: {peer="phy-br-eth1"}
Port br-int
Interface br-int
type: internal
Bridge "br-eth1"
Port "br-eth1"
Interface "br-eth1"
type: internal
Port "eth1"
Interface "eth1"
error: "could not ... (more) |
2015-11-20 07:23:26 -0600
| asked a question | Error during packstack installation keystone Hi, I am trying to install openstack using packstack but unable to because I get following error. Can someone please tell me what is going on here?? Applying Puppet manifests [ ERROR ]
ERROR : Error appeared during Puppet run: 192.168.72.137_keystone.pp
Error: Could not prefetch keystone_service provider 'openstack': Execution of '/ usr/bin/openstack service list --quiet --format csv --long' returned 1: An unexp ected error prevented the server from fulfilling your request. (HTTP 500) (Reque st-ID: req-29c9cd1b-b93f-457c-955b-75eb4467aba0)
You will find full trace in log /var/tmp/packstack/20151120-041101-NeLUPi/manife sts/192.168.72.137_keystone.pp.log
Please check log file /var/tmp/packstack/20151120-041101-NeLUPi/openstack-setup. log for more information
Additional information:
* Time synchronization installation was skipped. Please note that unsynchronized time on server instances might be problem for some OpenStack components.
* File /root/keystonerc_admin has been created on OpenStack client host 192.168.72.137. To use the command line tools you need to source the file.
The log file is something like this [root@localhost ~]# tail -20 /var/tmp/packstack/20151120-041101-NeLUPi/manifests/192.168.72.137_keystone.pp.log
Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_user_role[admin@admin]: Skipping because of failed dependencies
Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone::Resource::Service_identity[cinder]/Keystone_user[cinder]: Dependency Keystone_tenant[services] has failures: true
Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone::Resource::Service_identity[cinder]/Keystone_user[cinder]: Skipping because of failed dependencies
Notice: /Stage[main]/Nova::Keystone::Auth/Keystone::Resource::Service_identity[nova ec2 service, user nova_ec2]/Keystone_endpoint[RegionOne/nova_ec2]: Dependency Keystone_service[nova_ec2] has failures: true
Warning: /Stage[main]/Nova::Keystone::Auth/Keystone::Resource::Service_identity[nova ec2 service, user nova_ec2]/Keystone_endpoint[RegionOne/nova_ec2]: Skipping because of failed dependencies
Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone::Resource::Service_identity[cinderv2]/Keystone_endpoint[RegionOne/cinderv2]: Dependency Keystone_service[cinderv2] has failures: true
Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone::Resource::Service_identity[cinderv2]/Keystone_endpoint[RegionOne/cinderv2]: Skipping because of failed dependencies
Error: Execution of '/usr/bin/openstack service create --format shell compute --name nova --description Openstack Compute Service' returned 1: An unexpected error prevented the server from fulfilling your request. (HTTP 500) (Request-ID: req-216988a2-64f5-4d9b-9e86-9db2d37f38fc)
Error: /Stage[main]/Nova::Keystone::Auth/Keystone::Resource::Service_identity[nova service, user nova]/Keystone_service[nova]/ensure: change from absent to present failed: Execution of '/usr/bin/openstack service create --format shell compute --name nova --description Openstack Compute Service' returned 1: An unexpected error prevented the server from fulfilling your request. (HTTP 500) (Request-ID: req-216988a2-64f5-4d9b-9e86-9db2d37f38fc)
Notice: /Stage[main]/Nova::Keystone::Auth/Keystone::Resource::Service_identity[nova service, user nova]/Keystone_endpoint[RegionOne/nova]: Dependency Keystone_service[nova] has failures: true
Warning: /Stage[main]/Nova::Keystone::Auth/Keystone::Resource::Service_identity[nova service, user nova]/Keystone_endpoint[RegionOne/nova]: Skipping because of failed dependencies
Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone::Resource::Service_identity[neutron]/Keystone_user_role[neutron@services]: Dependency Keystone_tenant[services] has failures: true
Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone::Resource::Service_identity[neutron]/Keystone_user_role[neutron@services]: Dependency Keystone_role[admin] has failures: true
Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone::Resource::Service_identity[neutron]/Keystone_user_role[neutron@services]: Skipping because of failed dependencies
Notice: /Stage[main ... (more) |