Comment 8 for bug 1319823

Revision history for this message
Aleksey Kasatkin (alekseyk-ru) wrote :

Nodes parameters were send to orchestrator on stop command and nodes were returned to bootstrap but there were no nodes in orchestrator's answer. Orchestrator's answer must contain list of nodes stopped.

To orchestrator:
2014-05-15 12:56:14.192 DEBUG [7f484dde5700] (__init__) RPC cast to orchestrator:
{
    "args": {
        "engine": {
            "url": "http://10.20.0.2:80/cobbler_api",
            "username": "cobbler",
            "password": "cobbler",
            "master_ip": "10.20.0.2"
        },
        "task_uuid": "0ed3948d-1409-4989-ba48-d02faea105a7",
        "stop_task_uuid": "020ba321-4f94-406f-af78-8a8e5a59b11a",
        "nodes": [
            {
                "uid": "4",
                "roles": [
                    "compute"
                ],
                "slave_name": "node-4"
            },
            {
                "uid": "3",
                "roles": [
                    "ceph-osd"
                ],
                "slave_name": "node-3"
            },
            {
                "uid": "5",
                "roles": [
                    "ceph-osd"
                ],
                "slave_name": "node-5"
            },
            {
                "uid": "2",
                "roles": [
                    "controller"
                ],
                "slave_name": "node-2"
            },
            {
                "uid": "1",
                "roles": [
                    "ceph-osd"
                ],
                "slave_name": "node-1"
            }
        ]
    },
    "respond_to": "stop_deployment_resp",
    "method": "stop_deploy_task",
    "api_version": "1.0"
}

From orchestrator:
2014-05-15 12:56:29.037 INFO [7f2a786dc700] (receiver) RPC method stop_deployment_resp received: {"status": "ready", "progress": 100, "task_uuid": "0ed3948d-1409-4989-ba48-d02faea105a7"}