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

[openstack-dev] [heat] [Release-job-failures] Tag of openstack/heat-agents failed

2018-01-30 Thread Sean McGinnis
To: release-job-failu...@lists.openstack.org Subject: [Release-job-failures] Tag of openstack/heat-agents failed Reply-To: openstack-dev@lists.openstack.org Build failed. - publish-openstack-releasenotes http://logs.openstack.org/26/267694b7d3537942ab270bc7e91df58a7b7a1073/tag/publish-openstack

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,

[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:

[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

[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

[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

[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

[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

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

[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

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

2017-06-27 Thread Mohit Taneja
: 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 template I get the >

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

2017-06-27 Thread Mohit Taneja
-- Forwarded message -- From: MOHIT TANEJA <mohittane...@gmail.com> 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 orche

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

2017-06-26 Thread Volodymyr Litovka
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 always

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

2017-06-26 Thread Eugen Block
o 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 always in progress state once heat st

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

2017-06-23 Thread Amit Kumar
t;: 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-te

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

2017-06-23 Thread Eugen Block
r any hints? Regards Eugen Zitat von Amit Kumar <ebiib...@gmail.com>: 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/soft

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

2017-06-23 Thread Ignazio Cassano
gt; > 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 >

[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

[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

[Openstack-operators] [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

[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

[Openstack-operators] [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

[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 -

[Openstack-operators] Openstack Heat https links problems upgrading to Newton

2017-04-13 Thread Saverio Proto
Hello ops, if anyone is interested I have problems with Heat and the Newton upgrade. I sent an email about this here: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115412.html If anyone already faced this issue any help would be appreciated ! thank you Saverio

[Openstack] [Heat] Customize server names in AutoScalingGroup

2017-04-10 Thread Phil Clay
date 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/heat/common/short_id.py#L41-L58)

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:

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

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

[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

[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},

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

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

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'@'%' \

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 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

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

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

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.

[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,

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

[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-dev] [heat][stable] Fwd: [Openstack-stable-maint] Stable check of openstack/heat failed

2016-11-30 Thread Rabi Mishra
-heat-docs-mitaka. We decided not to fix it for liberty(to be EOL tagged). > Begin forwarded message: > > *From: *"A mailing list for the OpenStack Stable Branch test reports." < > openstack-stable-ma...@lists.openstack.org> > *Subject: **[Openstack-stable-maint] S

[openstack-dev] [heat][stable] Fwd: [Openstack-stable-maint] Stable check of openstack/heat failed

2016-11-30 Thread Ihar Hrachyshka
rg> > Subject: [Openstack-stable-maint] Stable check of openstack/heat failed > Date: 30 November 2016 at 07:17:02 GMT+1 > To: openstack-stable-ma...@lists.openstack.org > Reply-To: openstack-dev@lists.openstack.org > > Build failed. > > - periodic-heat-docs-liberty

Re: [openstack-dev] [Release-job-failures] Release of openstack/heat failed

2016-11-21 Thread Tony Breeds
On Tue, Nov 22, 2016 at 03:40:02AM +, jenk...@openstack.org wrote: > Build failed. > > - heat-docs-ubuntu-xenial > http://logs.openstack.org/71/71a4e63a6cf159a4e5e814a609eafaf5b447cf88/release/heat-docs-ubuntu-xenial/4f407d9/ > : FAILURE in 3m 10s This is a known issue for heat It's being

[openstack-dev] [heat] Jenkins Openstack Heat Plugin

2016-09-22 Thread FREDERIC GILLOUARD
infrastructure. This plugin transforms Jenkins as an orchestrator to provide infrastructure as code through the Heat API. https://wiki.jenkins-ci.org/display/JENKINS/Openstack+Heat+Plugin Best regards, Frédéric Gillouard -- Ce message et toutes les pieces jointes (ci-apres le "message&q

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

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

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:

[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

[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.

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

[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-dev] [heat][requirements] Re: [Openstack-stable-maint] Stable check of openstack/heat failed

2016-08-01 Thread Ethan Lynn
Hi Tony, patch https://review.openstack.org/#/c/347634/ for master branch is merged, patch for mitaka https://review.openstack.org/#/c/347637/ and for liberty https://review.openstack.org/#/c/347639/ are

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:

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, >>

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

[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:

Re: [openstack-dev] [heat][requirements] Re: [Openstack-stable-maint] Stable check of openstack/heat failed

2016-07-27 Thread Tony Breeds
On Wed, Jul 27, 2016 at 02:20:38PM +0800, Ethan Lynn wrote: > Hi Tony, > I submit a patch to use upper-constraints for review, > https://review.openstack.org/#/c/347639/ > . Let’s wait for the feedback > and results. Thanks. I see that you have

Re: [openstack-dev] [heat][requirements] Re: [Openstack-stable-maint] Stable check of openstack/heat failed

2016-07-27 Thread Ihar Hrachyshka
master: https://github.com/openstack/heat/blob/master/tox.ini#L9 Ihar __ OpenStack Development Mailing List (not for usage questions) Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe http://lists.opensta

Re: [openstack-dev] [heat][requirements] Re: [Openstack-stable-maint] Stable check of openstack/heat failed

2016-07-27 Thread Ethan Lynn
Hi Tony, I submit a patch to use upper-constraints for review, https://review.openstack.org/#/c/347639/ . Let’s wait for the feedback and results. Best Regards, Ethan Lynn xuanlangj...@gmail.com > On Jul 27, 2016, at 07:47, Tony Breeds

[openstack-dev] [heat][requirements] Re: [Openstack-stable-maint] Stable check of openstack/heat failed

2016-07-26 Thread Tony Breeds
On Tue, Jul 26, 2016 at 05:44:06AM +, A mailing list for the OpenStack Stable Branch test reports. wrote: > Build failed. > > - periodic-heat-docs-liberty > http://logs.openstack.org/periodic-stable/periodic-heat-docs-liberty/6835807/ > : SUCCESS in 10m 19s > -

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:

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

[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 <==

[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

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 <raghavendrachari.kams...@hpe.com> Cc: openstack@lists.openstack.org Subject: Re: [Openstack] heat

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 <

[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

[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

[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]

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,

[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:

Re: [Openstack] Heat create-stack fails.

2016-06-06 Thread Michael Van Der Beek
inal Message- From: Eugen Block [mailto:ebl...@nde.ag] Sent: Monday, June 6, 2016 3:04 PM To: Michael Van Der Beek <michael@antlabs.com> Cc: openstack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. Hi Michael, your statements regarding the Openstack version don't

Re: [Openstack] Heat create-stack fails.

2016-06-06 Thread Eugen Block
egards, Michael -Original Message- From: Eugen Block [mailto:ebl...@nde.ag] Sent: Friday, June 3, 2016 6:25 PM To: Michael Van Der Beek <michael@antlabs.com> Cc: openstack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. So you have another config opt

Re: [Openstack] Heat create-stack fails.

2016-06-05 Thread Michael Van Der Beek
com> 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 next failing option. Or yo

Re: [Openstack] Heat create-stack fails.

2016-06-05 Thread Michael Van Der Beek
<michael@antlabs.com> 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 next f

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Eugen Block
ossible. 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" status: 50

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Michael Van Der Beek
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 -Original Message-

Re: [Openstack] Heat create-stack fails.

2016-06-03 Thread Eugen Block
tack@lists.openstack.org Subject: Re: [Openstack] Heat create-stack fails. 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 <pshchelokovs..

Re: [Openstack] Heat create-stack fails.

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

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]

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

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

[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

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

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

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

[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

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: Pavlo

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

2016-05-10 Thread Pavlo Shchelokovskyy
; > > > Please check if you 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 > <magicb

  1   2   3   4   >