heat/heat/engine/resources/openstack/heat/ha_restarter.py
ricolin 7b56e0e008 Remove OS::Heat::HARestarter
The OS::Heat::HARestarter has been deprecated since Kilo. Now is the
time to eliminate support and hide it from the documentation.

This replaces it with a placeholder resource (like OS::Heat::None) and
marks it as hidden.

Change-Id: I56cd1f2d0b3323399ef02c3a0a05d79cc69af956
2018-01-29 08:59:00 +00:00

53 lines
2.2 KiB
Python

#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
from heat.common.i18n import _
from heat.engine.resources.openstack.heat import none_resource
from heat.engine import support
LOG = logging.getLogger(__name__)
class Restarter(none_resource.NoneResource):
support_status = support.SupportStatus(
status=support.HIDDEN,
version='10.0.0',
message=_('The HARestarter resource type has been removed. Existing '
'stacks containing HARestarter resources can still be '
'used, but the HARestarter resource will be a placeholder '
'that does nothing.'),
previous_status=support.SupportStatus(
status=support.DEPRECATED,
message=_('The HARestarter resource type is deprecated and will '
'be removed in a future release of Heat, once it has '
'support for auto-healing any type of resource. Note '
'that HARestarter does *not* actually restart '
'servers - it deletes and then recreates them. It also '
'does the same to all dependent resources, and may '
'therefore exhibit unexpected and undesirable '
'behaviour. Instead, use the mark-unhealthy API to '
'mark a resource as needing replacement, and then a '
'stack update to perform the replacement while '
'respecting the dependencies and not deleting them '
'unnecessarily.'),
version='2015.1'))
def resource_mapping():
return {
'OS::Heat::HARestarter': Restarter,
}