<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Word 12 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:宋体;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"\@宋体";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:宋体;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="ZH-CN" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span lang="EN-US" style="font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D">Maybe you can see the information of HARestarter.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<div style="border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm">
<p class="MsoNormal"><b><span style="font-size:10.0pt">发件人<span lang="EN-US">:</span></span></b><span lang="EN-US" style="font-size:10.0pt"> Aaron Knister [mailto:aaron.knister@gmail.com]
<br>
</span><b><span style="font-size:10.0pt">发送时间<span lang="EN-US">:</span></span></b><span lang="EN-US" style="font-size:10.0pt"> 2014</span><span style="font-size:10.0pt">年<span lang="EN-US">6</span>月<span lang="EN-US">9</span>日<span lang="EN-US"> 23:15<br>
</span><b>收件人<span lang="EN-US">:</span></b><span lang="EN-US"> <openstack@lists.openstack.org><br>
</span><b>主题<span lang="EN-US">:</span></b><span lang="EN-US"> [Openstack] Heat stack instance health checks<o:p></o:p></span></span></p>
</div>
<p class="MsoNormal"><span lang="EN-US"><o:p> </o:p></span></p>
<div>
<div>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><span lang="EN-US">Hi Everyone,<o:p></o:p></span></p>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><span lang="EN-US">I instantiated a stack within Heat that contains a simple launch configuration and autoscaling group (template listed below). The stack came up and the instance started, however when I killed
 the instance (nova delete XXX) it wasn't restarted...on AWS if a CloudFormation instance gets killed it seems to be restarted. This is without me defining any health monitors. How can I achieve the same behavior with OpenStack?<o:p></o:p></span></p>
</div>
<p class="MsoNormal"><span lang="EN-US">Thanks!<br>
<br>
-Aaron<o:p></o:p></span></p>
<div>
<p class="MsoNormal"><span lang="EN-US"><br>
{<br>
  "AWSTemplateFormatVersion" : "2010-09-09",<br>
<br>
  "Resources" : {<br>
    "SimpleConfig": {<br>
        "Type": "AWS::AutoScaling::LaunchConfiguration",<br>
        "Properties": {<br>
            "ImageId": "804b7e07-7e15-4c45-93d5-6bed194c484a",<br>
            "SecurityGroups": [ "PantsDown" ],<br>
            "InstanceType": "m1.small"<br>
        }<br>
    },<br>
    "MyServerGroup": {<br>
        "Type": "AWS::AutoScaling::AutoScalingGroup",<br>
        "Properties": {<br>
            "VPCZoneIdentifier" : ["2b8be0fa-330d-4ba5-86f7-76b9e71c6a72"],<br>
            "AvailabilityZones" : ["nova"],<br>
            "DesiredCapacity" : 1,<br>
            "LaunchConfigurationName": {<br>
                "Ref": "SimpleConfig"<br>
            },<br>
            "MinSize": "1",<br>
            "MaxSize": "3"<br>
        }<br>
    }<br>
  }<br>
}<o:p></o:p></span></p>
</div>
</div>
</div>
</body>
</html>