summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/controllers/daemon.py
blob: eeea5a326255541fc08d071b51d15834265d836f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-

from typing import Optional

from ..exceptions import DashboardException
from ..security import Scope
from ..services.exception import handle_orchestrator_error
from ..services.orchestrator import OrchClient, OrchFeature
from . import APIDoc, APIRouter, RESTController
from ._version import APIVersion
from .orchestrator import raise_if_no_orchestrator


@APIRouter('/daemon', Scope.HOSTS)
@APIDoc("Perform actions on daemons", "Daemon")
class Daemon(RESTController):
    @raise_if_no_orchestrator([OrchFeature.DAEMON_ACTION])
    @handle_orchestrator_error('daemon')
    @RESTController.MethodMap(version=APIVersion.EXPERIMENTAL)
    def set(self, daemon_name: str, action: str = '',
            container_image: Optional[str] = None):

        if action not in ['start', 'stop', 'restart', 'redeploy']:
            raise DashboardException(
                code='invalid_daemon_action',
                msg=f'Daemon action "{action}" is either not valid or not supported.')
        # non 'None' container_images change need a redeploy
        if container_image == '' and action != 'redeploy':
            container_image = None

        orch = OrchClient.instance()
        res = orch.daemons.action(action=action, daemon_name=daemon_name, image=container_image)
        return res