The sahara project was marked inactive during this cycle[1]. Its project health has not been improved even at m-2 thus 2024.1 release will not be created for this project. The project is retired because of no interest/volunteer to maintain it[2]. [1] https://review.opendev.org/c/openstack/governance/+/899986 [2] https://review.opendev.org/c/openstack/governance/+/919374 Change-Id: If5a50258c3a9cba29c3f2202a640b5c3c1a8b0be
50 lines
1.8 KiB
Python
50 lines
1.8 KiB
Python
# Copyright (c) 2014 Mirantis Inc.
|
|
#
|
|
# 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 heat.common.i18n import _
|
|
from heat.engine.resources.openstack.heat import none_resource
|
|
from heat.engine import support
|
|
|
|
|
|
class SaharaCluster(none_resource.NoneResource):
|
|
"""A resource for managing Sahara clusters.
|
|
|
|
The Cluster entity represents a collection of VM instances that all have
|
|
the same data processing framework installed. It is mainly characterized by
|
|
a VM image with a pre-installed framework which will be used for cluster
|
|
deployment. Users may choose one of the pre-configured Cluster Templates to
|
|
start a Cluster. To get access to VMs after a Cluster has started, the user
|
|
should specify a keypair.
|
|
"""
|
|
|
|
support_status = support.SupportStatus(
|
|
version='23.0.0',
|
|
status=support.HIDDEN,
|
|
message=_('Sahara project was retired'),
|
|
previous_status=support.SupportStatus(
|
|
version='22.0.0',
|
|
status=support.DEPRECATED,
|
|
message=_('Sahara project was marked inactive'),
|
|
previous_status=support.SupportStatus(
|
|
version='5.0.0',
|
|
status=support.SUPPORTED
|
|
)))
|
|
|
|
|
|
def resource_mapping():
|
|
return {
|
|
'OS::Sahara::Cluster': SaharaCluster,
|
|
}
|