Merge pull request #45771 from magreiner/fix-heatversion

Automatic merge from submit-queue

fix: required openstack heat version for conditions is 2016-10-14 / newton

This fix sets the required heat version to 2016-10-14.

In OpenStack heat the conditions statement was introduced in version 2016-10-14 | newton, accourding to: 
https://docs.openstack.org/releasenotes/heat/newton.html
and more specific:
https://docs.openstack.org/developer/heat/template_guide/hot_spec.html

The conditions are used to make the assignment of public ips / floating ips optional (added in commit 4eef540876). However this template is not compatible with OpenStack heat releases prior newton and produces the following error:

```
ERROR: Failed to validate: : resources.kube_minions: : "condition" is not a valid keyword inside a output definition
```

PR without a release note:
```release-note
NONE
```
This commit is contained in:
Kubernetes Submit Queue 2017-05-17 02:22:49 -07:00 committed by GitHub
commit 35e563d70c
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
heat_template_version: 2014-10-16
heat_template_version: 2016-10-14
description: >
Kubernetes cluster with one master and one or more worker nodes

View File

@ -1,4 +1,4 @@
heat_template_version: 2014-10-16
heat_template_version: 2016-10-14
description: >
This is a nested stack that defines a single Kubernetes minion, This stack is