* Add Rocky code name
* Add new HOT version for Rocky release
The new version is "2018-08-31" or "rocky".
* Add sem-ver flag
Sem-Ver: api-break
Change-Id: I261b6c28b8b7ee9e75ca9a895155a656ef82cd0d
This patch removes the API, the next set of patches in the
series would remove stack watch service and related
WatchRule implementation.
Change-Id: I8b0472be862907298c8da51f435b5d8b19610ec3
Partial-Bug: #1743707
Change [1] removed SSLMiddleware from code but
missed removal of oslo-config namespace, this
patch cleans it up.
[1] https://review.openstack.org/#/c/506900/
Change-Id: Ibeeece25a13706e3ce0b58dbb9746090d881b909
This adds the basic framework for registering and using default policy
rules. Rules should be defined and returned from a module in
heat/policies/, and then added to the list in heat/policies/__init__.py.
new policy wrapers `registered_identified_stack` and
`registered_policy_enforce` has been added for policy enforcement of
registered rules with same parameter as `identified_stack` and
`policy_enforce` besides set `is_registered_policy` flag to true.
This flag will decide to use new policy framework or not.
Now we can use `tox -e genpolicy` to check and generate policy file.
Change-Id: I7a232b3ea7ce0f69a5b7ffa278ceace7a76b666f
Partially-Implements: bp policy-in-code
In order to make it simpler to use the default
configuration files when deploying services
from source, the files are added to pbr's
data_files section so that the files are
included in the built wheels and therefore
deployed with the code. Packaging and deployment
tools can then more easily use the default files
if they wish to.
This pattern is already established with similar
files for neutron, designate and glance as has
been mentioned in the related bug report.
Change-Id: I1f3c9b2e27d44f28f0e649e2c96a1c3dc1da9ea6
Closes-Bug: #1718356
This corrects the entrypoint for heat_keystoneclient so that
oslo-config-generator can find it.
Change-Id: I366589c30626232771714394ed6d9353db6f04ba
Closes-Bug: #1711445
This reverts the commits f5c32ad8fda3d7dcee6e4f9447621cde6d0f8a0 and
14fdf72b000c82a80abb2587189dd7c6c7dfa0a0e.
The constraint never worked and the stuff to pass the template to
constraints (which was broken because we actually passed a
ResourceDefinition instead) is a pain. Just get rid of it rather than
fix it.
Change-Id: I4e1e787ad94ac1951f472ea066a9b1c9d3e03611
Closes-Bug: #1661403
New python-novaclient release has removed support for
network/image/floating_ip apis. This also means
nova-network support would also cease to exist after
this change.
Change-Id: Icbcf279c10720f99a0aed1a3aaaf3945c5442a8a
Closes-Bug: #1690936
New constraint for cluster template. This will be used in Cluster
resource to validate cluster template.
Partial-Bug: #1625757
Change-Id: I3ebcc06e3bc18633bc0b59dd8fce9b160e792382
The gating on python 3.4 is restricted to <= Mitaka. This is due
to the change from Ubuntu Trusty to Xenial, where only python3.5
is available. There is no need to continue to keep these settings.
Change-Id: Ic7b3fb3ff7b68cf280e36335aa9cacd644cc877a
Add policies property to cluster resource, policies will be attached
to cluster after cluster creation.
Change-Id: I272fbace441db76339bb6fb689e7f863cca49cad
Add few constraints for better stack validation.
Also, refactor old sahara constraint tests to
make everything more compact.
Change-Id: I7157fdc7077bddfda432a40f2597463ae23577bb
Designate supports the recordset from v2 api
and this patch adds support for recordset resource
plugin.
Change-Id: I5ace854ede4de3566445d1324c720cdcbb982aa2
implements: blueprint heat-designate-recordset-zone
This doesn't actually do anything, because any string is a valid queue name
(the queue will be created automatically when you interact with it), but it
at least allows us to annotate resource properties to indicate their type.
Change-Id: Iff321ca8d8565f48e04a80b05e3f9610a6346737
Oslo.incubator has become a history. This patch moves the crypto utils
functions to heat.common.crypt.
This also cleans up crypt.py to remove some unused methods.
Co-Authored-By: Rabi Mishra <ramishra@redhat.com>
Change-Id: I439612b37249f0cca041361e647e36643150c3d6
This patch implements a new heat-all command that can be used
to launch a single process version of the configured heat services.
The end user can control which services are launched by setting
'enabled_services' in the heat config file:
[heat_all]
enabled_services = api,engine
One use case for this launcher would be to launch a single process heat
using rpc_backend = fake, connection=sqlite://heat.db, to have access
to a minimal all in one Heat API/Engine for TripleO undercloud
deployments via Heat templates.
Change-Id: Ic35bdc455fe1397ac575522af0c8fca96dd95676
Add new template version `heat_template_version.2017-02-24`, and
add version `heat_template_version.ocata` refering to
`heat_template_version.2017-02-24`.
Change-Id: Ic89fc1a02988091dd2833cc50abee61edfabbb00
This allows heat_integrationtests tests to be run with the current
method *or* with the tempest runner. To run with tempest, configure
heat_integrationtests/heat_integrationtests.conf as before, then add
the following to the configured tempest.conf:
[service_available]
heat_plugin = True
Then run with tempest, for example
tempest run --regex heat_integrationtests
The next step will be for tempest runs to take configuration values
from tempest.conf rather than heat_integrationtests.conf
blueprint tempest-plugin-support
Change-Id: I920a6616dbd79092d5bf9a8c4f48da2f94c0a326
This changes:
1. Support 'Conditions' for AWSTemplateFormatVersion: 2010-09-09
2. Support 'conditions' for heat_template_version: 2016-10-14
3. There is no need to add a new HeatTemplateFormatVersion template,
because we decide to support conditions in AWSTemplateFormatVersion
and heat_template_version: 2016-10-14, so remove the
HeatTemplateFormatVersion.2016-10-14
4. Move the definition of function 'equals' to hot/functions.py
5. Mark 'equals' as condition function which supported in conditions.
Change-Id: I2e7bdfa1c2052e75f35f2bd0003cdc170188d8b8
Blueprint: support-conditions-function