
Blueprint: https://airshipit.readthedocs.io/projects/specs/en/latest/specs/approved/k8s_update_node_labels_workflow.html This commit adds: 1. A new task action ''relabel_nodes'' added to update nodes labels 2.A new Kubernetes driver added for Kubernetes cluster interaction through Promenade. Change-Id: I37c2d7bfda4966d907556036bc2b343df451994c
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
# Copyright 2018 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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.
|
|
"""Generic driver for Kubernetes Interaction."""
|
|
|
|
import drydock_provisioner.objects.fields as hd_fields
|
|
import drydock_provisioner.error as errors
|
|
|
|
from drydock_provisioner.drivers.driver import ProviderDriver
|
|
|
|
|
|
class KubernetesDriver(ProviderDriver):
|
|
|
|
driver_name = "Kubernetes_generic"
|
|
driver_key = "Kubernetes_generic"
|
|
driver_desc = "Generic Kubernetes Driver"
|
|
|
|
def __init__(self, **kwargs):
|
|
super(KubernetesDriver, self).__init__(**kwargs)
|
|
|
|
self.supported_actions = [
|
|
hd_fields.OrchestratorAction.RelabelNode,
|
|
]
|
|
|
|
def execute_task(self, task_id):
|
|
task = self.state_manager.get_task(task_id)
|
|
task_action = task.action
|
|
|
|
if task_action in self.supported_actions:
|
|
task.success()
|
|
task.set_status(hd_fields.TaskStatus.Complete)
|
|
task.save()
|
|
return
|
|
else:
|
|
raise errors.DriverError("Unsupported action %s for driver %s" %
|
|
(task_action, self.driver_desc))
|