Re: [Openstack] [HEAT] order in attributes list

2018-04-04 Thread Pavlo Shchelokovskyy
Hi, AFAIU the get_attr function does not use the values you've passed to Heat in the resource definition, instead it fetches their actual values from Neutron (basically making a 'port show' API call), and Heat does nothing wrt to ordering afterwards. Btw AFAIR this is exactly why heat requires a

[Openstack] [HEAT] order in attributes list

2018-04-03 Thread Volodymyr Litovka
Hi colleagues, I have the following HOT configuration of a port:   n1-wan:     type: OS::Neutron::Port     properties:   fixed_ips:     - { subnet: e-subnet1, ip_address: 51.x.x.x }     - { subnet: e-subnet2, ip_address: 25.x.x.x } when I try to extract these values in template usin

Re: [Openstack] [heat] AutoScalingGroup and dependents

2017-11-21 Thread Zane Bitter
On 19/11/17 11:27, Lars-Erik Helander wrote: I am using OS::Heat::AutoScalingGroup in the following type of scenario resources:    my_vm:   type: SOME_TEMPLATE_WITH_A_VM_CONNECTED_TO_MULTIPLE_NETWORKS   properties: networks: { get_attr: [my_networks, outputs_list, my_netw

[Openstack] [heat] AutoScalingGroup and dependents

2017-11-19 Thread Lars-Erik Helander
I am using OS::Heat::AutoScalingGroup in the following type of scenario resources: my_vm: type: SOME_TEMPLATE_WITH_A_VM_CONNECTED_TO_MULTIPLE_NETWORKS properties: networks: { get_attr: [my_networks, outputs_list, my_network] } my_networks: type: OS::Heat::AutoScalin

[Openstack] heat resume Vms and run from SNAPSHOT

2017-10-11 Thread Charls D. Chap
heat resume Vms and run from SNAPSHOT: I have a stack of VMs (nova servers). The commands i execute are the following: openstack stack create openstack stack suspend openstack stack snapshot create At this point stack_state is in status SNAPSHOT_COMPLETED and vms_state is in status SUSPENDED Ho

Re: [Openstack] [openstack-hpc] openstack heat multi tenant scenario

2017-10-11 Thread Charls D. Chap
___ > From: Charls D. Chap [chapcha...@gmail.com] > Sent: Tuesday, October 10, 2017 5:17 AM > To: openstack-...@lists.openstack.org; openstack@lists.openstack.org > Subject: [openstack-hpc] openstack heat multi tenant scenario > > Scenario: > -Domain

[Openstack] openstack heat multi tenant scenario

2017-10-10 Thread Charls D. Chap
Scenario: -DomainA (TenantA, TenantB) -TenantA(userA) -TenantB(userB) - A template which start OS:NOVA:SERVERS 1. Is it possible two run simultaneously the same openstack stack create command? 2. a. how can i specify that i want, in the first case, the VMs of the stack, beloging to TenantA and in

Re: [Openstack] [heat] Using value_specs

2017-09-20 Thread Zane Bitter
On 08/09/17 04:48, Lars-Erik Helander wrote: A number of resource types supports a ”value_specs” property. I have problem finding out valid vales for this property. I have tried various map values but whatever I try I get the message that the value is not allowed. How to find out the possible

[Openstack] [heat] default collectors

2017-09-13 Thread Volodymyr Litovka
Hi colleagues, when deploying VMs using Heat, os-collect-config automatically configured for three collectors: heat, ec2 and local. While I don't need for sure ec2, there is corresponding bug https://bugs.launchpad.net/tripleo/+bug/1669842 which suggests to remove unconditional adding of thi

[Openstack] [heat]

2017-09-11 Thread Lars-Erik Helander
I am trying to create a deployment scenario with the following characteristics: - Controllable via the Horizon Heat UI - Uses nested resource types The only way I have been able to do this is to create an external server where all nested templates are stored and either refere

[Openstack] [heat] Using value_specs

2017-09-08 Thread Lars-Erik Helander
A number of resource types supports a ”value_specs” property. I have problem finding out valid vales for this property. I have tried various map values but whatever I try I get the message that the value is not allowed. How to find out the possible value sets? /Lars _

Re: [Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-24 Thread Kaz Shinohara
Hi Lance, Good to hear, you could find the cause :) Regards, Kaz 2017-07-24 16:12 GMT+09:00 Lance Haig : > Hi Kaz, > > Thanks for responding. > > I found my mistake the Designate Resource requires that the name provided be > a FQDN > > I was just passing in the name. > > I should look like thi

Re: [Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-24 Thread Lance Haig
Hi Kaz, Thanks for responding. I found my mistake the Designate Resource requires that the name provided be a FQDN I was just passing in the name. I should look like this instance_record: type: OS::Designate::Record properties: data: { get_attr: [ instance, first_address ] }

Re: [Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-21 Thread Kaz Shinohara
Hi Lance, Just a quick question, have you tried "depends_on" ? Also looks the error what you got indicates your posted properties for "instance_record" includes not supported one. Regards, Kaz On Jul 22, 2017 1:19 AM, "Lance Haig" wrote: Hi, I have the following instance code server1: ty

[Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-21 Thread Lance Haig
Hi, I have the following instance code server1: type: OS::Nova::Server properties: name: Server1 image: { get_param: image } flavor: { get_param: flavor } key_name: { get_param: key_name } networks: - port: { get_resource: server1_port } and I am trying to create

Re: [Openstack] Openstack Heat/Orchestration Service - 500 Internal Server Error

2017-06-27 Thread Mohit Taneja
or any other input/advice in general then please drop me an email. Thanks & Regards, Mohit On 27 June 2017 at 14:16, Mohit Taneja wrote: > > > -- Forwarded message -- > From: MOHIT TANEJA > Date: Tue, Jun 27, 2017 at 11:34 AM > Subject: Openstack Heat/Orche

[Openstack] Fwd: Openstack Heat/Orchestration Service - 500 Internal Server Error

2017-06-27 Thread Mohit Taneja
-- Forwarded message -- From: MOHIT TANEJA Date: Tue, Jun 27, 2017 at 11:34 AM Subject: Openstack Heat/Orchestration Service - 500 Internal Server Error To: ochupry...@mirantis.com, skray...@mirantis.com, mkr1...@gmail.com Hi, When I try to orchestrate (create stack) using heat

Re: [Openstack] [heat] Heat::SoftwareDeployment not working

2017-06-26 Thread Volodymyr Litovka
taka using OpenStack-Ansible 13.3.13. Trying to use Heat::SoftwareDeployment resource similar to as described in: https://github.com/openstack/heat-templates/blob/master/hot/software-config/example-templates/example-script-template.yaml ; but is not working as expected. SoftwareDeployment resource is

Re: [Openstack] [heat] Heat::SoftwareDeployment not working

2017-06-26 Thread Eugen Block
twareDeployment resource similar to as described in: https://github.com/openstack/heat-templates/blob/master/hot/ software-config/example-templates/example-script-template.yaml ; but is not working as expected. SoftwareDeployment resource is always in progress state once heat stack is create

Re: [Openstack] [heat] Heat::SoftwareDeployment not working

2017-06-23 Thread Amit Kumar
r : Hi All, > > I have installed OpenStack Mitaka using OpenStack-Ansible 13.3.13. Trying > to use Heat::SoftwareDeployment resource similar to as described in: > https://github.com/openstack/heat-templates/blob/master/hot/ > software-config/example-templates/example-script-template.ya

Re: [Openstack] [heat] Heat::SoftwareDeployment not working

2017-06-23 Thread Eugen Block
t issue. Have you checked the heat logs for any hints? Regards Eugen Zitat von Amit Kumar : Hi All, I have installed OpenStack Mitaka using OpenStack-Ansible 13.3.13. Trying to use Heat::SoftwareDeployment resource similar to as described in: https://github.com/openstack/heat-templates/blob

Re: [Openstack] [heat] Heat::SoftwareDeployment not working

2017-06-23 Thread Ignazio Cassano
OpenStack Mitaka using OpenStack-Ansible 13.3.13. Trying > to use Heat::SoftwareDeployment resource similar to as described in: > https://github.com/openstack/heat-templates/blob/master/ > hot/software-config/example-templates/example-script-template.yaml ; but > is not working as expecte

[Openstack] [heat] Heat::SoftwareDeployment not working

2017-06-23 Thread Amit Kumar
Hi All, I have installed OpenStack Mitaka using OpenStack-Ansible 13.3.13. Trying to use Heat::SoftwareDeployment resource similar to as described in: https://github.com/openstack/heat-templates/blob/master/hot/software-config/example-templates/example-script-template.yaml ; but is not working as

[Openstack] [Heat][Openstack-Ansible] Heat Engine not able to connect to Aodh Service

2017-05-30 Thread Amit Kumar
Hi All, I have installed OpenStack Newton release using Ansible. I am trying Orchestration with HEAT template. Here is the HEAT template I am using: http://paste.openstack.org/show/610960/. OS::Ceilometer:Alarm resource creation is failing while HEAT stack creation is in progress. Here are the HE

[Openstack] [openstack][heat][openstack-telemetry][openstack-ansible] Heat engine unable to connect to Aodh service

2017-05-30 Thread Amit Kumar
Hi All, I have installed OpenStack Newton release using Ansible. I am trying Orchestration with HEAT template. Here is the HEAT template I am using: http://paste.openstack.org/show/610960/. OS::Ceilometer:Alarm resource creation is failing while HEAT stack creation is in progress. Here are the HE

[Openstack] [heat][cinder] How to manage my volumes ?

2017-04-27 Thread Lars-Erik Helander
I am struggling to find a solution given the following: - A cluster of two or more servers - Each server has a storage volume attached - If a server goes down (disappears) it should attach to the same (identical content) volume when it is re-created - Minim

[Openstack] [Heat] Customize server names in AutoScalingGroup

2017-04-10 Thread Phil Clay
ossible to get a RandomString to update when the server updates within an AutoScalingGroup?  This would allow #B to work. 3) Is it possible to get/use the id of the resource from within itself?  This would allow #C to work.  The shortId (https://github.com/openstack/heat/blob/master

Re: [Openstack] [heat] Fwd: newton heat stack glance error

2017-04-01 Thread Brian Rosmaita
Adding "heat" to the subject line. Heat people, I've responded to Ignazio on the operators' list [0], but you may have some helpful info. [0] (would link here, but can't find the April 2017 page in pipermail) Thread starts here: http://lists.openstack.org/pipermail/openstack-operators/2017-March

Re: [Openstack] [Heat] Conditions on resource properties

2017-03-23 Thread Lars-Erik Helander
Thanks, found the example in the documentation but I could not make my case to work. What if the values are more complex than strings, e.g. a list of maps, do anyone have an example of that? On 2017-03-22, 20:11, "Zane Bitter" wrote: On 22/03/17 07:45, Lars-Erik Helander wrote: > The

Re: [Openstack] [Heat] Conditions on resource properties

2017-03-22 Thread Zane Bitter
On 22/03/17 07:45, Lars-Erik Helander wrote: The Heat documentation states that conditions could be applied to resources, resource properties and output values. I have failed to set conditions on resource properties and I have found no examples. Anyone that has a working example? You'll want to

[Openstack] [Heat] Conditions on resource properties

2017-03-22 Thread Lars-Erik Helander
The Heat documentation states that conditions could be applied to resources, resource properties and output values. I have failed to set conditions on resource properties and I have found no examples. Anyone that has a working example? ___ Mailing list

[Openstack] [Heat] Dynamically create OS::Nova:Server "networks" property

2017-03-07 Thread Lars-Erik Helander
I have tried in numerous ways to compose a proper value for the “networks” property of OS::Nova::Server but with no success. Basically I have two “inputs” that together shall result in the complete networks lists, e.g. List1 : “[{port: foo1}, {port: foo2}]” List2 : “[{network: foo3}, {p

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-03 Thread Davide Panarese
If you’re using v2 authentication Domains are not enabled. Did you try to use v3 authentication?! I’m using keystone v3 (i follow mitaka install too) Let me know. Davide > On 02 Feb 2017, at 20:15, NareshA kumar wrote: > > Davide, > I have other services like cinder and tacker configured (tack

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-02 Thread NareshA kumar
Davide, I have other services like cinder and tacker configured (tacker is not working as it needs heat). Memcached server is working still authentication error is there. I followed http://docs.openstack.org/mitaka/install-guide-ubuntu/heat-install.html In keystone v2 we cant create domains as ment

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-02 Thread Davide Panarese
Hi, do you have other services or only heat configured?! Did you check if keystone store token properly? I had the same problem when my memcache token backend didn’t work. If not, it seems all correct. Did you follow openstack install official guide? Davide > On 02 Feb 2017, at 10:19, NareshA

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-02 Thread NareshA kumar
Dear Davide, Below are the steps I have followed to configure heat in kilo. Please let me know if I am missing something here. mysql -u root -p CREATE DATABASE heat; GRANT ALL PRIVILEGES ON heat.* TO 'heat'@'localhost' \ IDENTIFIED BY 'heat'; GRANT ALL PRIVILEGES ON heat.* TO 'heat'@'%' \ ID

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-01 Thread NareshA kumar
Davide, Yes I am using the heat credentials as you have mentioned. But still I am getting Authentication required error. Regards, NareshA. On Wed, Feb 1, 2017 at 4:01 PM, NareshA kumar wrote: > Davide, > Yes I am using the heat credentials as you have mentioned. But still I am > getting Authent

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-01 Thread Davide Panarese
If you use heat creadential for token request it works? export OS_AUTH_URL=https://identity.cncloud.com:5000/v2.0 export OS_REGION_NAME=RegionOne export OS_USERNAME=heat export OS_TENANT_NAME=services export OS_PASSWORD=heat keystone token-get Davide >

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-01 Thread NareshA kumar
I have associated heat user to services tenant and gave it a admin role. keystone user-role-list --user heat --tenant services +--+---+--+--+ |id| name |

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-02-01 Thread Davide Panarese
Could you debug heat api call with heat —debug stack-list? Did you associate heat user to service tenant and give it admin role? Davide > On 31 Jan 2017, at 19:54, NareshA kumar wrote: > > Hi, > I am installing heat in kilo with keystone v2 APIs. As per document I have > configured the endpoint

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-01-31 Thread NareshA kumar
George, Do you mean credentials used for heat? How to identify heat in keystone. Can you please explain this part? Regards, NareshA On 01-Feb-2017 2:16 AM, "George Shuklin" wrote: Try to identify youself against keystone with those credentials to if you can get token. Use OS_* variables for th

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-01-31 Thread George Shuklin
Try to identify youself against keystone with those credentials to if you can get token. Use OS_* variables for this. On 01/31/2017 09:48 PM, NareshA kumar wrote: George, I have created heat user and [keystoneauth] section looks like, [keystone_authtoken] # Complete public Identity API endpo

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-01-31 Thread NareshA kumar
George, I have created heat user and [keystoneauth] section looks like, [keystone_authtoken] # Complete public Identity API endpoint. (string value) auth_uri = https://identity.cncloud.com:5000/v2.0 identity_url = https://identity.cncloud.com:35357 #memcached_servers = controller:11211 auth_type

Re: [Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-01-31 Thread George Shuklin
On 01/31/2017 08:54 PM, NareshA kumar wrote: Hi, I am installing heat in kilo with keystone v2 APIs. As per document I have configured the endpoints and heat.conf. "heat stack-list" gives me Authentication required error. In heat-api.log I am seeing "Authorization failed for token" message. C

[Openstack] [Heat] Authentication required error in kilo with keystone v2 APIs

2017-01-31 Thread NareshA kumar
Hi, I am installing heat in kilo with keystone v2 APIs. As per document I have configured the endpoints and heat.conf. "heat stack-list" gives me Authentication required error. In heat-api.log I am seeing "Authorization failed for token" message. Can anyone help me solve this issue? Regards, Nares

Re: [Openstack] [Heat] Seeing the execution log of a HOT deployment

2016-12-01 Thread Nasir Mahmood
Did you try to use heat -d . option for debug? On Dec 1, 2016 11:14 PM, "N Vivekanandan" wrote: > Hi Heat Team, > > > > Can you please let us know if there is a way to see the > > execution log of a HOT execution that is done via stack-create? > > > > We would like to know which REST APIs w

[Openstack] [Heat] Seeing the execution log of a HOT deployment

2016-12-01 Thread N Vivekanandan
Hi Heat Team, Can you please let us know if there is a way to see the execution log of a HOT execution that is done via stack-create? We would like to know which REST APIs were executed on openstack services as part of that HOT deployment (and which REST APIs failed with what status code) etc..

Re: [Openstack] [Heat] Heat Index Number

2016-08-21 Thread Turbo Fredriksson
On Aug 21, 2016, at 1:14 AM, Brent Troge wrote: > i was hoping there was an index tracker for the heat stack as well. "the heat stack"? What do you mean? You can create EVERYTHING from Heat. A set of rules that creates this is called the "stack".. Such as a Designate domain with records, Nova p

Re: [Openstack] [Heat] Heat Index Number

2016-08-20 Thread Brent Troge
yeah the resource group %index% i am aware of. i was hoping there was an index tracker for the heat stack as well. On Sat, Aug 20, 2016 at 1:02 PM, Turbo Fredriksson wrote: > On Aug 20, 2016, at 6:30 PM, Brent Troge wrote: > > > Is there an internal variable that I can poll to expose the curren

Re: [Openstack] [Heat] Heat Index Number

2016-08-20 Thread Turbo Fredriksson
On Aug 20, 2016, at 6:30 PM, Brent Troge wrote: > Is there an internal variable that I can poll to expose the current > index/interation of a heat stack ? %index% But only for ResourceGroups. AutoScalingGroups don't have one :(. Example: name: { list_join: ['-', [ { get_param: 'OS::stack_nam

[Openstack] [Heat] Heat Index Number

2016-08-20 Thread Brent Troge
Is there an internal variable that I can poll to expose the current index/interation of a heat stack ? I know resource group has an internal variable to track the current group index/iteration, but wondering if heat has something simlar. ___ Mailing list

[Openstack] [heat] Errors to be propagated as ReST http response

2016-08-12 Thread Soumik Samanta
In case of any heat error due to either bad template or error from the nova/neutron, the heat client returns a description indicating the cause of the error. However, if ReST API is used, only 500 Internal Server Error response is returned and the consumer has no clue of the cause of the error. Th

Re: [Openstack] Heat template - retrieving a ports ID?

2016-08-02 Thread Turbo Fredriksson
On Aug 2, 2016, at 11:28 AM, Turbo Fredriksson wrote: > outputs: >port: > value: { get_attr: [port, port_id] } > description: The port ID If I try to use (the more obvious) value: { get_resource: port } I get: Value must be a string which I assume is because it's empty (i.

[Openstack] Heat template - retrieving a ports ID?

2016-08-02 Thread Turbo Fredriksson
Looking at http://docs.openstack.org/developer/heat/template_guide/openstack.html#OS::Neutron::FloatingIP I see that one of the attributes ('exports'?) is: port_id ID of the port associated with this IP. However, when trying to use that in an output: outputs: port: value: {

Re: [Openstack] Heat template - get port ID of 'external' instance

2016-08-01 Thread Turbo Fredriksson
Dang! Never mind. I was sure I've tried a 'string' type as the input to volume, but apparently not.. Changing that, now it works. -- Choose a job you love, and you will never have to work a day in your life. ___ Mailing list: http://lists.openstack.org

Re: [Openstack] Heat template - get port ID of 'external' instance

2016-08-01 Thread Turbo Fredriksson
On Aug 1, 2016, at 4:41 PM, Turbo Fredriksson wrote: >> You actually need to explicitly export the attributes you want as outputs >> from the instance.yaml template, just as you defined parameters to accept >> the property values. This seems to mostly working, but i'm not sure how to 'export'

Re: [Openstack] Heat template - get port ID of 'external' instance

2016-08-01 Thread Turbo Fredriksson
On Aug 1, 2016, at 3:53 PM, Zane Bitter wrote: > BTW I really wouldn't recommend using the OS:: namespace for your own custom > types. Thanx. I'll change that 'eventually' :). >> floating_network_id: physical >> # port_id: { get_attr: [admin, networks, { get_param: network }, 0, >> p

Re: [Openstack] Heat template - get port ID of 'external' instance

2016-08-01 Thread Zane Bitter
On 31/07/16 10:39, Turbo Fredriksson wrote: I've created a environment file: resource_registry: "OS::Nova::Server::Instance": "https://raw.githubusercontent.com/FransUrbo/Openstack-Bayour.COM/master/instance.yaml"; BTW I really wouldn't recommend using the OS:: namespace for your own c

[Openstack] Heat template - get port ID of 'external' instance

2016-07-31 Thread Turbo Fredriksson
I've created a environment file: resource_registry: "OS::Nova::Server::Instance": "https://raw.githubusercontent.com/FransUrbo/Openstack-Bayour.COM/master/instance.yaml"; I then create an instance from the template: admin_floating: type: OS::Neutron::FloatingIP description: LDAP

Re: [Openstack] Heat stack create

2016-07-21 Thread Turbo Fredriksson
On Jul 21, 2016, at 4:01 PM, Cavalcante, Franciraldo X wrote: > You need to create the cloudformation endpoint. Thanx. -- There are no dumb questions, unless a customer is asking them. - Unknown ___ Mailing list: http://lists.openstack.org/cgi-bin/ma

Re: [Openstack] Heat stack create

2016-07-21 Thread Cavalcante, Franciraldo X
Hey Turbo, You need to create the cloudformation endpoint. Here is a link that shows how to do it: Regards, \Franza On 7/21/16, 7:21 AM, "Turbo Fredriksson" wrote: >I'm trying to setup Trove, to get DBaaS working. Th

[Openstack] Heat stack create

2016-07-21 Thread Turbo Fredriksson
I'm trying to setup Trove, to get DBaaS working. That uses Heat to do the orchestration. However, when trying to create a test stack in Heat http://docs.openstack.org/icehouse/install-guide/install/yum/content/heat-verify.html I get: - s n i p - ==> /var/log/heat/heat-engine.log <==

Re: [Openstack] [Heat] Heat-stack deletion and re-creation

2016-07-18 Thread ESWAR RAO
Hi All, Below are some observations: (1) Delete existing stack (2) Re-create heat stack again with same stack-name and with same template as part of some kind of healing But , when heat-engine is trying to create stack, there's again DELETE operation on same stack-name and creation is getting FA

[Openstack] [Heat] Heat-stack deletion and status

2016-07-15 Thread ESWAR RAO
Hi All, After deleting the heat-stack , I am polling until the stack is DELETED. I am following below way of polling until stack-get fails with HTTPNotFound Exception. Is there any other better way of checking whether stack is DELETED instead of catching exception. >>> from heatclient.client i

Re: [Openstack] heat stack failed , ConnectionError: Unable to establish connection: ('Connection aborted.', BadStatusLine("''", ))

2016-07-14 Thread Kamsali, Raghavendrachari
| enabled | up | 2016-07-15T00:30:08.00 |-| From: Brent Troge [mailto:brenttroge2...@gmail.com] Sent: Thursday, July 14, 2016 8:36 PM To: Kamsali, Raghavendrachari Cc: openstack@lists.openstack.org Subject: Re: [Openstack] heat stack failed , ConnectionError: Unable to

Re: [Openstack] heat stack failed , ConnectionError: Unable to establish connection: ('Connection aborted.', BadStatusLine("''", ))

2016-07-14 Thread Brent Troge
Does this only occur when creating a cinder volume ? If you just create a VM without creating volumes, what is the outcome ? At face value it looks like the cinder services are not available. cinder service-list On Thu, Jul 14, 2016 at 7:17 AM, Kamsali, Raghavendrachari < raghavendrachari.ka

[Openstack] [openstack][heat] heat stack failed , ConnectionError: Unable to establish connection: ('Connection aborted.', BadStatusLine("''", ))

2016-07-14 Thread Kamsali, Raghavendrachari
Hi, Am trying to launch heat stack , in the middle of the creating am getting error and stack failed . 2016-07-14 00:27:27.301 40107 INFO heat.engine.stack [-] Stack CREATE IN_PROGRESS (opnfv_cw): Stack CREATE started 2016-07-14 00:27:27.557 40107 INFO heat.engine.resource [-] creating Cinde

[Openstack] heat stack failed , ConnectionError: Unable to establish connection: ('Connection aborted.', BadStatusLine("''", ))

2016-07-14 Thread Kamsali, Raghavendrachari
Hi, Am trying to launch heat stack , in the middle of the creating am getting error and stack failed . 2016-07-14 00:27:27.301 40107 INFO heat.engine.stack [-] Stack CREATE IN_PROGRESS (opnfv_cw): Stack CREATE started 2016-07-14 00:27:27.557 40107 INFO heat.engine.resource [-] creating Cinder

[Openstack] heat: assign a port to instance without ip address

2016-06-15 Thread openstack
Dear lists, i setup an instance with heat, which is accessible per ssh. So fine so good. But this instance should have more network interfaces with dedicated virtual networks. i tried to assign a port to an instance without assigning an ip address. But neutron does this always beginning with

Re: [Openstack] [heat][nova][cinder]Mount a CD-ROM ISO to an instance

2016-06-10 Thread pnkk
Thank you both! Eugen, I thought of checking if we can use this iso as a block device by specifying the device type as cdom Pavlo, will try out to see how it works, thanks for the links Regards, Kanthi On Fri, Jun 10, 2016 at 1:45 PM, Pavlo Shchelokovskyy < pshchelokovs...@mirantis.com> wrote: >

Re: [Openstack] [heat][nova][cinder]Mount a CD-ROM ISO to an instance

2016-06-10 Thread Pavlo Shchelokovskyy
Hi, do you mean the configdrive? It is iso9660 filesystem image attached to vm on boot by Nova and containing the bootstrap configuration for VM and is used by cloud-init [0] You can force creation of configdrive for a particular instance via Heat template too [1] [0] http://docs.openstack.org/u

Re: [Openstack] [heat][nova][cinder]Mount a CD-ROM ISO to an instance

2016-06-09 Thread Eugen Block
Hi, mount a cdrom iso to a instance during boot time along with the actual image. do you mean to mount an iso when creating an instance or when an existing instance is booting? If you have an existing instance you can attach a previously created volume (from that ISO) to your instance, and

[Openstack] [heat][nova][cinder]Mount a CD-ROM ISO to an instance

2016-06-09 Thread pnkk
Hi, Can you please suggest a way to mount a cdrom iso to a instance during boot time along with the actual image. That iso has the bootstrap configuration needed for the VM. Regards, Kanthi ___ Mailing list: http://lists.openstack.org/cgi-bin/mailman/l

Re: [Openstack] Heat create-stack fails.

2016-06-06 Thread Michael Van Der Beek
to reverse that now. Regards, Michael -Original Message- From: Eugen Block [mailto:ebl...@nde.ag] Sent: Monday, June 6, 2016 3:04 PM To: Michael Van Der Beek Cc: openstack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. Hi Michael, your statements regarding the Ope

Re: [Openstack] Heat create-stack fails.

2016-06-06 Thread Eugen Block
basic working system. Regards, Michael -Original Message- From: Eugen Block [mailto:ebl...@nde.ag] Sent: Friday, June 3, 2016 6:25 PM To: Michael Van Der Beek Cc: openstack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. So you have another config option you have to

Re: [Openstack] Heat create-stack fails.

2016-06-05 Thread Michael Van Der Beek
stack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. So you have another config option you have to provide for all relevant services. Either you do this step by step changing one file after another and watch the logs to see the next failing option. Or you scan through the install gui

Re: [Openstack] Heat create-stack fails.

2016-06-05 Thread Michael Van Der Beek
25 PM To: Michael Van Der Beek Cc: openstack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. So you have another config option you have to provide for all relevant services. Either you do this step by step changing one file after another and watch the logs to see the ne

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Eugen Block
the Nova API log if possible. 2016-06-03 17:23:59.312 12059 INFO nova.osapi_compute.wsgi.server [req-b8f7ce5b-8db8-402d-b9bc-3e55d7c4a360 6b7fa6d27fc046dc8e991c25aa4a01c8 fd3a0ca3acf14106b4f45adaa8b0f0f8 - - -] 10.20.1.71 "POST /v2/fd3a0ca3acf14106b4f45adaa8b0f0f8/servers HTTP/1.1" statu

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Michael Van Der Beek
3 17:23:59.312 12059 INFO nova.osapi_compute.wsgi.server [req-b8f7ce5b-8db8-402d-b9bc-3e55d7c4a360 6b7fa6d27fc046dc8e991c25aa4a01c8 fd3a0ca3acf14106b4f45adaa8b0f0f8 - - -] 10.20.1.71 "POST /v2/fd3a0ca3acf14106b4f45adaa8b0f0f8/servers HTTP/1.1" status: 500 len: 465 time: 0.5185332 -

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Eugen Block
s the problem on the controller? Is the auth_type required in the nova.conf on the controller? Regards, Michael -Original Message- From: Eugen Block [mailto:ebl...@nde.ag] Sent: Friday, June 3, 2016 3:38 PM To: Michael Van Der Beek Cc: openstack@lists.openstack.org Subject: Re: [Open

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Michael Van Der Beek
controller? Regards, Michael -Original Message- From: Eugen Block [mailto:ebl...@nde.ag] Sent: Friday, June 3, 2016 3:38 PM To: Michael Van Der Beek Cc: openstack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. Hi Michael, in addition to Pavlo's answer I just wante

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Eugen Block
Hi Michael, in addition to Pavlo's answer I just wanted to add what I use as auth_type, referring to the Mitaka guide the value is: auth_type = password Regards, Eugen Zitat von Pavlo Shchelokovskyy : Hi Michael, you should consult the docs for "keystoneauth" library [0], that is actuall

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Pavlo Shchelokovskyy
Hi Michael, you should consult the docs for "keystoneauth" library [0], that is actually using these options to construct an authentificated client. It supports quite a number of auth plugins (that's what you specify as auth_type), each having specific other options. [0] http://docs.openstack.org

Re: [Openstack] Heat create-stack fails.

2016-06-02 Thread Michael Van Der Beek
Hi Eugen, For some reason, I'm not getting any email from this list. My mailserver doesn't even show any attempts from the list server. Anyway, the install guide does not specify what the auth_plugin is suppose to be. By default auth_plugin is depreciated. # Authentication type to load (unknown

Re: [Openstack] Heat create-stack fails.

2016-06-02 Thread Eugen Block
Hi, I'm just guessing, but maybe you didn't change the auth_plugin in nova.conf on compute node? Regards, Eugen Zitat von Michael Van Der Beek : Hi All, Sorry to trouble you guys. I've been following the install guide found at http://docs.openstack.org/juno/install-guide/install/yum/conte

[Openstack] Heat create-stack fails.

2016-06-02 Thread Michael Van Der Beek
Hi All, Sorry to trouble you guys. I've been following the install guide found at http://docs.openstack.org/juno/install-guide/install/yum/content/ch_preface.html I've gotten everything to work except the Orchestra. When I do this. [root@controller nova]# heat stack-create -f /root/test-stack.ym

Re: [Openstack] Openstack Heat for normal users?

2016-05-17 Thread Pavlo Shchelokovskyy
Hi Florian, great to hear that your problem is solved. As I pointed out, in Liberty you actually do not need the "heat_stack_owner" role at all. Just make sure that in your heat.conf the following option is set to empty value (which AFAIK is default in Liberty): # Subset of trustor roles to be d

Re: [Openstack] Openstack Heat for normal users?

2016-05-17 Thread Florian Rommel
Hi, thank you for pointing it out, apparently you need to have one of the roles applied in Liberty (which is what we used), but my demo user had both applied. If then chooses the lower level access, hence no access. Once I gave the user only heat_stack_owner i could deploy stacks within the norm

Re: [Openstack] Openstack Heat for normal users?

2016-05-17 Thread Pavlo Shchelokovskyy
Hi, are you sure that's "heat_stack_owner" and _not_ "heat_stack_user" role that is assigned to your normal, non-admin user? These are frequently confused, but there's a great deal of difference between them, the latter role indeed has almost no access to Heat API. Also, what OpenStack version ar

[Openstack] Openstack Heat for normal users?

2016-05-17 Thread Florian Rommel
Hi, all, most of our major hurdles are now gone with Openstack and it looks almost all great now.. Now the tricky part. I have gotten into HEAT and have written many templates and actually very complex ones too and I would love for normal users and other tenants to be able to use them but I ke

Re: [Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized to perform the requested action.

2016-05-10 Thread magicboiz
Hi I'm testing this simple template: https://github.com/openstack/heat-templates/blob/master/hot/autoscaling.yaml But please notice that Fuel Health Test autoscale also fails.so I guess those trusts and domains might not be correctly deployed... :( Regards J. De:

Re: [Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized to perform the requested action.

2016-05-10 Thread Pavlo Shchelokovskyy
rovided the *heat-stack-owner* and *admin > *privileges > to the tenant then try to spin up the Heat stack. > > > > Regards, > > Raghavendra Lad > > > > *From:* magicb...@hotmail.com [mailto:magicb...@hotmail.com > ] > *Sent:* Tuesday, May 10, 2016 4:30 P

Re: [Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized to perform the requested action.

2016-05-10 Thread magicb...@hotmail.com
u have provided the *heat-stack-owner* and *admin *privileges to the tenant then try to spin up the Heat stack. Regards, Raghavendra Lad *From:*magicb...@hotmail.com [mailto:magicb...@hotmail.com] *Sent:* Tuesday, May 10, 2016 4:30 PM *To:* openstack@lists.openstack.org *Subject:* [Op

Re: [Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized to perform the requested action.

2016-05-10 Thread magicb...@hotmail.com
t then try to spin up the Heat stack. Regards, Raghavendra Lad *From:*magicb...@hotmail.com [mailto:magicb...@hotmail.com] *Sent:* Tuesday, May 10, 2016 4:30 PM *To:* openstack@lists.openstack.org *Subject:* [Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized

Re: [Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized to perform the requested action.

2016-05-10 Thread raghavendra.lad
Subject: [Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized to perform the requested action. Hi testing Openstack Mitaka (deployed with Mirantis FUEL 8.0), when testing Heat Autoscaling, I get this error: heat.engine.resource Forbidden: You are not authorized to

[Openstack] Heat autoscaling: heat.engine.resource Forbidden: You are not authorized to perform the requested action.

2016-05-10 Thread magicb...@hotmail.com
Hi testing Openstack Mitaka (deployed with Mirantis FUEL 8.0), when testing Heat Autoscaling, I get this error: /heat.engine.resource Forbidden: You are not authorized to perform the requested action./ Any ideas on what's going on? Thanks in advance. J ___

Re: [Openstack] [heat]Provides different stack quota to tenant

2016-05-08 Thread Clint Byrum
Excerpts from Sylvernass Arthas's message of 2016-05-08 05:33:13 -0700: > Hi, guys > > Now, all tenant share the public config "max_stacks_per_tenant" which > decides maximum number of stacks any one tenant may have active at one time, > the default value is 1000. > Should heat provides abili

[Openstack] [heat]Provides different stack quota to tenant

2016-05-08 Thread Sylvernass Arthas
Hi, guys Now, all tenant share the public config "max_stacks_per_tenant" which decides maximum number of stacks any one tenant may have active at one time, the default value is 1000. Should heat provides ability to set this config by different tenant? For example, in a enterprise, maybe tenan

[Openstack] Heat: error in templates related with JSON

2016-04-28 Thread magicb...@hotmail.com
Hi I've setup an small lab based on Liberty (FUEL 8.0), and started to test some heat-templates: /git clone https://github.com/openstack/heat-templates.git/ I've detected that all resources type "OS::Heat::SoftwareConfig" which have references to external files like

[Openstack] [Heat] Mitaka RC3 available

2016-03-31 Thread Thierry Carrez
-minute release candidate respin, this tarball will be formally released as the final "Mitaka" version on April 7th. You are therefore strongly encouraged to test and validate this tarball ! Alternatively, you can directly test the mitaka release branch at: http://git.openstack.org/cgit

  1   2   3   4   >