Activity log for bug #1517355

Date Who What changed Old value New value Message
2015-11-18 08:17:05 huangtianhua bug added bug
2015-11-18 08:17:39 huangtianhua heat: assignee huangtianhua (huangtianhua)
2015-11-19 01:47:05 huangtianhua summary stack update failed stack update failed: port still in use
2015-11-19 01:52:24 huangtianhua description 1. create a stack with template: ********************************** heat_template_version: 2015-04-30 resources: s1: type: OS::Nova::Server properties: flavor: 1 image: cirros-0.3.0-x86_64-disk networks: - port: {get_resource: s_port} - port: {get_resource: s_port2} name: testss s_port2: type: OS::Neutron::Port properties: network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26 s_port: type: OS::Neutron::Port properties: network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26 ********************************** 2. the stack create successful, to update the stack with template: ******************************************* heat_template_version: 2015-04-30 resources: s1: type: OS::Nova::Server properties: flavor: 1 image: cirros-0.3.0-x86_64-disk networks: - port: {get_resource: s_port} name: testss deletion_policy: Snapshot s2: type: OS::Nova::Server properties: flavor: 1 image: cirros-0.3.0-x86_64-disk networks: - port: {get_resource: s_port2} name: tes2 s_port2: type: OS::Neutron::Port properties: network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26 s_port: type: OS::Neutron::Port properties: network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26 *************************************** 3. the stack update failed, because the s2 create failed: port2 still in use 4. finally, we can find that port2 detached from s1 Because there is no dependence between s1 and s2, so they update in parallel. I think add the dependence to s2 will fix this problem. 1. create a stack with template: ********************************** heat_template_version: 2015-04-30 resources:   s1:     type: OS::Nova::Server     properties:       flavor: 1       image: cirros-0.3.0-x86_64-disk       networks:       - port: {get_resource: s_port}       - port: {get_resource: s_port2}       name: testss   s_port2:     type: OS::Neutron::Port     properties:       network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26   s_port:     type: OS::Neutron::Port     properties:       network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26 ********************************** 2. the stack create successful, to update the stack with template: ******************************************* heat_template_version: 2015-04-30 resources:   s1:     type: OS::Nova::Server     properties:       flavor: 1       image: cirros-0.3.0-x86_64-disk       networks:       - port: {get_resource: s_port}       name: testss   s2:     type: OS::Nova::Server     properties:       flavor: 1       image: cirros-0.3.0-x86_64-disk       networks:       - port: {get_resource: s_port2}       name: tes2   s_port2:     type: OS::Neutron::Port     properties:       network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26   s_port:     type: OS::Neutron::Port     properties:       network: 3447dd80-14ef-4059-8ea6-35f4fd60ba26 *************************************** 3. the stack update failed, because the s2 create failed: port2 still in use 4. finally, we can find that port2 detached from s1 Because there is no dependence between s1 and s2, so they update in parallel. I think add the dependence to s2 will fix this problem.
2015-11-27 10:26:05 huangtianhua heat: importance Undecided High
2016-01-11 02:39:11 zhao heat: assignee huangtianhua (huangtianhua) zhao (hgsadjjh)
2016-01-11 03:38:41 zhao bug added subscriber zhao
2016-01-11 03:39:34 zhaozhilong heat: assignee zhao (hgsadjjh) zhaozhilong (zhaozhilong)
2016-01-11 03:40:38 zhaozhilong bug added subscriber zhaozhilong
2016-01-11 05:34:49 zhaozhilong heat: status New Confirmed
2016-01-11 07:44:20 zhaozhilong heat: status Confirmed In Progress
2016-02-05 03:14:19 zhaozhilong heat: assignee zhaozhilong (zhaozhilong)
2016-02-05 03:14:30 zhaozhilong heat: status In Progress Confirmed
2016-03-24 09:30:40 ashok reddy heat: assignee ashok reddy (ashokat258)
2016-05-26 08:51:43 ashok reddy heat: status Confirmed In Progress
2018-05-07 07:51:48 Rico Lin heat: milestone no-priority-tag-bugs