ONAP on Kubernetes on OpenStack
- Alexis de Talhouët
- Martin Ouimet
- Mandeep Khinda
Pre-requisite
The supported versions are as follows:
ONAP Release | Rancher | Kubernetes | Helm | Kubectl | Docker |
---|---|---|---|---|---|
Amsterdam | 1.6.10 | 1.7.7 | 2.3.0 | 1.7.7 | 1.12.x |
Beijing | 1.6.14 | 1.8.10 | 2.8.2 | 1.8.10 | 17.03-ce |
Casablanca | 1.6.18 | 1.8.10 | 2.9.1 | 1.8.10 | 17.03-ce |
This is the amsterdam branch supporting DCAEGEN2 which has different rancher/helm/kubernetes/docker version levels
see ONAP on Kubernetes#HardwareRequirements
Installing Docker/Rancher/Helm/Kubectl
Run the following script as root to install the appropriate versions of Docker and Rancher. Rancher will install Kubernetes and helm, the script will install the helm and kubectl clients.
Adding hosts to the kubernetes cluster is done through the rancher UI.
OOM-715 - Getting issue details... STATUS
https://gerrit.onap.org/r/#/c/32019/17/install/rancher/oom_rancher_setup.sh
Overall required resources:
Nbr VM | vCPUs | RAM (GB) | Disk (GB) | Swap (GB) | Floating IPs | |
---|---|---|---|---|---|---|
Rancher | 1 | 2 | 4 | 40 | - | - |
Kubernetes | 1 | 8 | 80-128 | 100 | 16 | - |
DCAE | 15 | 44 | 88 | 880 | - | 15 |
Total | 17 | 54 | 156-220 | 1020 | 16 | 15 |
Number | Flavor | size (vCPU/RAM/HD) | |
---|---|---|---|
1 | m1.small | 1/2/20 | |
7 (pg, doks, dokp, cnsl, orcl) | m1.medium | 2/4/40 | |
7 (cdap) | m1.large | 8/8/80 | |
0 | m1.xlarge | 8/16/160 | |
1(oom) | m1.xxlarge (oom) | 12/64/160 | |
1(oom) | m1.medium | 2/4/40 |
Below is the HEAT portion of the setup in OOM - minus the 64G OOM and 4G OOM-Rancher VM's
Setup infrastructure
Rancher
Create a plain Ubuntu VM in your cloud infrastructure.
The following specs are enough for Rancher
VCPUs 2 RAM 4Go Taille 40Go Setup Rancher 1.6.10 (amsterdam branch only) by running this command:
docker run -d -p 8880:8080 rancher/server:v1.6.10
Navigate to Rancher UI
http://<rancher-vm-ip>:8880
- Setup basic access control: Admin → Access Control
- Install Openstack as machine driver: Admin → Machine Drivers
We're now all set to create our Kubernetes host.
Kubernetes on Rancher
see related ONAP on Kubernetes#QuickstartInstallation
Video describing all the steps
- Create an environment
- Default → Managed Environments
- Click Add Environment
- Fill in the Name and the Description
- Select Kubernetes as Environment Template
- Click Create
- Create an API key: API → Keys
- Click Add Account API Key
- Fill in the Name and the Description
- Click Create
- Backup the Access Key and the Secret Key
- Retrieve your environment ID
- Navigate to the previously created environment
In the browser URL, you should see the following, containing your <env-id>
http://<rancher-vm-ip>:8080/env/<env-id>/kubernetes/dashboard
Create the Kubernetes host on OpenStack.
Using Rancher API
Make sure to fill in the placeholder as follow:{API_ACCESS_KEY}: The API KEY created in the previous step
{API_SECRET_KEY}: The API Secret created in the previous step
{OPENSTACK_INSTANCE}: The OpenStack Instance Name to give to your K8S VM
{OPENSTACK_IP}: The IP of your OpenStack deployment
{RANCHER_IP}: The IP of the Rancher VM created previously
{K8S_FLAVOR}: The Flavor to use for the kubernetes VM. Recommanded specs:VCPUs 8 RAM 64Go Taille 100Go Swap 16Go I added some swap because in ONAP, most of the app are not always active, most of them are idle, so it's fine to let the host store dirty page in the swap memory.
{UBUNTU_1604}: The Ubuntu 16.04 image
{PRIVATE_NETWORK_NAME}: a private network
{OPENSTACK_TENANT_NAME}: Openstack tenant
{OPENSTACK_USERNAME}: Openstack username
{OPENSTACK_PASSWORD}: OpenStack passwordcurl -u "{API_ACCESS_KEY}:{API_SECRET_KEY}" \ -X POST \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "hostname":"{OPENSTACK_INSTANCE}", "engineInstallUrl":"wget https://raw.githubusercontent.com/rancher/install-docker/master/1.12.6.sh", "openstackConfig":{ "authUrl":"http://{OPENSTACK_IP}:5000/v3", "domainName":"Default", "endpointType":"adminURL", "flavorName":"{K8S_FLAVOR}", "imageName":"{UBUNTU_1604}", "netName":"{PRIVATE_NETWORK_NAME}", "password":"{OPENSTACK_PASSWORD}", "sshUser":"ubuntu", "tenantName":"{OPENSTACK_TENANT_NAME}", "username":"{OPENSTACK_USERNAME}"} }' \ 'http://{RANCHER_IP}:8080/v2-beta/projects/{ENVIRONMENT_ID}/hosts/'
- Doing it manually
- Create a VM in your VIM with the appropriate specs (see point above)
Provision it with docker: You can find the proper version of Docker to install here (for Rancher 1.6): http://rancher.com/docs/rancher/v1.6/en/hosts/#supported-docker-versions
- Go in Rancher, Infrastructure → Hosts and click the button Add Host. "Copy, paste, and run the command below to register the host with Rancher:”
- Let's wait a few minutes until it's ready.
- Get your kubectl config
- Click Kubernetes → CLI
- Click Generate Config
Copy/Paste in your host, under
~/.kube/config
If you have multiple Kubernetes environments, you can give it a different name, instead of config. Then reference all your kubectl config in your bash_profile as follow
KUBECONFIG=\ /Users/adetalhouet/.kube/k8s.adetalhouet1.env:\ /Users/adetalhouet/.kube/k8s.adetalhouet2.env:\ /Users/adetalhouet/.kube/k8s.adetalhouet3.env export KUBECONFIG
Install kubectl
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.8.0/bin/linux/amd64/kubectl chmod +x ./kubectl sudo mv ./kubectl /usr/local/bin/kubectl
Make your kubectl use this new environment
kubectl config use-context <rancher-environment-name>
After a little bit, your environment should be ready. To verify, use the following command
$ kubectl get pods --all-namespaces NAMESPACE NAME READY STATUS RESTARTS AGE kube-system heapster-4285517626-4dst0 1/1 Running 0 4m kube-system kube-dns-638003847-lx9f2 3/3 Running 0 4m kube-system kubernetes-dashboard-716739405-f0kgq 1/1 Running 0 4m kube-system monitoring-grafana-2360823841-0hm22 1/1 Running 0 4m kube-system monitoring-influxdb-2323019309-4mh1k 1/1 Running 0 4m kube-system tiller-deploy-737598192-8nb31 1/1 Running 0 4m
Deploy OOM
Video describing all the steps
We will basically follow this guide: http://onap.readthedocs.io/en/latest/submodules/oom.git/docs/oom_user_guide.html?highlight=oom
Clone OOM amsterdam branch
git clone -b amsterdam https://gerrit.onap.org/r/p/oom.git
- Prepare configuration
Edit the onap-parameters.yaml under
oom/kubernetes/config
Update (04/01/2018):
Since c/26645 is merged, you now have the ability to deploy DCAE from OOM.
You can disable DCAE deployment through the following parameters:set DEPLOY_DCAE=false
set disableDcae: true in the dcaegen2 values.yaml located under oom/kubernetes/dcaegen2/values.yaml.
To have endpoints registering to MSB, add your kubectl config token. The token can be found within the text you pasted from Rancher into ~/.kube/config. Past this token string into under kubeMasterAuthToken located at
oom/kubernetes/kube2msb/values.yaml
Create the config
In Amsterdam, the namespace, pass with the -n param, has to be onap.
Work is currently being done so this is configurable in Bejing.cd oom/kubernetes/config ./createConfig.sh -n onap
This step is creating the tree structure in the VM hosting ONAP to persist the data, along with adding the initial config data in there. In Amsterdam, this is hardcoded to the path /dockerdata-nfs/onap/
Work is being done so this is configurable in Bejing, see OOM-145 - Getting issue details... STATUSDeploy ONAP
In Amsterdam, the namespace, pass with the -n param, has to be onap.
Work is currently being done so this is configurable in Bejing.cd oom/kubernetes/oneclick ./createAll.bash -n onap
Update (04/01/2018):
Since c/26645 is merged, two new containers are being deployed, under the onap-dcaegen2 namespace, as shown in the following diagram.Deploying the dcaegen2 pod
The dcae-boostrap VM created in OpenStack will run the dcae-boostrap container, responsible for brigging up the whole DCAE stack. Its progress can be followed by tailing the logs of the docker container boot running in the VM. Bellow the full log output of a successful run.DCAE Bootstrap container logs Expand sourceroot@dcae-dcae-bootstrap:~# docker logs -f boot + PVTKEY=./key600 + cp ./config/key ./key600 + chmod 600 ./key600 + virtualenv dcaeinstall New python executable in /opt/app/installer/dcaeinstall/bin/python2 Also creating executable in /opt/app/installer/dcaeinstall/bin/python Installing setuptools, pkg_resources, pip, wheel...done. Running virtualenv with interpreter /usr/bin/python2 + source dcaeinstall/bin/activate ++ deactivate nondestructive ++ unset -f pydoc ++ '[' -z '' ']' ++ '[' -z '' ']' ++ '[' -n /bin/bash ']' ++ hash -r ++ '[' -z '' ']' ++ unset VIRTUAL_ENV ++ '[' '!' nondestructive = nondestructive ']' ++ VIRTUAL_ENV=/opt/app/installer/dcaeinstall ++ export VIRTUAL_ENV ++ _OLD_VIRTUAL_PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ++ PATH=/opt/app/installer/dcaeinstall/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ++ export PATH ++ '[' -z '' ']' ++ '[' -z '' ']' ++ _OLD_VIRTUAL_PS1= ++ '[' x '!=' x ']' +++ basename /opt/app/installer/dcaeinstall Collecting cloudify==3.4.0 ++ PS1='(dcaeinstall) ' ++ export PS1 ++ alias pydoc ++ '[' -n /bin/bash ']' ++ hash -r + pip install cloudify==3.4.0 Downloading cloudify-3.4.tar.gz (60kB) Collecting cloudify-plugins-common==3.4 (from cloudify==3.4.0) Downloading cloudify-plugins-common-3.4.tar.gz (72kB) Collecting cloudify-rest-client==3.4 (from cloudify==3.4.0) Downloading cloudify-rest-client-3.4.tar.gz Collecting cloudify-dsl-parser==3.4 (from cloudify==3.4.0) Downloading cloudify-dsl-parser-3.4.tar.gz (48kB) Collecting cloudify-script-plugin==1.4 (from cloudify==3.4.0) Downloading cloudify-script-plugin-1.4.tar.gz Collecting pyyaml==3.10 (from cloudify==3.4.0) Downloading PyYAML-3.10.tar.gz (241kB) Collecting argcomplete==1.1.0 (from cloudify==3.4.0) Downloading argcomplete-1.1.0-py2.py3-none-any.whl Collecting fabric==1.8.3 (from cloudify==3.4.0) Downloading Fabric-1.8.3-py2-none-any.whl (91kB) Collecting PrettyTable<0.8,>=0.7 (from cloudify==3.4.0) Downloading prettytable-0.7.2.zip Collecting colorama==0.3.3 (from cloudify==3.4.0) Downloading colorama-0.3.3.tar.gz Collecting jinja2==2.7.2 (from cloudify==3.4.0) Downloading Jinja2-2.7.2.tar.gz (378kB) Collecting itsdangerous==0.24 (from cloudify==3.4.0) Downloading itsdangerous-0.24.tar.gz (46kB) Collecting retrying==1.3.3 (from cloudify==3.4.0) Downloading retrying-1.3.3.tar.gz Collecting wagon==0.3.2 (from cloudify==3.4.0) Downloading wagon-0.3.2.tar.gz Collecting pika==0.9.14 (from cloudify-plugins-common==3.4->cloudify==3.4.0) Downloading pika-0.9.14.tar.gz (72kB) Collecting networkx==1.8.1 (from cloudify-plugins-common==3.4->cloudify==3.4.0) Downloading networkx-1.8.1.tar.gz (806kB) Collecting proxy_tools==0.1.0 (from cloudify-plugins-common==3.4->cloudify==3.4.0) Downloading proxy_tools-0.1.0.tar.gz Collecting bottle==0.12.7 (from cloudify-plugins-common==3.4->cloudify==3.4.0) Downloading bottle-0.12.7.tar.gz (69kB) Collecting requests==2.7.0 (from cloudify-rest-client==3.4->cloudify==3.4.0) Downloading requests-2.7.0-py2.py3-none-any.whl (470kB) Collecting requests_toolbelt (from cloudify-rest-client==3.4->cloudify==3.4.0) Downloading requests_toolbelt-0.8.0-py2.py3-none-any.whl (54kB) Collecting paramiko<1.13,>=1.10 (from fabric==1.8.3->cloudify==3.4.0) Downloading paramiko-1.12.4.tar.gz (1.1MB) Collecting markupsafe (from jinja2==2.7.2->cloudify==3.4.0) Downloading MarkupSafe-1.0.tar.gz Collecting six>=1.7.0 (from retrying==1.3.3->cloudify==3.4.0) Downloading six-1.11.0-py2.py3-none-any.whl Requirement already satisfied: wheel>=0.24.0 in ./dcaeinstall/lib/python2.7/site-packages (from wagon==0.3.2->cloudify==3.4.0) Collecting virtualenv>=12.1 (from wagon==0.3.2->cloudify==3.4.0) Downloading virtualenv-15.1.0-py2.py3-none-any.whl (1.8MB) Collecting click==4.0 (from wagon==0.3.2->cloudify==3.4.0) Downloading click-4.0-py2.py3-none-any.whl (62kB) Collecting pycrypto!=2.4,>=2.1 (from paramiko<1.13,>=1.10->fabric==1.8.3->cloudify==3.4.0) Downloading pycrypto-2.6.1.tar.gz (446kB) Collecting ecdsa (from paramiko<1.13,>=1.10->fabric==1.8.3->cloudify==3.4.0) Downloading ecdsa-0.13-py2.py3-none-any.whl (86kB) Building wheels for collected packages: cloudify, cloudify-plugins-common, cloudify-rest-client, cloudify-dsl-parser, cloudify-script-plugin, pyyaml, PrettyTable, colorama, jinja2, itsdangerous, retrying, wagon, pika, networkx, proxy-tools, bottle, paramiko, markupsafe, pycrypto Running setup.py bdist_wheel for cloudify: started Running setup.py bdist_wheel for cloudify: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/f2/c3/82/67178b6763f55a90e44ab2275208275a5a17a67bc79f9db0b7 Running setup.py bdist_wheel for cloudify-plugins-common: started Running setup.py bdist_wheel for cloudify-plugins-common: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/00/28/99/38e5cd3877708a00e49a462159693320f11a16336a523c363c Running setup.py bdist_wheel for cloudify-rest-client: started Running setup.py bdist_wheel for cloudify-rest-client: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/86/21/96/7090ccf2eb840d5b59f8d87eeb15c5177f6fc4efaaf3376cfb Running setup.py bdist_wheel for cloudify-dsl-parser: started Running setup.py bdist_wheel for cloudify-dsl-parser: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/60/98/2c/6ddda245951daf800173aa74c2ed0f579515eedf88c4b81f10 Running setup.py bdist_wheel for cloudify-script-plugin: started Running setup.py bdist_wheel for cloudify-script-plugin: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/84/0d/cf/561f77378a6491dd737e0b21e3661f5b978b58282cae1c83df Running setup.py bdist_wheel for pyyaml: started Running setup.py bdist_wheel for pyyaml: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/cc/2a/d6/5a7108e2281e4c783740d79c40eac3ebc2d4157b1c7e4f17ef Running setup.py bdist_wheel for PrettyTable: started Running setup.py bdist_wheel for PrettyTable: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/b6/90/7b/1c22b89217d0eba6d5f406e562365ebee804f0d4595b2bdbcd Running setup.py bdist_wheel for colorama: started Running setup.py bdist_wheel for colorama: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/21/c5/cf/63fb92293f3ad402644ccaf882903cacdb8fe87c80b62c84df Running setup.py bdist_wheel for jinja2: started Running setup.py bdist_wheel for jinja2: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/1f/e8/83/446db446804a75b7ac97bcece9a72325ee13e11f89478ead03 Running setup.py bdist_wheel for itsdangerous: started Running setup.py bdist_wheel for itsdangerous: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/fc/a8/66/24d655233c757e178d45dea2de22a04c6d92766abfb741129a Running setup.py bdist_wheel for retrying: started Running setup.py bdist_wheel for retrying: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/d9/08/aa/49f7c109140006ea08a7657640aee3feafb65005bcd5280679 Running setup.py bdist_wheel for wagon: started Running setup.py bdist_wheel for wagon: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/60/c9/56/5bb85a3cc242525888a4a77165a6c1a99a0fb50b13ece972d6 Running setup.py bdist_wheel for pika: started Running setup.py bdist_wheel for pika: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/1f/30/61/abd15514f79d65426bfb7df4912228bed212304cc040bd33da Running setup.py bdist_wheel for networkx: started Running setup.py bdist_wheel for networkx: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/66/dc/f0/3d55dcd87c83d2826aa023eaa47f442195ddf3a08275129907 Running setup.py bdist_wheel for proxy-tools: started Running setup.py bdist_wheel for proxy-tools: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/05/35/e8/91e7c22ff1016128555386c1bff3c9234e45ca298859946920 Running setup.py bdist_wheel for bottle: started Running setup.py bdist_wheel for bottle: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/a8/0e/e5/14a22cb2840d2cf25da1d5ab58d5c4e803dd7cf68f53fde1f6 Running setup.py bdist_wheel for paramiko: started Running setup.py bdist_wheel for paramiko: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/04/cc/a8/9855f412b03e47f02b0a9ac3a7ada561cbd69e925467ad1857 Running setup.py bdist_wheel for markupsafe: started Running setup.py bdist_wheel for markupsafe: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/88/a7/30/e39a54a87bcbe25308fa3ca64e8ddc75d9b3e5afa21ee32d57 Running setup.py bdist_wheel for pycrypto: started Running setup.py bdist_wheel for pycrypto: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/80/1f/94/f76e9746864f198eb0e304aeec319159fa41b082f61281ffce Successfully built cloudify cloudify-plugins-common cloudify-rest-client cloudify-dsl-parser cloudify-script-plugin pyyaml PrettyTable colorama jinja2 itsdangerous retrying wagon pika networkx proxy-tools bottle paramiko markupsafe pycrypto Installing collected packages: requests, requests-toolbelt, cloudify-rest-client, pika, networkx, proxy-tools, bottle, markupsafe, jinja2, cloudify-plugins-common, pyyaml, six, retrying, cloudify-dsl-parser, cloudify-script-plugin, argcomplete, pycrypto, ecdsa, paramiko, fabric, PrettyTable, colorama, itsdangerous, virtualenv, click, wagon, cloudify Successfully installed PrettyTable-0.7.2 argcomplete-1.1.0 bottle-0.12.7 click-4.0 cloudify-3.4 cloudify-dsl-parser-3.4 cloudify-plugins-common-3.4 cloudify-rest-client-3.4 cloudify-script-plugin-1.4 colorama-0.3.3 ecdsa-0.13 fabric-1.8.3 itsdangerous-0.24 jinja2-2.7.2 markupsafe-1.0 networkx-1.8.1 paramiko-1.12.4 pika-0.9.14 proxy-tools-0.1.0 pycrypto-2.6.1 pyyaml-3.10 requests-2.7.0 requests-toolbelt-0.8.0 retrying-1.3.3 six-1.11.0 virtualenv-15.1.0 wagon-0.3.2 + wget -qO- https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/1.4.zip + pip install openstack.zip Processing ./openstack.zip Requirement already satisfied: cloudify-plugins-common>=3.3.1 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-openstack-plugin==1.4) Collecting python-novaclient==2.26.0 (from cloudify-openstack-plugin==1.4) Downloading python_novaclient-2.26.0-py2.py3-none-any.whl (295kB) Collecting python-keystoneclient==1.6.0 (from cloudify-openstack-plugin==1.4) Downloading python_keystoneclient-1.6.0-py2.py3-none-any.whl (418kB) Collecting python-neutronclient==2.6.0 (from cloudify-openstack-plugin==1.4) Downloading python_neutronclient-2.6.0-py2.py3-none-any.whl (217kB) Collecting python-cinderclient==1.2.2 (from cloudify-openstack-plugin==1.4) Downloading python_cinderclient-1.2.2-py2.py3-none-any.whl (225kB) Collecting IPy==0.81 (from cloudify-openstack-plugin==1.4) Downloading IPy-0.81.tar.gz Requirement already satisfied: proxy-tools==0.1.0 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Requirement already satisfied: cloudify-rest-client==3.4 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Requirement already satisfied: bottle==0.12.7 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Requirement already satisfied: pika==0.9.14 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Requirement already satisfied: networkx==1.8.1 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Requirement already satisfied: jinja2==2.7.2 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Collecting pbr<2.0,>=0.11 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading pbr-1.10.0-py2.py3-none-any.whl (96kB) Collecting oslo.serialization>=1.4.0 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading oslo.serialization-2.22.0-py2.py3-none-any.whl Collecting oslo.utils>=1.4.0 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading oslo.utils-3.33.0-py2.py3-none-any.whl (90kB) Collecting Babel>=1.3 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading Babel-2.5.1-py2.py3-none-any.whl (6.8MB) Collecting oslo.i18n>=1.5.0 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading oslo.i18n-3.19.0-py2.py3-none-any.whl (42kB) Collecting iso8601>=0.1.9 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading iso8601-0.1.12-py2.py3-none-any.whl Requirement already satisfied: PrettyTable<0.8,>=0.7 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Requirement already satisfied: requests>=2.5.2 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Requirement already satisfied: argparse in /usr/lib/python2.7 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Requirement already satisfied: six>=1.9.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Collecting simplejson>=2.2.0 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading simplejson-3.13.2.tar.gz (79kB) Collecting netaddr>=0.7.12 (from python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4) Downloading netaddr-0.7.19-py2.py3-none-any.whl (1.6MB) Collecting stevedore>=1.3.0 (from python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4) Downloading stevedore-1.28.0-py2.py3-none-any.whl Collecting oslo.config>=1.11.0 (from python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4) Downloading oslo.config-5.1.0-py2.py3-none-any.whl (109kB) Collecting cliff>=1.10.0 (from python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4) Downloading cliff-2.9.1-py2-none-any.whl (69kB) Requirement already satisfied: requests-toolbelt in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-rest-client==3.4->cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Requirement already satisfied: markupsafe in ./dcaeinstall/lib/python2.7/site-packages (from jinja2==2.7.2->cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4) Collecting msgpack-python>=0.4.0 (from oslo.serialization>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading msgpack-python-0.4.8.tar.gz (113kB) Collecting pytz>=2013.6 (from oslo.serialization>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading pytz-2017.3-py2.py3-none-any.whl (511kB) Collecting monotonic>=0.6 (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading monotonic-1.4-py2.py3-none-any.whl Collecting funcsigs>=1.0.0; python_version == "2.7" or python_version == "2.6" (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading funcsigs-1.0.2-py2.py3-none-any.whl Collecting netifaces>=0.10.4 (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading netifaces-0.10.6.tar.gz Collecting pyparsing>=2.1.0 (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading pyparsing-2.2.0-py2.py3-none-any.whl (56kB) Collecting debtcollector>=1.2.0 (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading debtcollector-1.19.0-py2.py3-none-any.whl Collecting rfc3986>=0.3.1 (from oslo.config>=1.11.0->python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4) Downloading rfc3986-1.1.0-py2.py3-none-any.whl Requirement already satisfied: PyYAML>=3.10 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.config>=1.11.0->python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4) Collecting unicodecsv>=0.8.0; python_version < "3.0" (from cliff>=1.10.0->python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4) Downloading unicodecsv-0.14.1.tar.gz Collecting cmd2>=0.6.7 (from cliff>=1.10.0->python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4) Downloading cmd2-0.7.8.tar.gz (71kB) Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4) Downloading wrapt-1.10.11.tar.gz Collecting pyperclip (from cmd2>=0.6.7->cliff>=1.10.0->python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4) Downloading pyperclip-1.6.0.tar.gz Building wheels for collected packages: IPy, simplejson, msgpack-python, netifaces, unicodecsv, cmd2, wrapt, pyperclip Running setup.py bdist_wheel for IPy: started Running setup.py bdist_wheel for IPy: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/40/aa/69/f958b958aa39158a9f76fc8f770614c34ab854b9684f638134 Running setup.py bdist_wheel for simplejson: started Running setup.py bdist_wheel for simplejson: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/c2/d0/42/5d1d1290c19d999277582c585f80426c61987aff01eb104ed6 Running setup.py bdist_wheel for msgpack-python: started Running setup.py bdist_wheel for msgpack-python: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/2c/e7/e7/9031652a69d594665c5ca25e41d0fb3faa024e730b590e4402 Running setup.py bdist_wheel for netifaces: started Running setup.py bdist_wheel for netifaces: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/28/e1/08/e66a4f207479500a27eae682a4773fa00605f2c5d953257824 Running setup.py bdist_wheel for unicodecsv: started Running setup.py bdist_wheel for unicodecsv: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/97/e2/16/219fa93b83edaff912b6805cfa19d0597e21f8d353f3e2d22f Running setup.py bdist_wheel for cmd2: started Running setup.py bdist_wheel for cmd2: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/ec/23/e4/0b231234e6c498de81347e4d2044498263fa544d1253b9fb43 Running setup.py bdist_wheel for wrapt: started Running setup.py bdist_wheel for wrapt: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/56/e1/0f/f7ccf1ed8ceaabccc2a93ce0481f73e589814cbbc439291345 Running setup.py bdist_wheel for pyperclip: started Running setup.py bdist_wheel for pyperclip: finished with status 'done' Stored in directory: /opt/app/installer/.cache/pip/wheels/a9/22/c3/8116911c3273f6aa0a90ce69c44fb8a6a0e139d79aeda5a73e Successfully built IPy simplejson msgpack-python netifaces unicodecsv cmd2 wrapt pyperclip Installing collected packages: pbr, monotonic, netaddr, funcsigs, netifaces, pytz, Babel, oslo.i18n, pyparsing, iso8601, wrapt, debtcollector, oslo.utils, msgpack-python, oslo.serialization, stevedore, rfc3986, oslo.config, python-keystoneclient, simplejson, python-novaclient, unicodecsv, pyperclip, cmd2, cliff, python-neutronclient, python-cinderclient, IPy, cloudify-openstack-plugin Running setup.py install for cloudify-openstack-plugin: started Running setup.py install for cloudify-openstack-plugin: finished with status 'done' Successfully installed Babel-2.5.1 IPy-0.81 cliff-2.9.1 cloudify-openstack-plugin-1.4 cmd2-0.7.8 debtcollector-1.19.0 funcsigs-1.0.2 iso8601-0.1.12 monotonic-1.4 msgpack-python-0.4.8 netaddr-0.7.19 netifaces-0.10.6 oslo.config-5.1.0 oslo.i18n-3.19.0 oslo.serialization-2.22.0 oslo.utils-3.33.0 pbr-1.10.0 pyparsing-2.2.0 pyperclip-1.6.0 python-cinderclient-1.2.2 python-keystoneclient-1.6.0 python-neutronclient-2.6.0 python-novaclient-2.26.0 pytz-2017.3 rfc3986-1.1.0 simplejson-3.13.2 stevedore-1.28.0 unicodecsv-0.14.1 wrapt-1.10.11 + mkdir types + wget -qO- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/type_files/dnsdesig/dns_types.yaml + wget -qO- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/type_files/sshkeyshare/sshkey_types.yaml + wget -O dnsdesig.wgn https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/plugins/dnsdesig-1.0.0-py27-none-any.wgn --2018-01-04 19:11:01-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/plugins/dnsdesig-1.0.0-py27-none-any.wgn Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 4269 (4.2K) [application/octet-stream] Saving to: 'dnsdesig.wgn' 0K .... 100% 507M=0s 2018-01-04 19:11:01 (507 MB/s) - 'dnsdesig.wgn' saved [4269/4269] + wget -O sshkeyshare.wgn https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/plugins/sshkeyshare-1.0.0-py27-none-any.wgn --2018-01-04 19:11:01-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/plugins/sshkeyshare-1.0.0-py27-none-any.wgn Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 3287 (3.2K) [application/octet-stream] Saving to: 'sshkeyshare.wgn' 0K ... 100% 438M=0s 2018-01-04 19:11:01 (438 MB/s) - 'sshkeyshare.wgn' saved [3287/3287] + wagon install -s dnsdesig.wgn INFO - Installing dnsdesig.wgn INFO - Installing dnsdesig... INFO - Installing within current virtualenv: True... + wagon install -s sshkeyshare.wgn INFO - Installing sshkeyshare.wgn INFO - Installing sshkeyshare... INFO - Installing within current virtualenv: True... + sed -e 's#key_filename:.*#key_filename: ./key600#' + set +e + wget -O /tmp/centos_vm.yaml https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/centos_vm.yaml --2018-01-04 19:11:02-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/centos_vm.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 7653 (7.5K) [text/x-yaml] Saving to: '/tmp/centos_vm.yaml' 0K ....... 100% 197M=0s 2018-01-04 19:11:03 (197 MB/s) - '/tmp/centos_vm.yaml' saved [7653/7653] + mv -f /tmp/centos_vm.yaml ./blueprints/ Succeeded in getting the newest centos_vm.yaml + echo 'Succeeded in getting the newest centos_vm.yaml' + set -e + cfy local init --install-plugins -p ./blueprints/centos_vm.yaml -i /tmp/local_inputs -i datacenter=MbOr Collecting https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/1.4.zip (from -r /tmp/requirements_2Dnd1m.txt (line 1)) Downloading https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/1.4.zip (85kB) Requirement already satisfied (use --upgrade to upgrade): cloudify-openstack-plugin==1.4 from https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/1.4.zip in ./dcaeinstall/lib/python2.7/site-packages (from -r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: cloudify-plugins-common>=3.3.1 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: python-novaclient==2.26.0 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: python-keystoneclient==1.6.0 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: python-neutronclient==2.6.0 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: python-cinderclient==1.2.2 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: IPy==0.81 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: proxy-tools==0.1.0 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: cloudify-rest-client==3.4 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: bottle==0.12.7 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: pika==0.9.14 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: networkx==1.8.1 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: jinja2==2.7.2 in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: pbr<2.0,>=0.11 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: oslo.serialization>=1.4.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: oslo.utils>=1.4.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: Babel>=1.3 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: oslo.i18n>=1.5.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: iso8601>=0.1.9 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: PrettyTable<0.8,>=0.7 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: requests>=2.5.2 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: argparse in /usr/lib/python2.7 (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: six>=1.9.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: simplejson>=2.2.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: netaddr>=0.7.12 in ./dcaeinstall/lib/python2.7/site-packages (from python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: stevedore>=1.3.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: oslo.config>=1.11.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: cliff>=1.10.0 in ./dcaeinstall/lib/python2.7/site-packages (from python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: requests-toolbelt in ./dcaeinstall/lib/python2.7/site-packages (from cloudify-rest-client==3.4->cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: markupsafe in ./dcaeinstall/lib/python2.7/site-packages (from jinja2==2.7.2->cloudify-plugins-common>=3.3.1->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: msgpack-python>=0.4.0 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.serialization>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: pytz>=2013.6 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.serialization>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: monotonic>=0.6 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: funcsigs>=1.0.0; python_version == "2.7" or python_version == "2.6" in ./dcaeinstall/lib/python2.7/site-packages (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: netifaces>=0.10.4 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: pyparsing>=2.1.0 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: debtcollector>=1.2.0 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: rfc3986>=0.3.1 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.config>=1.11.0->python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: PyYAML>=3.10 in ./dcaeinstall/lib/python2.7/site-packages (from oslo.config>=1.11.0->python-keystoneclient==1.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: unicodecsv>=0.8.0; python_version < "3.0" in ./dcaeinstall/lib/python2.7/site-packages (from cliff>=1.10.0->python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: cmd2>=0.6.7 in ./dcaeinstall/lib/python2.7/site-packages (from cliff>=1.10.0->python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: wrapt>=1.7.0 in ./dcaeinstall/lib/python2.7/site-packages (from debtcollector>=1.2.0->oslo.utils>=1.4.0->python-novaclient==2.26.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Requirement already satisfied: pyperclip in ./dcaeinstall/lib/python2.7/site-packages (from cmd2>=0.6.7->cliff>=1.10.0->python-neutronclient==2.6.0->cloudify-openstack-plugin==1.4->-r /tmp/requirements_2Dnd1m.txt (line 1)) Processing inputs source: /tmp/local_inputs Processing inputs source: datacenter=MbOr Initiated ./blueprints/centos_vm.yaml If you make changes to the blueprint, run `cfy local init -p ./blueprints/centos_vm.yaml` again to apply them + cfy local execute -w install --task-retries=10 2018-01-04 19:11:12 CFY <local> Starting 'install' workflow execution 2018-01-04 19:11:12 CFY <local> [floatingip_vm00_6c172] Creating node 2018-01-04 19:11:12 CFY <local> [security_group_5e486] Creating node 2018-01-04 19:11:12 CFY <local> [private_net_dfbf6] Creating node 2018-01-04 19:11:12 CFY <local> [key_pair_5e616] Creating node 2018-01-04 19:11:13 CFY <local> [private_net_dfbf6.create] Sending task 'neutron_plugin.network.create' 2018-01-04 19:11:13 CFY <local> [floatingip_vm00_6c172.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04 19:11:13 CFY <local> [key_pair_5e616.create] Sending task 'nova_plugin.keypair.create' 2018-01-04 19:11:13 CFY <local> [security_group_5e486.create] Sending task 'neutron_plugin.security_group.create' 2018-01-04 19:11:13 CFY <local> [private_net_dfbf6.create] Task started 'neutron_plugin.network.create' 2018-01-04 19:11:13 LOG <local> [private_net_dfbf6.create] INFO: Using external resource network: oam_onap_MbOr 2018-01-04 19:11:13 CFY <local> [private_net_dfbf6.create] Task succeeded 'neutron_plugin.network.create' 2018-01-04 19:11:13 CFY <local> [floatingip_vm00_6c172.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04 19:11:15 LOG <local> [floatingip_vm00_6c172.create] INFO: Floating IP creation response: {u'router_id': None, u'status': u'DOWN', u'description': u'', u'tags': [], u'dns_name': u'', u'created_at': u'2018-01-04T19:11:14Z', u'updated_at': u'2018-01-04T19:11:14Z', u'dns_domain': u'', u'floating_network_id': u'af6880a2-3173-430a-aaa2-6229df57ee15', u'fixed_ip_address': None, u'floating_ip_address': u'10.195.200.42', u'revision_number': 0, u'tenant_id': u'5c59f02201d54aa89af1f2207f7be2c1', u'project_id': u'5c59f02201d54aa89af1f2207f7be2c1', u'port_id': None, u'id': u'1a6cfd1b-8b1e-41c0-8000-77c267cf59ca'} 2018-01-04 19:11:15 CFY <local> [floatingip_vm00_6c172.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04 19:11:15 CFY <local> [key_pair_5e616.create] Task started 'nova_plugin.keypair.create' 2018-01-04 19:11:15 LOG <local> [key_pair_5e616.create] INFO: Using external resource keypair: onap_key_MbOr 2018-01-04 19:11:15 CFY <local> [key_pair_5e616.create] Task succeeded 'nova_plugin.keypair.create' 2018-01-04 19:11:15 CFY <local> [security_group_5e486.create] Task started 'neutron_plugin.security_group.create' 2018-01-04 19:11:15 LOG <local> [security_group_5e486.create] INFO: Using external resource security_group: onap_sg_MbOr 2018-01-04 19:11:15 CFY <local> [security_group_5e486.create] Task succeeded 'neutron_plugin.security_group.create' 2018-01-04 19:11:16 CFY <local> [private_net_dfbf6] Configuring node 2018-01-04 19:11:16 CFY <local> [key_pair_5e616] Configuring node 2018-01-04 19:11:16 CFY <local> [floatingip_vm00_6c172] Configuring node 2018-01-04 19:11:16 CFY <local> [security_group_5e486] Configuring node 2018-01-04 19:11:16 CFY <local> [private_net_dfbf6] Starting node 2018-01-04 19:11:16 CFY <local> [key_pair_5e616] Starting node 2018-01-04 19:11:16 CFY <local> [floatingip_vm00_6c172] Starting node 2018-01-04 19:11:16 CFY <local> [security_group_5e486] Starting node 2018-01-04 19:11:17 CFY <local> [fixedip_vm00_bb782] Creating node 2018-01-04 19:11:17 CFY <local> [dns_cm_108d8] Creating node 2018-01-04 19:11:17 CFY <local> [dns_vm00_7ecd2] Creating node 2018-01-04 19:11:17 CFY <local> [dns_cm_108d8.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04 19:11:17 CFY <local> [fixedip_vm00_bb782.create] Sending task 'neutron_plugin.port.create' 2018-01-04 19:11:17 CFY <local> [dns_vm00_7ecd2.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04 19:11:17 CFY <local> [dns_cm_108d8.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04 19:11:17 CFY <local> [dns_cm_108d8.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04 19:11:17 CFY <local> [fixedip_vm00_bb782.create] Task started 'neutron_plugin.port.create' 2018-01-04 19:11:18 CFY <local> [fixedip_vm00_bb782.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04 19:11:18 CFY <local> [dns_vm00_7ecd2.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04 19:11:18 CFY <local> [dns_vm00_7ecd2.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04 19:11:18 CFY <local> [fixedip_vm00_bb782] Configuring node 2018-01-04 19:11:19 CFY <local> [dns_vm00_7ecd2] Configuring node 2018-01-04 19:11:19 CFY <local> [dns_cm_108d8] Configuring node 2018-01-04 19:11:19 CFY <local> [fixedip_vm00_bb782] Starting node 2018-01-04 19:11:19 CFY <local> [dns_cm_108d8] Starting node 2018-01-04 19:11:19 CFY <local> [dns_vm00_7ecd2] Starting node 2018-01-04 19:11:20 CFY <local> [dns_cname_be7b3] Creating node 2018-01-04 19:11:20 CFY <local> [dns_cname_be7b3.create] Sending task 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04 19:11:20 CFY <local> [host_vm00_c3a93] Creating node 2018-01-04 19:11:20 CFY <local> [dns_cname_be7b3.create] Task started 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04 19:11:20 CFY <local> [host_vm00_c3a93.create] Sending task 'nova_plugin.server.create' 2018-01-04 19:11:20 CFY <local> [dns_cname_be7b3.create] Task succeeded 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04 19:11:20 CFY <local> [host_vm00_c3a93.create] Task started 'nova_plugin.server.create' 2018-01-04 19:11:21 LOG <local> [host_vm00_c3a93.create] INFO: Creating VM with parameters: {u'userdata': u'#!/bin/sh\nset -x\nDATACENTER=MbOr\nCONSULVER=0.8.3\nCONSULNAME=consul_${CONSULVER}_linux_amd64\nMYIP=`curl -Ss http://169.254.169.254/2009-04-04/meta-data/local-ipv4`\nMYNAME=`hostname`\nif [ ! -z "$(echo $MYNAME |grep \'.\')" ]; then MYNAME="$(echo $MYNAME | cut -f1 -d \'.\')"; fi\necho >>/etc/hosts\necho $MYIP $MYNAME >>/etc/hosts\nmkdir -p /opt/consul/config /opt/consul/data /opt/consul/bin\nyum install -y unzip\n# Download Consul\ncurl -Ss https://releases.hashicorp.com/consul/${CONSULVER}/${CONSULNAME}.zip > ${CONSULNAME}.zip\nunzip -d /opt/consul/bin ${CONSULNAME}.zip\nrm ${CONSULNAME}.zip\nchmod +x /opt/consul/bin/consul\ncat <<EOF > /opt/consul/config/consul.json\n{\n "bind_addr" : "0.0.0.0",\n "client_addr" : "0.0.0.0",\n "data_dir" : "/opt/consul/data",\n "datacenter": "$DATACENTER",\n "rejoin_after_leave": true,\n "http_api_response_headers": {\n "Access-Control-Allow-Origin" : "*"\n },\n "server": false,\n "ui": false,\n "enable_syslog": true,\n "log_level": "info"\n}\nEOF\ncat <<EOF > /lib/systemd/system/consul.service\n[Unit]\nDescription=Consul\nRequires=network-online.target\nAfter=network.target\n[Service]\nType=simple\nExecStart=/opt/consul/bin/consul agent -config-dir=/opt/consul/config\nExecReload=/bin/kill -HUP \\$MAINPID\n[Install]\nWantedBy=multi-user.target\nEOF\nsystemctl enable consul\nsystemctl start consul\nyum install -y python-psycopg2\n', 'name': u'dcaeorcl00', 'key_name': u'onap_key_MbOr', 'image': u'fa4b9999-b287-455e-8a7c-30aa3578894a', 'meta': {'cloudify_management_network_name': u'oam_onap_MbOr', 'cloudify_management_network_id': u'b4049b01-0581-4d4e-b7c5-6c3e0c956051'}, 'nics': [{'port-id': u'fdaa7318-1607-42a5-89a0-6fc95f9a6b2f'}], 'flavor': u'5'} 2018-01-04 19:11:22 CFY <local> [host_vm00_c3a93.create] Task succeeded 'nova_plugin.server.create' 2018-01-04 19:11:22 CFY <local> [dns_cname_be7b3] Configuring node 2018-01-04 19:11:22 CFY <local> [dns_cname_be7b3] Starting node 2018-01-04 19:11:23 CFY <local> [host_vm00_c3a93] Configuring node 2018-01-04 19:11:24 CFY <local> [host_vm00_c3a93] Starting node 2018-01-04 19:11:24 CFY <local> [host_vm00_c3a93.start] Sending task 'nova_plugin.server.start' 2018-01-04 19:11:24 CFY <local> [host_vm00_c3a93.start] Task started 'nova_plugin.server.start' 2018-01-04 19:11:24 CFY <local> [host_vm00_c3a93.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04 19:11:54 CFY <local> [host_vm00_c3a93.start] Sending task 'nova_plugin.server.start' [retry 1/10] 2018-01-04 19:11:54 CFY <local> [host_vm00_c3a93.start] Task started 'nova_plugin.server.start' [retry 1/10] 2018-01-04 19:11:55 LOG <local> [host_vm00_c3a93.start] INFO: Server is ACTIVE 2018-01-04 19:11:55 CFY <local> [host_vm00_c3a93.start] Task succeeded 'nova_plugin.server.start' [retry 1/10] 2018-01-04 19:11:55 CFY <local> [host_vm00_c3a93->security_group_5e486|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04 19:11:55 CFY <local> [host_vm00_c3a93->security_group_5e486|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04 19:11:57 CFY <local> [host_vm00_c3a93->security_group_5e486|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04 19:11:57 CFY <local> [host_vm00_c3a93->floatingip_vm00_6c172|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04 19:11:57 CFY <local> [host_vm00_c3a93->floatingip_vm00_6c172|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04 19:11:59 CFY <local> [host_vm00_c3a93->floatingip_vm00_6c172|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04 19:11:59 CFY <local> 'install' workflow execution succeeded ++ grep -Po '"public_ip": "\K.*?(?=")' ++ cfy local outputs + PUBIP=10.195.200.42 ++ wc -l ++ grep 'icmp*' ++ ping -c 1 10.195.200.42 + '[' 1 -eq 0 ']' + sleep 10 Installing Cloudify Manager on 10.195.200.42. + echo 'Installing Cloudify Manager on 10.195.200.42.' ++ sed s/PVTIP=// ++ grep PVTIP ++ ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ./key600 centos@10.195.200.42 'echo PVTIP=`curl --silent http://169.254.169.254/2009-04-04/meta-data/local-ipv4`' Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + PVTIP=10.0.0.11 + '[' 10.0.0.11 = '' ']' ++ cut -d \' -f2 ++ grep key_filename ++ cat ./config/inputs.yaml + PVTKEYPATH=/opt/dcae/key ++ basename /opt/dcae/key + PVTKEYNAME=key ++ dirname /opt/dcae/key + PVTKEYDIR=/opt/dcae + scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ./key600 ./key600 centos@10.195.200.42:/tmp/key Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + ssh -t -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ./key600 centos@10.195.200.42 sudo mkdir -p /opt/dcae Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + ssh -t -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ./key600 centos@10.195.200.42 sudo mv /tmp/key /opt/dcae/key Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. ++ uuidgen -r + ESMAGIC=4198d02e-7ea7-44fe-a91d-ecb8454f625a + WORKDIR=/opt/app/installer/cmtmp + BSDIR=/opt/app/installer/cmtmp/cmbootstrap + PVTKEY2=/opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap + TMPBASE=/opt/app/installer/cmtmp/tmp + TMPDIR=/opt/app/installer/cmtmp/tmp/lib + SRCS=/opt/app/installer/cmtmp/srcs.tar + TOOL=/opt/app/installer/cmtmp/tool.py + rm -rf /opt/app/installer/cmtmp + mkdir -p /opt/app/installer/cmtmp/cmbootstrap /opt/app/installer/cmtmp/tmp/lib/cloudify/wheels /opt/app/installer/cmtmp/tmp/lib/cloudify/sources /opt/app/installer/cmtmp/tmp/lib/manager + chmod 700 /opt/app/installer/cmtmp + cp ./key600 /opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap + cat + ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -t -i /opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap centos@10.195.200.42 'sudo bash -xc "echo y; mkdir -p /root/.virtualenv; echo '\''[virtualenv]'\'' >/root/.virtualenv/virtualenv.ini; echo no-download=true >>/root/.virtualenv/virtualenv.ini"' Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + echo y + mkdir -p /root/.virtualenv y + echo '[virtualenv]' + echo no-download=true + BSURL=https://github.com/cloudify-cosmo/cloudify-manager-blueprints/archive/3.4.tar.gz ++ basename https://github.com/cloudify-cosmo/cloudify-manager-blueprints/archive/3.4.tar.gz + BSFILE=3.4.tar.gz + umask 022 + wget -qO- https://github.com/cloudify-cosmo/cloudify-manager-blueprints/archive/3.4.tar.gz + cd /opt/app/installer/cmtmp/cmbootstrap + tar xzvf 3.4.tar.gz cloudify-manager-blueprints-3.4/ cloudify-manager-blueprints-3.4/.gitignore cloudify-manager-blueprints-3.4/.travis.yml cloudify-manager-blueprints-3.4/LICENSE cloudify-manager-blueprints-3.4/README.md cloudify-manager-blueprints-3.4/aws-ec2-manager-blueprint-inputs.yaml cloudify-manager-blueprints-3.4/aws-ec2-manager-blueprint.yaml cloudify-manager-blueprints-3.4/azure-manager-blueprint-inputs.yaml cloudify-manager-blueprints-3.4/azure-manager-blueprint.yaml cloudify-manager-blueprints-3.4/circle.yml cloudify-manager-blueprints-3.4/components/ cloudify-manager-blueprints-3.4/components/amqpinflux/ cloudify-manager-blueprints-3.4/components/amqpinflux/NOTICE.txt cloudify-manager-blueprints-3.4/components/amqpinflux/config/ cloudify-manager-blueprints-3.4/components/amqpinflux/config/cloudify-amqpinflux cloudify-manager-blueprints-3.4/components/amqpinflux/config/cloudify-amqpinflux.service cloudify-manager-blueprints-3.4/components/amqpinflux/scripts/ cloudify-manager-blueprints-3.4/components/amqpinflux/scripts/create.py cloudify-manager-blueprints-3.4/components/amqpinflux/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/amqpinflux/scripts/start.py cloudify-manager-blueprints-3.4/components/amqpinflux/scripts/stop.py cloudify-manager-blueprints-3.4/components/cli/ cloudify-manager-blueprints-3.4/components/cli/scripts/ cloudify-manager-blueprints-3.4/components/cli/scripts/create.sh cloudify-manager-blueprints-3.4/components/cli/scripts/start.sh cloudify-manager-blueprints-3.4/components/elasticsearch/ cloudify-manager-blueprints-3.4/components/elasticsearch/NOTICE.txt cloudify-manager-blueprints-3.4/components/elasticsearch/config/ cloudify-manager-blueprints-3.4/components/elasticsearch/config/elasticsearch.yml cloudify-manager-blueprints-3.4/components/elasticsearch/config/logging.yml cloudify-manager-blueprints-3.4/components/elasticsearch/config/logrotate cloudify-manager-blueprints-3.4/components/elasticsearch/config/restart.conf cloudify-manager-blueprints-3.4/components/elasticsearch/config/scripts/ cloudify-manager-blueprints-3.4/components/elasticsearch/config/scripts/append.groovy cloudify-manager-blueprints-3.4/components/elasticsearch/scripts/ cloudify-manager-blueprints-3.4/components/elasticsearch/scripts/create.py cloudify-manager-blueprints-3.4/components/elasticsearch/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/elasticsearch/scripts/rotate_es_indices cloudify-manager-blueprints-3.4/components/elasticsearch/scripts/start.py cloudify-manager-blueprints-3.4/components/elasticsearch/scripts/stop.py cloudify-manager-blueprints-3.4/components/influxdb/ cloudify-manager-blueprints-3.4/components/influxdb/NOTICE.txt cloudify-manager-blueprints-3.4/components/influxdb/config/ cloudify-manager-blueprints-3.4/components/influxdb/config/cloudify-influxdb cloudify-manager-blueprints-3.4/components/influxdb/config/cloudify-influxdb.service cloudify-manager-blueprints-3.4/components/influxdb/config/config.toml cloudify-manager-blueprints-3.4/components/influxdb/config/logrotate cloudify-manager-blueprints-3.4/components/influxdb/scripts/ cloudify-manager-blueprints-3.4/components/influxdb/scripts/create.py cloudify-manager-blueprints-3.4/components/influxdb/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/influxdb/scripts/start.py cloudify-manager-blueprints-3.4/components/influxdb/scripts/stop.py cloudify-manager-blueprints-3.4/components/java/ cloudify-manager-blueprints-3.4/components/java/NOTICE.txt cloudify-manager-blueprints-3.4/components/java/scripts/ cloudify-manager-blueprints-3.4/components/java/scripts/create.py cloudify-manager-blueprints-3.4/components/java/scripts/validate.py cloudify-manager-blueprints-3.4/components/logstash/ cloudify-manager-blueprints-3.4/components/logstash/NOTICE.txt cloudify-manager-blueprints-3.4/components/logstash/config/ cloudify-manager-blueprints-3.4/components/logstash/config/cloudify-logstash cloudify-manager-blueprints-3.4/components/logstash/config/logrotate cloudify-manager-blueprints-3.4/components/logstash/config/logstash.conf cloudify-manager-blueprints-3.4/components/logstash/config/restart.conf cloudify-manager-blueprints-3.4/components/logstash/scripts/ cloudify-manager-blueprints-3.4/components/logstash/scripts/create.py cloudify-manager-blueprints-3.4/components/logstash/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/logstash/scripts/start.py cloudify-manager-blueprints-3.4/components/logstash/scripts/stop.py cloudify-manager-blueprints-3.4/components/manager/ cloudify-manager-blueprints-3.4/components/manager/scripts/ cloudify-manager-blueprints-3.4/components/manager/scripts/aws-ec2/ cloudify-manager-blueprints-3.4/components/manager/scripts/aws-ec2/configure.py cloudify-manager-blueprints-3.4/components/manager/scripts/azure/ cloudify-manager-blueprints-3.4/components/manager/scripts/azure/configure.py cloudify-manager-blueprints-3.4/components/manager/scripts/configure_manager.sh cloudify-manager-blueprints-3.4/components/manager/scripts/create.py cloudify-manager-blueprints-3.4/components/manager/scripts/create_conf.py cloudify-manager-blueprints-3.4/components/manager/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/manager/scripts/openstack/ cloudify-manager-blueprints-3.4/components/manager/scripts/openstack/configure.py cloudify-manager-blueprints-3.4/components/manager/scripts/sanity/ cloudify-manager-blueprints-3.4/components/manager/scripts/sanity/create_sanity.py cloudify-manager-blueprints-3.4/components/manager/scripts/sanity/get_rest_protocol.py cloudify-manager-blueprints-3.4/components/manager/scripts/sanity/sanity.py cloudify-manager-blueprints-3.4/components/manager/scripts/set_manager_private_ip.py cloudify-manager-blueprints-3.4/components/manager/scripts/set_manager_public_ip.py cloudify-manager-blueprints-3.4/components/manager/scripts/validate.py cloudify-manager-blueprints-3.4/components/manager/scripts/vcloud/ cloudify-manager-blueprints-3.4/components/manager/scripts/vcloud/configure.py cloudify-manager-blueprints-3.4/components/manager/scripts/vcloud/update-vcloud-vm.sh cloudify-manager-blueprints-3.4/components/manager/scripts/vsphere/ cloudify-manager-blueprints-3.4/components/manager/scripts/vsphere/configure.py cloudify-manager-blueprints-3.4/components/manager/scripts/vsphere/update-firewall.sh cloudify-manager-blueprints-3.4/components/mgmtworker/ cloudify-manager-blueprints-3.4/components/mgmtworker/NOTICE.txt cloudify-manager-blueprints-3.4/components/mgmtworker/config/ cloudify-manager-blueprints-3.4/components/mgmtworker/config/broker_config.json cloudify-manager-blueprints-3.4/components/mgmtworker/config/cloudify-mgmtworker cloudify-manager-blueprints-3.4/components/mgmtworker/config/cloudify-mgmtworker.service cloudify-manager-blueprints-3.4/components/mgmtworker/config/logrotate cloudify-manager-blueprints-3.4/components/mgmtworker/config/startup.sh cloudify-manager-blueprints-3.4/components/mgmtworker/scripts/ cloudify-manager-blueprints-3.4/components/mgmtworker/scripts/create.py cloudify-manager-blueprints-3.4/components/mgmtworker/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/mgmtworker/scripts/start.py cloudify-manager-blueprints-3.4/components/mgmtworker/scripts/stop.py cloudify-manager-blueprints-3.4/components/nginx/ cloudify-manager-blueprints-3.4/components/nginx/NOTICE.txt cloudify-manager-blueprints-3.4/components/nginx/config/ cloudify-manager-blueprints-3.4/components/nginx/config/default.conf cloudify-manager-blueprints-3.4/components/nginx/config/fileserver-location.cloudify cloudify-manager-blueprints-3.4/components/nginx/config/http-rest-server.cloudify cloudify-manager-blueprints-3.4/components/nginx/config/https-rest-server.cloudify cloudify-manager-blueprints-3.4/components/nginx/config/logrotate cloudify-manager-blueprints-3.4/components/nginx/config/logs-conf.cloudify cloudify-manager-blueprints-3.4/components/nginx/config/nginx.conf cloudify-manager-blueprints-3.4/components/nginx/config/rest-location.cloudify cloudify-manager-blueprints-3.4/components/nginx/config/restart.conf cloudify-manager-blueprints-3.4/components/nginx/config/ui-locations.cloudify cloudify-manager-blueprints-3.4/components/nginx/scripts/ cloudify-manager-blueprints-3.4/components/nginx/scripts/create.py cloudify-manager-blueprints-3.4/components/nginx/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/nginx/scripts/preconfigure.py cloudify-manager-blueprints-3.4/components/nginx/scripts/retrieve_agents.py cloudify-manager-blueprints-3.4/components/nginx/scripts/start.py cloudify-manager-blueprints-3.4/components/nginx/scripts/stop.py cloudify-manager-blueprints-3.4/components/python/ cloudify-manager-blueprints-3.4/components/python/NOTICE.txt cloudify-manager-blueprints-3.4/components/python/scripts/ cloudify-manager-blueprints-3.4/components/python/scripts/create.py cloudify-manager-blueprints-3.4/components/python/scripts/validate.py cloudify-manager-blueprints-3.4/components/rabbitmq/ cloudify-manager-blueprints-3.4/components/rabbitmq/NOTICE.txt cloudify-manager-blueprints-3.4/components/rabbitmq/config/ cloudify-manager-blueprints-3.4/components/rabbitmq/config/cloudify-rabbitmq cloudify-manager-blueprints-3.4/components/rabbitmq/config/cloudify-rabbitmq.service cloudify-manager-blueprints-3.4/components/rabbitmq/config/logrotate cloudify-manager-blueprints-3.4/components/rabbitmq/config/rabbitmq.config-nossl cloudify-manager-blueprints-3.4/components/rabbitmq/config/rabbitmq.config-ssl cloudify-manager-blueprints-3.4/components/rabbitmq/config/rabbitmq_ulimit.conf cloudify-manager-blueprints-3.4/components/rabbitmq/scripts/ cloudify-manager-blueprints-3.4/components/rabbitmq/scripts/create.py cloudify-manager-blueprints-3.4/components/rabbitmq/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/rabbitmq/scripts/start.py cloudify-manager-blueprints-3.4/components/rabbitmq/scripts/stop.py cloudify-manager-blueprints-3.4/components/restservice/ cloudify-manager-blueprints-3.4/components/restservice/NOTICE.txt cloudify-manager-blueprints-3.4/components/restservice/config/ cloudify-manager-blueprints-3.4/components/restservice/config/cloudify-rest.conf cloudify-manager-blueprints-3.4/components/restservice/config/cloudify-restservice cloudify-manager-blueprints-3.4/components/restservice/config/cloudify-restservice.service cloudify-manager-blueprints-3.4/components/restservice/config/logrotate cloudify-manager-blueprints-3.4/components/restservice/scripts/ cloudify-manager-blueprints-3.4/components/restservice/scripts/create.py cloudify-manager-blueprints-3.4/components/restservice/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/restservice/scripts/install_plugins.py cloudify-manager-blueprints-3.4/components/restservice/scripts/install_plugins.sh cloudify-manager-blueprints-3.4/components/restservice/scripts/preconfigure.py cloudify-manager-blueprints-3.4/components/restservice/scripts/start.py cloudify-manager-blueprints-3.4/components/restservice/scripts/stop.py cloudify-manager-blueprints-3.4/components/riemann/ cloudify-manager-blueprints-3.4/components/riemann/NOTICE.txt cloudify-manager-blueprints-3.4/components/riemann/config/ cloudify-manager-blueprints-3.4/components/riemann/config/cloudify-riemann cloudify-manager-blueprints-3.4/components/riemann/config/cloudify-riemann.service cloudify-manager-blueprints-3.4/components/riemann/config/logrotate cloudify-manager-blueprints-3.4/components/riemann/config/main.clj cloudify-manager-blueprints-3.4/components/riemann/scripts/ cloudify-manager-blueprints-3.4/components/riemann/scripts/create.py cloudify-manager-blueprints-3.4/components/riemann/scripts/creation_validation.py cloudify-manager-blueprints-3.4/components/riemann/scripts/start.py cloudify-manager-blueprints-3.4/components/riemann/scripts/stop.py cloudify-manager-blueprints-3.4/components/utils.py cloudify-manager-blueprints-3.4/components/webui/ cloudify-manager-blueprints-3.4/components/webui/LICENSE cloudify-manager-blueprints-3.4/components/webui/NOTICE.txt cloudify-manager-blueprints-3.4/components/webui/config/ cloudify-manager-blueprints-3.4/components/webui/config/cloudify-webui cloudify-manager-blueprints-3.4/components/webui/config/cloudify-webui.service cloudify-manager-blueprints-3.4/components/webui/config/grafana_config.js cloudify-manager-blueprints-3.4/components/webui/config/gsPresets.json cloudify-manager-blueprints-3.4/components/webui/config/logrotate cloudify-manager-blueprints-3.4/components/webui/scripts/ cloudify-manager-blueprints-3.4/components/webui/scripts/create.py cloudify-manager-blueprints-3.4/components/webui/scripts/start.py cloudify-manager-blueprints-3.4/components/webui/scripts/stop.py cloudify-manager-blueprints-3.4/openstack-manager-blueprint-inputs.yaml cloudify-manager-blueprints-3.4/openstack-manager-blueprint.yaml cloudify-manager-blueprints-3.4/resources/ cloudify-manager-blueprints-3.4/resources/rest/ cloudify-manager-blueprints-3.4/resources/rest/roles_config.yaml cloudify-manager-blueprints-3.4/resources/rest/userstore.yaml cloudify-manager-blueprints-3.4/resources/ssl/ cloudify-manager-blueprints-3.4/resources/ssl/server.crt cloudify-manager-blueprints-3.4/resources/ssl/server.key cloudify-manager-blueprints-3.4/run_test.sh cloudify-manager-blueprints-3.4/simple-manager-blueprint-inputs.yaml cloudify-manager-blueprints-3.4/simple-manager-blueprint.yaml cloudify-manager-blueprints-3.4/tests/ cloudify-manager-blueprints-3.4/tests/bootstrap-sanity-requirements.txt cloudify-manager-blueprints-3.4/tests/sanity.py cloudify-manager-blueprints-3.4/tests/unit-tests/ cloudify-manager-blueprints-3.4/tests/unit-tests/test_upgrade.py cloudify-manager-blueprints-3.4/tests/unit-tests/test_validations.py cloudify-manager-blueprints-3.4/types/ cloudify-manager-blueprints-3.4/types/manager-types.yaml cloudify-manager-blueprints-3.4/vcloud-manager-blueprint-inputs.yaml cloudify-manager-blueprints-3.4/vcloud-manager-blueprint.yaml cloudify-manager-blueprints-3.4/vsphere-manager-blueprint-inputs.yaml cloudify-manager-blueprints-3.4/vsphere-manager-blueprint.yaml ++ python /opt/app/installer/cmtmp/tool.py /opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4 + MRPURL=http://repository.cloudifysource.org/org/cloudify3/3.4.0/ga-RELEASE/cloudify-manager-resources_3.4.0-ga-b400.tar.gz ++ basename http://repository.cloudifysource.org/org/cloudify3/3.4.0/ga-RELEASE/cloudify-manager-resources_3.4.0-ga-b400.tar.gz + MRPFILE=cloudify-manager-resources_3.4.0-ga-b400.tar.gz + wget -qO- http://repository.cloudifysource.org/org/cloudify3/3.4.0/ga-RELEASE/cloudify-manager-resources_3.4.0-ga-b400.tar.gz + tar cf /opt/app/installer/cmtmp/srcs.tar -C /opt/app/installer/cmtmp/tmp/lib cloudify + rm -rf /opt/app/installer/cmtmp/tmp + scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i /opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap /opt/app/installer/cmtmp/srcs.tar centos@10.195.200.42:/tmp/. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + ssh -t -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i /opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap centos@10.195.200.42 'sudo bash -xc "cd /opt; tar xf /tmp/srcs.tar; chown -R root:root /opt/cloudify /opt/manager; rm -rf /tmp/srcs.tar"' Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + cd /opt + tar xf /tmp/srcs.tar + chown -R root:root /opt/cloudify /opt/manager chown: cannot access ‘/opt/manager’: No such file or directory + rm -rf /tmp/srcs.tar + ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -t -i /opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap centos@10.195.200.42 'sudo bash -xc '\''mkdir -p /opt/dcae; if [ -f /tmp/cfy-config.txt ]; then cp /tmp/cfy-config.txt /opt/dcae/config.txt && chmod 644 /opt/dcae/config.txt; fi'\''' Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + mkdir -p /opt/dcae + '[' -f /tmp/cfy-config.txt ']' + cd /opt/app/installer/cmtmp + rm -f /opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4/resources/ssl/server.key /opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4/resources/ssl/server.crt + awk 'BEGIN{x="/dev/null";}/-----BEGIN CERTIFICATE-----/{x="/opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4/resources/ssl/server.crt";}/-----BEGIN PRIVATE KEY-----/{x="/opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4/resources/ssl/server.key";}{print >x;}/-----END /{x="/dev/null";}' + ssh -t -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i /opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap centos@10.195.200.42 'sudo bash -xc "openssl pkcs12 -in /opt/app/dcae-certificate/certificate.pkcs12 -passin file:/opt/app/dcae-certificate/.password -nodes -chain"' Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + openssl pkcs12 -in /opt/app/dcae-certificate/certificate.pkcs12 -passin file:/opt/app/dcae-certificate/.password -nodes -chain Can't open file /opt/app/dcae-certificate/.password Error getting passwords + USESSL=false + '[' -f /opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4/resources/ssl/server.key -a -f /opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4/resources/ssl/server.crt ']' + export CLOUDIFY_USERNAME=admin CLOUDIFY_PASSWORD=encc0fba9f6d618a1a51935b42342b17658 + CLOUDIFY_USERNAME=admin + CLOUDIFY_PASSWORD=encc0fba9f6d618a1a51935b42342b17658 + cd /opt/app/installer/cmtmp/cmbootstrap/cloudify-manager-blueprints-3.4 + cp simple-manager-blueprint.yaml bootstrap-blueprint.yaml + ed bootstrap-blueprint.yaml 28170 28446 + sed -e 's;.*public_ip: .*;public_ip: '\''10.195.200.42'\'';' -e 's;.*private_ip: .*;private_ip: '\''10.0.0.11'\'';' -e 's;.*ssh_user: .*;ssh_user: '\''centos'\'';' -e 's;.*ssh_key_filename: .*;ssh_key_filename: '\''/opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap'\'';' -e 's;.*elasticsearch_java_opts: .*;elasticsearch_java_opts: '\''-Des.cluster.name=4198d02e-7ea7-44fe-a91d-ecb8454f625a'\'';' -e '/ssl_enabled: /s/.*/ssl_enabled: false/' -e '/security_enabled: /s/.*/security_enabled: false/' -e '/admin_password: /s/.*/admin_password: '\''encc0fba9f6d618a1a51935b42342b17658'\''/' -e '/admin_username: /s/.*/admin_username: '\''admin'\''/' -e 's;.*manager_resources_package: .*;manager_resources_package: '\''http://169.254.169.254/nosuchthing/cloudify-manager-resources_3.4.0-ga-b400.tar.gz'\'';' -e 's;.*ignore_bootstrap_validations: .*;ignore_bootstrap_validations: true;' + cat + cfy init -r Initialization completed successfully + cfy bootstrap --install-plugins -p bootstrap-blueprint.yaml -i bootstrap-inputs.yaml Executing bootstrap validation... Collecting https://github.com/cloudify-cosmo/cloudify-fabric-plugin/archive/1.4.1.zip (from -r /tmp/requirements_LPfZjI.txt (line 1)) Downloading https://github.com/cloudify-cosmo/cloudify-fabric-plugin/archive/1.4.1.zip Requirement already satisfied: cloudify-plugins-common>=3.3.1 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: fabric==1.8.3 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: six>=1.8.0 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: proxy-tools==0.1.0 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: cloudify-rest-client==3.4 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: bottle==0.12.7 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: pika==0.9.14 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: networkx==1.8.1 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: jinja2==2.7.2 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: paramiko<1.13,>=1.10 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from fabric==1.8.3->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: requests==2.7.0 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-rest-client==3.4->cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: requests-toolbelt in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-rest-client==3.4->cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: markupsafe in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from jinja2==2.7.2->cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: pycrypto!=2.4,>=2.1 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from paramiko<1.13,>=1.10->fabric==1.8.3->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Requirement already satisfied: ecdsa in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from paramiko<1.13,>=1.10->fabric==1.8.3->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_LPfZjI.txt (line 1)) Installing collected packages: cloudify-fabric-plugin Running setup.py install for cloudify-fabric-plugin: started Running setup.py install for cloudify-fabric-plugin: finished with status 'done' Successfully installed cloudify-fabric-plugin-1.4.1 Processing inputs source: bootstrap-inputs.yaml 2018-01-04 19:13:09 CFY <manager> Starting 'execute_operation' workflow execution 2018-01-04 19:13:09 CFY <manager> [amqp_influx_63aa3] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [manager_host_7aff9] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [logstash_e7d8f] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [mgmt_worker_400da] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [sanity_db880] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [python_runtime_00bd6] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [rest_service_cb328] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [rabbitmq_eaac4] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [nginx_f9d95] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [webui_f7a96] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [manager_resources_a868d] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [manager_configuration_49446] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [elasticsearch_412aa] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [riemann_19b6e] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [java_runtime_255e1] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:09 CFY <manager> [influxdb_583cd] Starting operation cloudify.interfaces.validation.creation 2018-01-04 19:13:10 CFY <manager> [logstash_e7d8f.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [influxdb_583cd.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [rabbitmq_eaac4.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [manager_configuration_49446.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [mgmt_worker_400da.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [amqp_influx_63aa3.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [rest_service_cb328.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [elasticsearch_412aa.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [riemann_19b6e.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [nginx_f9d95.creation] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 CFY <manager> [logstash_e7d8f.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:10 LOG <manager> [logstash_e7d8f.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:10 LOG <manager> [logstash_e7d8f.creation] INFO: Environment prepared successfully 2018-01-04 19:13:11 CFY <manager> [logstash_e7d8f.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:11 CFY <manager> [influxdb_583cd.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:11 LOG <manager> [influxdb_583cd.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:11 LOG <manager> [influxdb_583cd.creation] INFO: Environment prepared successfully 2018-01-04 19:13:12 CFY <manager> [influxdb_583cd.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:12 CFY <manager> [rabbitmq_eaac4.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:12 LOG <manager> [rabbitmq_eaac4.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:12 LOG <manager> [rabbitmq_eaac4.creation] INFO: Environment prepared successfully 2018-01-04 19:13:12 CFY <manager> [rabbitmq_eaac4.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:12 CFY <manager> [manager_configuration_49446.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:12 LOG <manager> [manager_configuration_49446.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:12 LOG <manager> [manager_configuration_49446.creation] INFO: Environment prepared successfully 2018-01-04 19:13:13 CFY <manager> [manager_configuration_49446.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:13 CFY <manager> [mgmt_worker_400da.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:13 LOG <manager> [mgmt_worker_400da.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:13 LOG <manager> [mgmt_worker_400da.creation] INFO: Environment prepared successfully 2018-01-04 19:13:13 CFY <manager> [mgmt_worker_400da.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:13 CFY <manager> [amqp_influx_63aa3.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:13 LOG <manager> [amqp_influx_63aa3.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:13 LOG <manager> [amqp_influx_63aa3.creation] INFO: Environment prepared successfully 2018-01-04 19:13:14 CFY <manager> [amqp_influx_63aa3.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:14 CFY <manager> [rest_service_cb328.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:14 LOG <manager> [rest_service_cb328.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:14 LOG <manager> [rest_service_cb328.creation] INFO: Environment prepared successfully 2018-01-04 19:13:15 CFY <manager> [rest_service_cb328.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:15 CFY <manager> [elasticsearch_412aa.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:15 LOG <manager> [elasticsearch_412aa.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:15 LOG <manager> [elasticsearch_412aa.creation] INFO: Environment prepared successfully 2018-01-04 19:13:15 CFY <manager> [elasticsearch_412aa.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:15 CFY <manager> [riemann_19b6e.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:15 LOG <manager> [riemann_19b6e.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:15 LOG <manager> [riemann_19b6e.creation] INFO: Environment prepared successfully 2018-01-04 19:13:16 CFY <manager> [riemann_19b6e.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:16 CFY <manager> [nginx_f9d95.creation] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:16 LOG <manager> [nginx_f9d95.creation] INFO: Preparing fabric environment... 2018-01-04 19:13:16 LOG <manager> [nginx_f9d95.creation] INFO: Environment prepared successfully 2018-01-04 19:13:17 CFY <manager> [nginx_f9d95.creation] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:17 CFY <manager> [python_runtime_00bd6] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [java_runtime_255e1] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [manager_host_7aff9] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [webui_f7a96] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [sanity_db880] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [manager_resources_a868d] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [logstash_e7d8f] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [influxdb_583cd] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [rabbitmq_eaac4] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [manager_configuration_49446] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [mgmt_worker_400da] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [amqp_influx_63aa3] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [rest_service_cb328] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [elasticsearch_412aa] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [riemann_19b6e] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> [nginx_f9d95] Finished operation cloudify.interfaces.validation.creation 2018-01-04 19:13:17 CFY <manager> 'execute_operation' workflow execution succeeded Bootstrap validation completed successfully Executing manager bootstrap... Collecting https://github.com/cloudify-cosmo/cloudify-fabric-plugin/archive/1.4.1.zip (from -r /tmp/requirements_zP8m_9.txt (line 1)) Downloading https://github.com/cloudify-cosmo/cloudify-fabric-plugin/archive/1.4.1.zip Requirement already satisfied (use --upgrade to upgrade): cloudify-fabric-plugin==1.4.1 from https://github.com/cloudify-cosmo/cloudify-fabric-plugin/archive/1.4.1.zip in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from -r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: cloudify-plugins-common>=3.3.1 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: fabric==1.8.3 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: six>=1.8.0 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: proxy-tools==0.1.0 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: cloudify-rest-client==3.4 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: bottle==0.12.7 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: pika==0.9.14 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: networkx==1.8.1 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: jinja2==2.7.2 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: paramiko<1.13,>=1.10 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from fabric==1.8.3->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: requests==2.7.0 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-rest-client==3.4->cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: requests-toolbelt in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from cloudify-rest-client==3.4->cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: markupsafe in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from jinja2==2.7.2->cloudify-plugins-common>=3.3.1->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: pycrypto!=2.4,>=2.1 in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from paramiko<1.13,>=1.10->fabric==1.8.3->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Requirement already satisfied: ecdsa in /opt/app/installer/dcaeinstall/lib/python2.7/site-packages (from paramiko<1.13,>=1.10->fabric==1.8.3->cloudify-fabric-plugin==1.4.1->-r /tmp/requirements_zP8m_9.txt (line 1)) Processing inputs source: bootstrap-inputs.yaml 2018-01-04 19:13:28 CFY <manager> Starting 'install' workflow execution 2018-01-04 19:13:28 CFY <manager> [manager_host_4f071] Creating node 2018-01-04 19:13:29 CFY <manager> [manager_host_4f071] Configuring node 2018-01-04 19:13:29 CFY <manager> [manager_host_4f071] Starting node 2018-01-04 19:13:30 CFY <manager> [manager_resources_c994e] Creating node 2018-01-04 19:13:30 CFY <manager> [manager_resources_c994e.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:30 CFY <manager> [manager_resources_c994e.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:30 LOG <manager> [manager_resources_c994e.create] INFO: Preparing fabric environment... 2018-01-04 19:13:30 LOG <manager> [manager_resources_c994e.create] INFO: Environment prepared successfully 2018-01-04 19:13:31 LOG <manager> [manager_resources_c994e.create] INFO: Validating Python version... 2018-01-04 19:13:31 LOG <manager> [manager_resources_c994e.create] INFO: Validating supported distributions... 2018-01-04 19:13:31 LOG <manager> [manager_resources_c994e.create] INFO: Validating memory requirement... 2018-01-04 19:13:32 LOG <manager> [manager_resources_c994e.create] INFO: Validating disk space requirement... 2018-01-04 19:13:32 LOG <manager> [manager_resources_c994e.create] INFO: Validating Elasticsearch heap size requirement... 2018-01-04 19:13:32 LOG <manager> [manager_resources_c994e.create] WARNING: Ignoring validation errors. Validation Error: The Manager's Resources Package http://169.254.169.254/nosuchthing/cloudify-manager-resources_3.4.0-ga-b400.tar.gz is not accessible (HTTP Error: 404) 2018-01-04 19:13:32 CFY <manager> [manager_resources_c994e.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:33 CFY <manager> [manager_resources_c994e] Configuring node 2018-01-04 19:13:33 CFY <manager> [manager_resources_c994e.configure] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:33 CFY <manager> [manager_resources_c994e.configure] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:33 LOG <manager> [manager_resources_c994e.configure] INFO: Preparing fabric environment... 2018-01-04 19:13:33 LOG <manager> [manager_resources_c994e.configure] INFO: Environment prepared successfully 2018-01-04 19:13:34 LOG <manager> [manager_resources_c994e.configure] INFO: Saving manager-resources input configuration to /opt/cloudify/manager-resources/node_properties/properties.json 2018-01-04 19:13:37 LOG <manager> [manager_resources_c994e.configure] INFO: Skipping resources package checksum validation... 2018-01-04 19:13:43 CFY <manager> [manager_resources_c994e.configure] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:44 CFY <manager> [manager_resources_c994e] Starting node 2018-01-04 19:13:45 CFY <manager> [manager_configuration_bb27d] Creating node 2018-01-04 19:13:45 CFY <manager> [manager_configuration_bb27d] Configuring node 2018-01-04 19:13:45 CFY <manager> [manager_configuration_bb27d.configure] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:45 CFY <manager> [manager_configuration_bb27d.configure] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:45 LOG <manager> [manager_configuration_bb27d.configure] INFO: Preparing fabric environment... 2018-01-04 19:13:45 LOG <manager> [manager_configuration_bb27d.configure] INFO: Environment prepared successfully 2018-01-04 19:13:46 LOG <manager> [manager_configuration_bb27d.configure] INFO: Saving manager-config input configuration to /opt/cloudify/manager-config/node_properties/properties.json 2018-01-04 19:13:47 LOG <manager> [manager_configuration_bb27d.configure] INFO: Deploying blueprint resource components/manager/scripts/configure_manager.sh to /tmp/configure_manager.sh 2018-01-04 19:13:47 LOG <manager> [manager_configuration_bb27d.configure] INFO: Downloading resource configure_manager.sh to /opt/cloudify/manager-config/resources/configure_manager.sh 2018-01-04 19:13:49 CFY <manager> [manager_configuration_bb27d.configure] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:49 CFY <manager> [manager_configuration_bb27d->manager_host_4f071|postconfigure] Sending task 'script_runner.tasks.run' 2018-01-04 19:13:49 CFY <manager> [manager_configuration_bb27d->manager_host_4f071|postconfigure] Task started 'script_runner.tasks.run' 2018-01-04 19:13:49 LOG <manager> [manager_configuration_bb27d->manager_host_4f071|postconfigure] INFO: Setting Public Manager IP Runtime Property. 2018-01-04 19:13:49 LOG <manager> [manager_configuration_bb27d->manager_host_4f071|postconfigure] INFO: Manager Public IP is: 10.195.200.42 2018-01-04 19:13:49 CFY <manager> [manager_configuration_bb27d->manager_host_4f071|postconfigure] Task succeeded 'script_runner.tasks.run' 2018-01-04 19:13:49 CFY <manager> [manager_configuration_bb27d] Starting node 2018-01-04 19:13:50 CFY <manager> [influxdb_73514] Creating node 2018-01-04 19:13:50 CFY <manager> [rabbitmq_0c517] Creating node 2018-01-04 19:13:50 CFY <manager> [python_runtime_5c4af] Creating node 2018-01-04 19:13:50 CFY <manager> [java_runtime_5c9ad] Creating node 2018-01-04 19:13:50 CFY <manager> [rabbitmq_0c517.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:50 CFY <manager> [influxdb_73514.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:50 CFY <manager> [python_runtime_5c4af.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:50 CFY <manager> [java_runtime_5c9ad.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:50 CFY <manager> [rabbitmq_0c517.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:13:50 LOG <manager> [rabbitmq_0c517.create] INFO: Preparing fabric environment... 2018-01-04 19:13:50 LOG <manager> [rabbitmq_0c517.create] INFO: Environment prepared successfully 2018-01-04 19:13:51 LOG <manager> [rabbitmq_0c517.create] INFO: Saving rabbitmq input configuration to /opt/cloudify/rabbitmq/node_properties/properties.json 2018-01-04 19:13:52 LOG <manager> [rabbitmq_0c517.create] INFO: Installing RabbitMQ... 2018-01-04 19:13:52 LOG <manager> [rabbitmq_0c517.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:13:52 LOG <manager> [rabbitmq_0c517.create] INFO: SELinux is enforcing, setting permissive state... 2018-01-04 19:13:53 LOG <manager> [rabbitmq_0c517.create] INFO: Replacing SELINUX=enforcing with SELINUX=permissive in /etc/selinux/config... 2018-01-04 19:13:53 LOG <manager> [rabbitmq_0c517.create] INFO: Downloading resource rabbitmq_NOTICE.txt to /opt/cloudify/rabbitmq/resources/rabbitmq_NOTICE.txt 2018-01-04 19:13:56 LOG <manager> [rabbitmq_0c517.create] INFO: Checking whether /opt/cloudify/rabbitmq/resources/erlang-17.4-1.el6.x86_64.rpm is already installed... 2018-01-04 19:13:56 LOG <manager> [rabbitmq_0c517.create] INFO: yum installing /opt/cloudify/rabbitmq/resources/erlang-17.4-1.el6.x86_64.rpm... 2018-01-04 19:13:59 LOG <manager> [rabbitmq_0c517.create] INFO: Checking whether /opt/cloudify/rabbitmq/resources/rabbitmq-server-3.5.3-1.noarch.rpm is already installed... 2018-01-04 19:14:00 LOG <manager> [rabbitmq_0c517.create] INFO: yum installing /opt/cloudify/rabbitmq/resources/rabbitmq-server-3.5.3-1.noarch.rpm... 2018-01-04 19:14:01 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying logrotate hourly cron job... 2018-01-04 19:14:02 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying logrotate config... 2018-01-04 19:14:02 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying blueprint resource components/rabbitmq/config/logrotate to /etc/logrotate.d/rabbitmq 2018-01-04 19:14:02 LOG <manager> [rabbitmq_0c517.create] INFO: Downloading resource rabbitmq to /opt/cloudify/rabbitmq/resources/rabbitmq 2018-01-04 19:14:03 LOG <manager> [rabbitmq_0c517.create] INFO: chmoding /etc/logrotate.d/rabbitmq: 644 2018-01-04 19:14:04 LOG <manager> [rabbitmq_0c517.create] INFO: chowning /etc/logrotate.d/rabbitmq by root:root... 2018-01-04 19:14:04 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying systemd EnvironmentFile... 2018-01-04 19:14:04 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying blueprint resource components/rabbitmq/config/cloudify-rabbitmq to /etc/sysconfig/cloudify-rabbitmq 2018-01-04 19:14:04 LOG <manager> [rabbitmq_0c517.create] INFO: Downloading resource cloudify-rabbitmq to /opt/cloudify/rabbitmq/resources/cloudify-rabbitmq 2018-01-04 19:14:05 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying systemd .service file... 2018-01-04 19:14:05 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying blueprint resource components/rabbitmq/config/cloudify-rabbitmq.service to /usr/lib/systemd/system/cloudify-rabbitmq.service 2018-01-04 19:14:05 LOG <manager> [rabbitmq_0c517.create] INFO: Downloading resource cloudify-rabbitmq.service to /opt/cloudify/rabbitmq/resources/cloudify-rabbitmq.service 2018-01-04 19:14:07 LOG <manager> [rabbitmq_0c517.create] INFO: Enabling systemd .service... 2018-01-04 19:14:07 LOG <manager> [rabbitmq_0c517.create] INFO: Configuring File Descriptors Limit... 2018-01-04 19:14:07 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying blueprint resource components/rabbitmq/config/rabbitmq_ulimit.conf to /etc/security/limits.d/rabbitmq.conf 2018-01-04 19:14:07 LOG <manager> [rabbitmq_0c517.create] INFO: Downloading resource rabbitmq.conf to /opt/cloudify/rabbitmq/resources/rabbitmq.conf 2018-01-04 19:14:09 LOG <manager> [rabbitmq_0c517.create] INFO: chowning /var/log/cloudify/rabbitmq by rabbitmq:rabbitmq... 2018-01-04 19:14:21 LOG <manager> [rabbitmq_0c517.create] INFO: Waiting for localhost:5672 to become available... 2018-01-04 19:14:22 LOG <manager> [rabbitmq_0c517.create] INFO: localhost:5672 is open! 2018-01-04 19:14:22 LOG <manager> [rabbitmq_0c517.create] INFO: Enabling RabbitMQ Plugins... 2018-01-04 19:14:25 LOG <manager> [rabbitmq_0c517.create] INFO: Disabling RabbitMQ guest user... 2018-01-04 19:14:27 LOG <manager> [rabbitmq_0c517.create] INFO: Creating new user cloudify:c10udify and setting permissions... 2018-01-04 19:14:28 LOG <manager> [rabbitmq_0c517.create] INFO: Deploying blueprint resource components/rabbitmq/config/rabbitmq.config-nossl to /etc/rabbitmq/rabbitmq.config 2018-01-04 19:14:28 LOG <manager> [rabbitmq_0c517.create] INFO: Downloading resource rabbitmq.config to /opt/cloudify/rabbitmq/resources/rabbitmq.config 2018-01-04 19:14:29 LOG <manager> [rabbitmq_0c517.create] INFO: Stopping systemd service cloudify-rabbitmq... 2018-01-04 19:14:33 CFY <manager> [rabbitmq_0c517.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:14:33 CFY <manager> [influxdb_73514.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:14:33 LOG <manager> [influxdb_73514.create] INFO: Preparing fabric environment... 2018-01-04 19:14:33 LOG <manager> [influxdb_73514.create] INFO: Environment prepared successfully 2018-01-04 19:14:33 LOG <manager> [influxdb_73514.create] INFO: Saving influxdb input configuration to /opt/cloudify/influxdb/node_properties/properties.json 2018-01-04 19:14:34 LOG <manager> [influxdb_73514.create] INFO: Installing InfluxDB... 2018-01-04 19:14:34 LOG <manager> [influxdb_73514.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:14:34 LOG <manager> [influxdb_73514.create] INFO: SELinux is not enforced. 2018-01-04 19:14:35 LOG <manager> [influxdb_73514.create] INFO: Downloading resource influxdb_NOTICE.txt to /opt/cloudify/influxdb/resources/influxdb_NOTICE.txt 2018-01-04 19:14:37 LOG <manager> [influxdb_73514.create] INFO: Checking whether /opt/cloudify/influxdb/resources/influxdb-0.8.8-1.x86_64.rpm is already installed... 2018-01-04 19:14:38 LOG <manager> [influxdb_73514.create] INFO: yum installing /opt/cloudify/influxdb/resources/influxdb-0.8.8-1.x86_64.rpm... 2018-01-04 19:14:40 LOG <manager> [influxdb_73514.create] INFO: Deploying InfluxDB config.toml... 2018-01-04 19:14:40 LOG <manager> [influxdb_73514.create] INFO: Deploying blueprint resource components/influxdb/config/config.toml to /opt/influxdb/shared/config.toml 2018-01-04 19:14:40 LOG <manager> [influxdb_73514.create] INFO: Downloading resource config.toml to /opt/cloudify/influxdb/resources/config.toml 2018-01-04 19:14:41 LOG <manager> [influxdb_73514.create] INFO: Fixing user permissions... 2018-01-04 19:14:42 LOG <manager> [influxdb_73514.create] INFO: chowning /opt/influxdb by influxdb:influxdb... 2018-01-04 19:14:42 LOG <manager> [influxdb_73514.create] INFO: chowning /var/log/cloudify/influxdb by influxdb:influxdb... 2018-01-04 19:14:42 LOG <manager> [influxdb_73514.create] INFO: Deploying systemd EnvironmentFile... 2018-01-04 19:14:42 LOG <manager> [influxdb_73514.create] INFO: Deploying blueprint resource components/influxdb/config/cloudify-influxdb to /etc/sysconfig/cloudify-influxdb 2018-01-04 19:14:42 LOG <manager> [influxdb_73514.create] INFO: Downloading resource cloudify-influxdb to /opt/cloudify/influxdb/resources/cloudify-influxdb 2018-01-04 19:14:43 LOG <manager> [influxdb_73514.create] INFO: Deploying systemd .service file... 2018-01-04 19:14:44 LOG <manager> [influxdb_73514.create] INFO: Deploying blueprint resource components/influxdb/config/cloudify-influxdb.service to /usr/lib/systemd/system/cloudify-influxdb.service 2018-01-04 19:14:44 LOG <manager> [influxdb_73514.create] INFO: Downloading resource cloudify-influxdb.service to /opt/cloudify/influxdb/resources/cloudify-influxdb.service 2018-01-04 19:14:45 LOG <manager> [influxdb_73514.create] INFO: Enabling systemd .service... 2018-01-04 19:14:45 LOG <manager> [influxdb_73514.create] INFO: Path does not exist: /etc/init.d/influxdb. Skipping... 2018-01-04 19:14:46 LOG <manager> [influxdb_73514.create] INFO: Deploying logrotate config... 2018-01-04 19:14:46 LOG <manager> [influxdb_73514.create] INFO: Deploying blueprint resource components/influxdb/config/logrotate to /etc/logrotate.d/influxdb 2018-01-04 19:14:46 LOG <manager> [influxdb_73514.create] INFO: Downloading resource influxdb to /opt/cloudify/influxdb/resources/influxdb 2018-01-04 19:14:47 LOG <manager> [influxdb_73514.create] INFO: chmoding /etc/logrotate.d/influxdb: 644 2018-01-04 19:14:47 LOG <manager> [influxdb_73514.create] INFO: chowning /etc/logrotate.d/influxdb by root:root... 2018-01-04 19:14:48 LOG <manager> [influxdb_73514.create] INFO: Waiting for 10.0.0.11:8086 to become available... 2018-01-04 19:14:48 LOG <manager> [influxdb_73514.create] INFO: 10.0.0.11:8086 is not available yet, retrying... (1/24) 2018-01-04 19:14:50 LOG <manager> [influxdb_73514.create] INFO: 10.0.0.11:8086 is not available yet, retrying... (2/24) 2018-01-04 19:14:52 LOG <manager> [influxdb_73514.create] INFO: 10.0.0.11:8086 is not available yet, retrying... (3/24) 2018-01-04 19:14:54 LOG <manager> [influxdb_73514.create] INFO: 10.0.0.11:8086 is open! 2018-01-04 19:14:54 LOG <manager> [influxdb_73514.create] INFO: Creating InfluxDB Database... 2018-01-04 19:14:54 LOG <manager> [influxdb_73514.create] INFO: Request is: http://10.0.0.11:8086/db?p=root&u=root '{'name': 'cloudify'}' 2018-01-04 19:14:55 LOG <manager> [influxdb_73514.create] INFO: Verifying database create successfully... 2018-01-04 19:14:55 LOG <manager> [influxdb_73514.create] INFO: Databased cloudify created successfully. 2018-01-04 19:14:55 LOG <manager> [influxdb_73514.create] INFO: Stopping systemd service cloudify-influxdb... 2018-01-04 19:14:55 CFY <manager> [influxdb_73514.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:14:55 CFY <manager> [python_runtime_5c4af.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:14:55 LOG <manager> [python_runtime_5c4af.create] INFO: Preparing fabric environment... 2018-01-04 19:14:55 LOG <manager> [python_runtime_5c4af.create] INFO: Environment prepared successfully 2018-01-04 19:14:56 LOG <manager> [python_runtime_5c4af.create] INFO: Saving python input configuration to /opt/cloudify/python/node_properties/properties.json 2018-01-04 19:14:57 LOG <manager> [python_runtime_5c4af.create] INFO: Installing Python Requirements... 2018-01-04 19:14:57 LOG <manager> [python_runtime_5c4af.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:14:57 LOG <manager> [python_runtime_5c4af.create] INFO: SELinux is not enforced. 2018-01-04 19:14:58 LOG <manager> [python_runtime_5c4af.create] INFO: Downloading resource python_NOTICE.txt to /opt/cloudify/python/resources/python_NOTICE.txt 2018-01-04 19:15:00 LOG <manager> [python_runtime_5c4af.create] INFO: Checking whether /opt/cloudify/python/resources/python-pip-7.1.0-1.el7.noarch.rpm is already installed... 2018-01-04 19:15:00 LOG <manager> [python_runtime_5c4af.create] INFO: yum installing /opt/cloudify/python/resources/python-pip-7.1.0-1.el7.noarch.rpm... 2018-01-04 19:15:02 CFY <manager> [python_runtime_5c4af.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:02 CFY <manager> [java_runtime_5c9ad.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:02 LOG <manager> [java_runtime_5c9ad.create] INFO: Preparing fabric environment... 2018-01-04 19:15:02 LOG <manager> [java_runtime_5c9ad.create] INFO: Environment prepared successfully 2018-01-04 19:15:03 LOG <manager> [java_runtime_5c9ad.create] INFO: Saving java input configuration to /opt/cloudify/java/node_properties/properties.json 2018-01-04 19:15:04 LOG <manager> [java_runtime_5c9ad.create] INFO: Installing Java... 2018-01-04 19:15:04 LOG <manager> [java_runtime_5c9ad.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:15:04 LOG <manager> [java_runtime_5c9ad.create] INFO: SELinux is not enforced. 2018-01-04 19:15:04 LOG <manager> [java_runtime_5c9ad.create] INFO: Downloading resource java_NOTICE.txt to /opt/cloudify/java/resources/java_NOTICE.txt 2018-01-04 19:15:06 LOG <manager> [java_runtime_5c9ad.create] INFO: Checking whether /opt/cloudify/java/resources/jre1.8.0_45-1.8.0_45-fcs.x86_64.rpm is already installed... 2018-01-04 19:15:07 LOG <manager> [java_runtime_5c9ad.create] INFO: yum installing /opt/cloudify/java/resources/jre1.8.0_45-1.8.0_45-fcs.x86_64.rpm... 2018-01-04 19:15:12 CFY <manager> [java_runtime_5c9ad.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:12 CFY <manager> [rabbitmq_0c517] Configuring node 2018-01-04 19:15:12 CFY <manager> [python_runtime_5c4af] Configuring node 2018-01-04 19:15:12 CFY <manager> [influxdb_73514] Configuring node 2018-01-04 19:15:12 CFY <manager> [java_runtime_5c9ad] Configuring node 2018-01-04 19:15:13 CFY <manager> [rabbitmq_0c517] Starting node 2018-01-04 19:15:13 CFY <manager> [rabbitmq_0c517.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:13 CFY <manager> [rabbitmq_0c517.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:13 LOG <manager> [rabbitmq_0c517.start] INFO: Preparing fabric environment... 2018-01-04 19:15:13 LOG <manager> [rabbitmq_0c517.start] INFO: Environment prepared successfully 2018-01-04 19:15:13 LOG <manager> [rabbitmq_0c517.start] INFO: Starting RabbitMQ Service... 2018-01-04 19:15:16 LOG <manager> [rabbitmq_0c517.start] INFO: Waiting for localhost:5672 to become available... 2018-01-04 19:15:16 LOG <manager> [rabbitmq_0c517.start] INFO: localhost:5672 is open! 2018-01-04 19:15:26 LOG <manager> [rabbitmq_0c517.start] INFO: Setting RabbitMQ Policies... 2018-01-04 19:15:27 LOG <manager> [rabbitmq_0c517.start] INFO: Setting policy logs_queue_message_policy on queues ^cloudify-logs$ to {"message-ttl": 60000, "max-length": 1000000} 2018-01-04 19:15:27 LOG <manager> [rabbitmq_0c517.start] INFO: Setting policy events_queue_message_policy on queues ^cloudify-events$ to {"message-ttl": 60000, "max-length": 1000000} 2018-01-04 19:15:28 LOG <manager> [rabbitmq_0c517.start] INFO: Setting policy metrics_queue_message_policy on queues ^amq\.gen.*$ to {"message-ttl": 60000, "max-length": 1000000} 2018-01-04 19:15:29 LOG <manager> [rabbitmq_0c517.start] INFO: Setting policy riemann_deployment_queues_message_ttl on queues ^.*-riemann$ to {"message-ttl": 60000, "max-length": 1000000} 2018-01-04 19:15:30 LOG <manager> [rabbitmq_0c517.start] INFO: Starting systemd service cloudify-rabbitmq... 2018-01-04 19:15:30 LOG <manager> [rabbitmq_0c517.start] INFO: rabbitmq is running 2018-01-04 19:15:31 CFY <manager> [rabbitmq_0c517.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:31 CFY <manager> [python_runtime_5c4af] Starting node 2018-01-04 19:15:31 CFY <manager> [influxdb_73514] Starting node 2018-01-04 19:15:31 CFY <manager> [java_runtime_5c9ad] Starting node 2018-01-04 19:15:31 CFY <manager> [python_runtime_5c4af.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:31 CFY <manager> [influxdb_73514.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:31 CFY <manager> [java_runtime_5c9ad.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:31 CFY <manager> [python_runtime_5c4af.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:31 LOG <manager> [python_runtime_5c4af.start] INFO: Preparing fabric environment... 2018-01-04 19:15:31 LOG <manager> [python_runtime_5c4af.start] INFO: Environment prepared successfully 2018-01-04 19:15:32 CFY <manager> [python_runtime_5c4af.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:32 CFY <manager> [influxdb_73514.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:32 LOG <manager> [influxdb_73514.start] INFO: Preparing fabric environment... 2018-01-04 19:15:32 LOG <manager> [influxdb_73514.start] INFO: Environment prepared successfully 2018-01-04 19:15:33 LOG <manager> [influxdb_73514.start] INFO: Starting InfluxDB Service... 2018-01-04 19:15:33 LOG <manager> [influxdb_73514.start] INFO: Starting systemd service cloudify-influxdb... 2018-01-04 19:15:33 LOG <manager> [influxdb_73514.start] INFO: influxdb is running 2018-01-04 19:15:33 LOG <manager> [influxdb_73514.start] WARNING: <urlopen error [Errno 111] Connection refused>, Retrying in 3 seconds... 2018-01-04 19:15:36 LOG <manager> [influxdb_73514.start] WARNING: <urlopen error [Errno 111] Connection refused>, Retrying in 6 seconds... 2018-01-04 19:15:43 CFY <manager> [influxdb_73514.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:43 CFY <manager> [java_runtime_5c9ad.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:43 LOG <manager> [java_runtime_5c9ad.start] INFO: Preparing fabric environment... 2018-01-04 19:15:43 LOG <manager> [java_runtime_5c9ad.start] INFO: Environment prepared successfully 2018-01-04 19:15:43 CFY <manager> [java_runtime_5c9ad.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:44 CFY <manager> [amqp_influx_ea8bf] Creating node 2018-01-04 19:15:44 CFY <manager> [amqp_influx_ea8bf.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:44 CFY <manager> [amqp_influx_ea8bf.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:44 LOG <manager> [amqp_influx_ea8bf.create] INFO: Preparing fabric environment... 2018-01-04 19:15:44 LOG <manager> [amqp_influx_ea8bf.create] INFO: Environment prepared successfully 2018-01-04 19:15:44 LOG <manager> [amqp_influx_ea8bf.create] INFO: Saving amqpinflux input configuration to /opt/cloudify/amqpinflux/node_properties/properties.json 2018-01-04 19:15:46 LOG <manager> [amqp_influx_ea8bf.create] INFO: Installing AQMPInflux... 2018-01-04 19:15:46 LOG <manager> [amqp_influx_ea8bf.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:15:46 LOG <manager> [amqp_influx_ea8bf.create] INFO: SELinux is not enforced. 2018-01-04 19:15:47 LOG <manager> [amqp_influx_ea8bf.create] INFO: Downloading resource amqpinflux_NOTICE.txt to /opt/cloudify/amqpinflux/resources/amqpinflux_NOTICE.txt 2018-01-04 19:15:49 LOG <manager> [amqp_influx_ea8bf.create] INFO: Checking whether /opt/cloudify/amqpinflux/resources/cloudify-amqp-influx-3.4.0-ga_b400.x86_64.rpm is already installed... 2018-01-04 19:15:50 LOG <manager> [amqp_influx_ea8bf.create] INFO: yum installing /opt/cloudify/amqpinflux/resources/cloudify-amqp-influx-3.4.0-ga_b400.x86_64.rpm... 2018-01-04 19:15:53 LOG <manager> [amqp_influx_ea8bf.create] INFO: Checking whether user amqpinflux exists... 2018-01-04 19:15:53 LOG <manager> [amqp_influx_ea8bf.create] INFO: Creating user amqpinflux, home: /opt/amqpinflux... 2018-01-04 19:15:54 LOG <manager> [amqp_influx_ea8bf.create] WARNING: Broker SSL cert supplied but SSL not enabled (broker_ssl_enabled is False). 2018-01-04 19:15:54 LOG <manager> [amqp_influx_ea8bf.create] INFO: Fixing permissions... 2018-01-04 19:15:54 LOG <manager> [amqp_influx_ea8bf.create] INFO: chowning /opt/amqpinflux by amqpinflux:amqpinflux... 2018-01-04 19:15:54 LOG <manager> [amqp_influx_ea8bf.create] INFO: Deploying systemd EnvironmentFile... 2018-01-04 19:15:54 LOG <manager> [amqp_influx_ea8bf.create] INFO: Deploying blueprint resource components/amqpinflux/config/cloudify-amqpinflux to /etc/sysconfig/cloudify-amqpinflux 2018-01-04 19:15:54 LOG <manager> [amqp_influx_ea8bf.create] INFO: Downloading resource cloudify-amqpinflux to /opt/cloudify/amqpinflux/resources/cloudify-amqpinflux 2018-01-04 19:15:56 LOG <manager> [amqp_influx_ea8bf.create] INFO: Deploying systemd .service file... 2018-01-04 19:15:56 LOG <manager> [amqp_influx_ea8bf.create] INFO: Deploying blueprint resource components/amqpinflux/config/cloudify-amqpinflux.service to /usr/lib/systemd/system/cloudify-amqpinflux.service 2018-01-04 19:15:56 LOG <manager> [amqp_influx_ea8bf.create] INFO: Downloading resource cloudify-amqpinflux.service to /opt/cloudify/amqpinflux/resources/cloudify-amqpinflux.service 2018-01-04 19:15:57 LOG <manager> [amqp_influx_ea8bf.create] INFO: Enabling systemd .service... 2018-01-04 19:15:58 CFY <manager> [amqp_influx_ea8bf.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:58 CFY <manager> [elasticsearch_75b27] Creating node 2018-01-04 19:15:58 CFY <manager> [elasticsearch_75b27.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:58 CFY <manager> [elasticsearch_75b27.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:15:58 LOG <manager> [elasticsearch_75b27.create] INFO: Preparing fabric environment... 2018-01-04 19:15:58 LOG <manager> [elasticsearch_75b27.create] INFO: Environment prepared successfully 2018-01-04 19:15:59 LOG <manager> [elasticsearch_75b27.create] INFO: Saving elasticsearch input configuration to /opt/cloudify/elasticsearch/node_properties/properties.json 2018-01-04 19:16:00 LOG <manager> [elasticsearch_75b27.create] INFO: Installing Elasticsearch... 2018-01-04 19:16:00 LOG <manager> [elasticsearch_75b27.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:16:00 LOG <manager> [elasticsearch_75b27.create] INFO: SELinux is not enforced. 2018-01-04 19:16:00 LOG <manager> [elasticsearch_75b27.create] INFO: Downloading resource elasticsearch_NOTICE.txt to /opt/cloudify/elasticsearch/resources/elasticsearch_NOTICE.txt 2018-01-04 19:16:03 LOG <manager> [elasticsearch_75b27.create] INFO: Checking whether /opt/cloudify/elasticsearch/resources/elasticsearch-1.6.0.noarch.rpm is already installed... 2018-01-04 19:16:04 LOG <manager> [elasticsearch_75b27.create] INFO: yum installing /opt/cloudify/elasticsearch/resources/elasticsearch-1.6.0.noarch.rpm... 2018-01-04 19:16:05 LOG <manager> [elasticsearch_75b27.create] INFO: Chowning /var/log/cloudify/elasticsearch by elasticsearch user... 2018-01-04 19:16:05 LOG <manager> [elasticsearch_75b27.create] INFO: chowning /var/log/cloudify/elasticsearch by elasticsearch:elasticsearch... 2018-01-04 19:16:06 LOG <manager> [elasticsearch_75b27.create] INFO: Creating systemd unit override... 2018-01-04 19:16:06 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying blueprint resource components/elasticsearch/config/restart.conf to /etc/systemd/system/elasticsearch.service.d/restart.conf 2018-01-04 19:16:06 LOG <manager> [elasticsearch_75b27.create] INFO: Downloading resource restart.conf to /opt/cloudify/elasticsearch/resources/restart.conf 2018-01-04 19:16:07 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying Elasticsearch Configuration... 2018-01-04 19:16:07 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying blueprint resource components/elasticsearch/config/elasticsearch.yml to /etc/elasticsearch/elasticsearch.yml 2018-01-04 19:16:08 LOG <manager> [elasticsearch_75b27.create] INFO: Downloading resource elasticsearch.yml to /opt/cloudify/elasticsearch/resources/elasticsearch.yml 2018-01-04 19:16:09 LOG <manager> [elasticsearch_75b27.create] INFO: chowning /etc/elasticsearch/elasticsearch.yml by elasticsearch:elasticsearch... 2018-01-04 19:16:09 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying elasticsearch logging configuration file... 2018-01-04 19:16:09 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying blueprint resource components/elasticsearch/config/logging.yml to /etc/elasticsearch/logging.yml 2018-01-04 19:16:09 LOG <manager> [elasticsearch_75b27.create] INFO: Downloading resource logging.yml to /opt/cloudify/elasticsearch/resources/logging.yml 2018-01-04 19:16:10 LOG <manager> [elasticsearch_75b27.create] INFO: chowning /etc/elasticsearch/logging.yml by elasticsearch:elasticsearch... 2018-01-04 19:16:11 LOG <manager> [elasticsearch_75b27.create] INFO: Creating Elasticsearch scripts folder and additional external Elasticsearch scripts... 2018-01-04 19:16:11 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying blueprint resource components/elasticsearch/config/scripts/append.groovy to /etc/elasticsearch/scripts/append.groovy 2018-01-04 19:16:11 LOG <manager> [elasticsearch_75b27.create] INFO: Downloading resource append.groovy to /opt/cloudify/elasticsearch/resources/append.groovy 2018-01-04 19:16:12 LOG <manager> [elasticsearch_75b27.create] INFO: Setting Elasticsearch Heap Size... 2018-01-04 19:16:13 LOG <manager> [elasticsearch_75b27.create] INFO: Replacing (?:#|)ES_HEAP_SIZE=(.*) with ES_HEAP_SIZE=2g in /etc/sysconfig/elasticsearch... 2018-01-04 19:16:13 LOG <manager> [elasticsearch_75b27.create] INFO: Setting additional JAVA_OPTS... 2018-01-04 19:16:13 LOG <manager> [elasticsearch_75b27.create] INFO: Replacing (?:#|)ES_JAVA_OPTS=(.*) with ES_JAVA_OPTS=-Des.cluster.name=4198d02e-7ea7-44fe-a91d-ecb8454f625a in /etc/sysconfig/elasticsearch... 2018-01-04 19:16:14 LOG <manager> [elasticsearch_75b27.create] INFO: Setting Elasticsearch logs path... 2018-01-04 19:16:14 LOG <manager> [elasticsearch_75b27.create] INFO: Replacing (?:#|)LOG_DIR=(.*) with LOG_DIR=/var/log/cloudify/elasticsearch in /etc/sysconfig/elasticsearch... 2018-01-04 19:16:14 LOG <manager> [elasticsearch_75b27.create] INFO: Replacing (?:#|)ES_GC_LOG_FILE=(.*) with ES_GC_LOG_FILE=/var/log/cloudify/elasticsearch/gc.log in /etc/sysconfig/elasticsearch... 2018-01-04 19:16:15 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying logrotate config... 2018-01-04 19:16:15 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying blueprint resource components/elasticsearch/config/logrotate to /etc/logrotate.d/elasticsearch 2018-01-04 19:16:15 LOG <manager> [elasticsearch_75b27.create] INFO: Downloading resource elasticsearch to /opt/cloudify/elasticsearch/resources/elasticsearch 2018-01-04 19:16:16 LOG <manager> [elasticsearch_75b27.create] INFO: chmoding /etc/logrotate.d/elasticsearch: 644 2018-01-04 19:16:17 LOG <manager> [elasticsearch_75b27.create] INFO: chowning /etc/logrotate.d/elasticsearch by root:root... 2018-01-04 19:16:17 LOG <manager> [elasticsearch_75b27.create] INFO: Installing Elasticsearch Curator... 2018-01-04 19:16:18 LOG <manager> [elasticsearch_75b27.create] INFO: Checking whether /opt/cloudify/elasticsearch/resources/elasticsearch-curator-3.2.3-1.x86_64.rpm is already installed... 2018-01-04 19:16:18 LOG <manager> [elasticsearch_75b27.create] INFO: yum installing /opt/cloudify/elasticsearch/resources/elasticsearch-curator-3.2.3-1.x86_64.rpm... 2018-01-04 19:16:20 LOG <manager> [elasticsearch_75b27.create] INFO: Configuring Elasticsearch Index Rotation cronjob for logstash-YYYY.mm.dd index patterns... 2018-01-04 19:16:20 LOG <manager> [elasticsearch_75b27.create] INFO: Deploying blueprint resource components/elasticsearch/scripts/rotate_es_indices to /etc/cron.daily/rotate_es_indices 2018-01-04 19:16:20 LOG <manager> [elasticsearch_75b27.create] INFO: Downloading resource rotate_es_indices to /opt/cloudify/elasticsearch/resources/rotate_es_indices 2018-01-04 19:16:21 LOG <manager> [elasticsearch_75b27.create] INFO: chowning /etc/cron.daily/rotate_es_indices by root:root... 2018-01-04 19:16:22 LOG <manager> [elasticsearch_75b27.create] INFO: Enabling systemd service elasticsearch... 2018-01-04 19:16:22 LOG <manager> [elasticsearch_75b27.create] INFO: Waiting for 10.0.0.11:9200 to become available... 2018-01-04 19:16:22 LOG <manager> [elasticsearch_75b27.create] INFO: 10.0.0.11:9200 is not available yet, retrying... (1/24) 2018-01-04 19:16:24 LOG <manager> [elasticsearch_75b27.create] INFO: 10.0.0.11:9200 is not available yet, retrying... (2/24) 2018-01-04 19:16:27 LOG <manager> [elasticsearch_75b27.create] INFO: 10.0.0.11:9200 is not available yet, retrying... (3/24) 2018-01-04 19:16:29 LOG <manager> [elasticsearch_75b27.create] INFO: 10.0.0.11:9200 is open! 2018-01-04 19:16:29 LOG <manager> [elasticsearch_75b27.create] INFO: Deleting `cloudify_storage` index if exists... 2018-01-04 19:16:29 LOG <manager> [elasticsearch_75b27.create] INFO: Failed to DELETE http://10.0.0.11:9200/cloudify_storage/ (reason: Not Found) 2018-01-04 19:16:29 LOG <manager> [elasticsearch_75b27.create] INFO: Creating `cloudify_storage` index... 2018-01-04 19:16:30 LOG <manager> [elasticsearch_75b27.create] INFO: Declaring blueprint mapping... 2018-01-04 19:16:30 LOG <manager> [elasticsearch_75b27.create] INFO: Declaring deployment mapping... 2018-01-04 19:16:30 LOG <manager> [elasticsearch_75b27.create] INFO: Declaring execution mapping... 2018-01-04 19:16:30 LOG <manager> [elasticsearch_75b27.create] INFO: Declaring node mapping... 2018-01-04 19:16:30 LOG <manager> [elasticsearch_75b27.create] INFO: Declaring node instance mapping... 2018-01-04 19:16:31 LOG <manager> [elasticsearch_75b27.create] INFO: Declaring deployment modification mapping... 2018-01-04 19:16:31 LOG <manager> [elasticsearch_75b27.create] INFO: Declaring deployment update mapping... 2018-01-04 19:16:31 LOG <manager> [elasticsearch_75b27.create] INFO: Waiting for shards to be active... 2018-01-04 19:16:31 CFY <manager> [elasticsearch_75b27.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:31 CFY <manager> [amqp_influx_ea8bf] Configuring node 2018-01-04 19:16:32 CFY <manager> [elasticsearch_75b27] Configuring node 2018-01-04 19:16:32 CFY <manager> [amqp_influx_ea8bf] Starting node 2018-01-04 19:16:32 CFY <manager> [amqp_influx_ea8bf.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:32 CFY <manager> [amqp_influx_ea8bf.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:32 LOG <manager> [amqp_influx_ea8bf.start] INFO: Preparing fabric environment... 2018-01-04 19:16:32 LOG <manager> [amqp_influx_ea8bf.start] INFO: Environment prepared successfully 2018-01-04 19:16:33 LOG <manager> [amqp_influx_ea8bf.start] INFO: Starting AMQP-Influx Broker Service... 2018-01-04 19:16:33 LOG <manager> [amqp_influx_ea8bf.start] INFO: Starting systemd service cloudify-amqpinflux... 2018-01-04 19:16:33 CFY <manager> [amqp_influx_ea8bf.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:33 CFY <manager> [elasticsearch_75b27] Starting node 2018-01-04 19:16:33 CFY <manager> [elasticsearch_75b27.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:33 CFY <manager> [elasticsearch_75b27.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:33 LOG <manager> [elasticsearch_75b27.start] INFO: Preparing fabric environment... 2018-01-04 19:16:33 LOG <manager> [elasticsearch_75b27.start] INFO: Environment prepared successfully 2018-01-04 19:16:34 LOG <manager> [elasticsearch_75b27.start] INFO: Starting Elasticsearch Service... 2018-01-04 19:16:34 LOG <manager> [elasticsearch_75b27.start] INFO: Starting systemd service elasticsearch... 2018-01-04 19:16:34 LOG <manager> [elasticsearch_75b27.start] INFO: elasticsearch is running 2018-01-04 19:16:35 CFY <manager> [elasticsearch_75b27.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:35 CFY <manager> [rest_service_ec35b] Creating node 2018-01-04 19:16:35 CFY <manager> [logstash_2a99b] Creating node 2018-01-04 19:16:36 CFY <manager> [logstash_2a99b.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:36 CFY <manager> [rest_service_ec35b.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:36 CFY <manager> [logstash_2a99b.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:36 LOG <manager> [logstash_2a99b.create] INFO: Preparing fabric environment... 2018-01-04 19:16:36 LOG <manager> [logstash_2a99b.create] INFO: Environment prepared successfully 2018-01-04 19:16:36 LOG <manager> [logstash_2a99b.create] INFO: Saving logstash input configuration to /opt/cloudify/logstash/node_properties/properties.json 2018-01-04 19:16:38 LOG <manager> [logstash_2a99b.create] INFO: Installing Logstash... 2018-01-04 19:16:38 LOG <manager> [logstash_2a99b.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:16:38 LOG <manager> [logstash_2a99b.create] INFO: SELinux is not enforced. 2018-01-04 19:16:38 LOG <manager> [logstash_2a99b.create] INFO: Downloading resource logstash_NOTICE.txt to /opt/cloudify/logstash/resources/logstash_NOTICE.txt 2018-01-04 19:16:41 LOG <manager> [logstash_2a99b.create] INFO: Checking whether /opt/cloudify/logstash/resources/logstash-1.5.0-1.noarch.rpm is already installed... 2018-01-04 19:16:41 LOG <manager> [logstash_2a99b.create] INFO: yum installing /opt/cloudify/logstash/resources/logstash-1.5.0-1.noarch.rpm... 2018-01-04 19:16:48 LOG <manager> [logstash_2a99b.create] INFO: chowning /var/log/cloudify/logstash by logstash:logstash... 2018-01-04 19:16:48 LOG <manager> [logstash_2a99b.create] INFO: Creating systemd unit override... 2018-01-04 19:16:48 LOG <manager> [logstash_2a99b.create] INFO: Deploying blueprint resource components/logstash/config/restart.conf to /etc/systemd/system/logstash.service.d/restart.conf 2018-01-04 19:16:49 LOG <manager> [logstash_2a99b.create] INFO: Downloading resource restart.conf to /opt/cloudify/logstash/resources/restart.conf 2018-01-04 19:16:50 LOG <manager> [logstash_2a99b.create] INFO: Deploying Logstash conf... 2018-01-04 19:16:50 LOG <manager> [logstash_2a99b.create] INFO: Deploying blueprint resource components/logstash/config/logstash.conf to /etc/logstash/conf.d/logstash.conf 2018-01-04 19:16:50 LOG <manager> [logstash_2a99b.create] INFO: Downloading resource logstash.conf to /opt/cloudify/logstash/resources/logstash.conf 2018-01-04 19:16:51 LOG <manager> [logstash_2a99b.create] INFO: Replacing sysconfig/\$name with sysconfig/cloudify-$name in /etc/init.d/logstash... 2018-01-04 19:16:52 LOG <manager> [logstash_2a99b.create] INFO: chmoding /etc/init.d/logstash: 755 2018-01-04 19:16:52 LOG <manager> [logstash_2a99b.create] INFO: chowning /etc/init.d/logstash by root:root... 2018-01-04 19:16:52 LOG <manager> [logstash_2a99b.create] INFO: Deploying Logstash sysconfig... 2018-01-04 19:16:52 LOG <manager> [logstash_2a99b.create] INFO: Deploying blueprint resource components/logstash/config/cloudify-logstash to /etc/sysconfig/cloudify-logstash 2018-01-04 19:16:52 LOG <manager> [logstash_2a99b.create] INFO: Downloading resource cloudify-logstash to /opt/cloudify/logstash/resources/cloudify-logstash 2018-01-04 19:16:54 LOG <manager> [logstash_2a99b.create] INFO: Deploying logrotate config... 2018-01-04 19:16:54 LOG <manager> [logstash_2a99b.create] INFO: Deploying blueprint resource components/logstash/config/logrotate to /etc/logrotate.d/logstash 2018-01-04 19:16:54 LOG <manager> [logstash_2a99b.create] INFO: Downloading resource logstash to /opt/cloudify/logstash/resources/logstash 2018-01-04 19:16:55 LOG <manager> [logstash_2a99b.create] INFO: chmoding /etc/logrotate.d/logstash: 644 2018-01-04 19:16:55 LOG <manager> [logstash_2a99b.create] INFO: chowning /etc/logrotate.d/logstash by root:root... 2018-01-04 19:16:56 CFY <manager> [logstash_2a99b.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:56 CFY <manager> [rest_service_ec35b.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:16:56 LOG <manager> [rest_service_ec35b.create] INFO: Preparing fabric environment... 2018-01-04 19:16:56 LOG <manager> [rest_service_ec35b.create] INFO: Environment prepared successfully 2018-01-04 19:16:57 LOG <manager> [rest_service_ec35b.create] INFO: Saving restservice input configuration to /opt/cloudify/restservice/node_properties/properties.json 2018-01-04 19:16:57 LOG <manager> [rest_service_ec35b.create] INFO: Installing REST Service... 2018-01-04 19:16:57 LOG <manager> [rest_service_ec35b.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:16:58 LOG <manager> [rest_service_ec35b.create] INFO: SELinux is not enforced. 2018-01-04 19:16:58 LOG <manager> [rest_service_ec35b.create] INFO: Downloading resource restservice_NOTICE.txt to /opt/cloudify/restservice/resources/restservice_NOTICE.txt 2018-01-04 19:17:00 LOG <manager> [rest_service_ec35b.create] WARNING: Broker SSL cert supplied but SSL not enabled (broker_ssl_enabled is False). 2018-01-04 19:17:01 LOG <manager> [rest_service_ec35b.create] INFO: Checking whether /opt/cloudify/restservice/resources/cloudify-rest-service-3.4.0-ga_b400.x86_64.rpm is already installed... 2018-01-04 19:17:02 LOG <manager> [rest_service_ec35b.create] INFO: yum installing /opt/cloudify/restservice/resources/cloudify-rest-service-3.4.0-ga_b400.x86_64.rpm... 2018-01-04 19:17:28 LOG <manager> [rest_service_ec35b.create] INFO: Installing Optional Packages if supplied... 2018-01-04 19:17:28 LOG <manager> [rest_service_ec35b.create] INFO: Deploying logrotate config... 2018-01-04 19:17:28 LOG <manager> [rest_service_ec35b.create] INFO: Deploying blueprint resource components/restservice/config/logrotate to /etc/logrotate.d/restservice 2018-01-04 19:17:28 LOG <manager> [rest_service_ec35b.create] INFO: Downloading resource restservice to /opt/cloudify/restservice/resources/restservice 2018-01-04 19:17:29 LOG <manager> [rest_service_ec35b.create] INFO: chmoding /etc/logrotate.d/restservice: 644 2018-01-04 19:17:30 LOG <manager> [rest_service_ec35b.create] INFO: chowning /etc/logrotate.d/restservice by root:root... 2018-01-04 19:17:30 LOG <manager> [rest_service_ec35b.create] INFO: Copying role configuration files... 2018-01-04 19:17:30 LOG <manager> [rest_service_ec35b.create] INFO: Deploying blueprint resource resources/rest/roles_config.yaml to /opt/manager/roles_config.yaml 2018-01-04 19:17:30 LOG <manager> [rest_service_ec35b.create] INFO: Downloading resource roles_config.yaml to /opt/cloudify/restservice/resources/roles_config.yaml 2018-01-04 19:17:31 LOG <manager> [rest_service_ec35b.create] INFO: Deploying blueprint resource resources/rest/userstore.yaml to /opt/manager/userstore.yaml 2018-01-04 19:17:31 LOG <manager> [rest_service_ec35b.create] INFO: Downloading resource userstore.yaml to /opt/cloudify/restservice/resources/userstore.yaml 2018-01-04 19:17:33 LOG <manager> [rest_service_ec35b.create] INFO: Deploying REST Service Configuration file... 2018-01-04 19:17:33 LOG <manager> [rest_service_ec35b.create] INFO: Deploying blueprint resource components/restservice/config/cloudify-rest.conf to /opt/manager/cloudify-rest.conf 2018-01-04 19:17:33 LOG <manager> [rest_service_ec35b.create] INFO: Downloading resource cloudify-rest.conf to /opt/cloudify/restservice/resources/cloudify-rest.conf 2018-01-04 19:17:34 CFY <manager> [rest_service_ec35b.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:35 CFY <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:35 CFY <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:35 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Preparing fabric environment... 2018-01-04 19:17:35 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Environment prepared successfully 2018-01-04 19:17:35 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Deploying REST Security configuration file... 2018-01-04 19:17:35 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Loading security configuration 2018-01-04 19:17:36 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Deploying systemd EnvironmentFile... 2018-01-04 19:17:36 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/restservice/config/cloudify-restservice to /etc/sysconfig/cloudify-restservice 2018-01-04 19:17:36 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Downloading resource cloudify-restservice to /opt/cloudify/restservice/resources/cloudify-restservice 2018-01-04 19:17:37 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Deploying systemd .service file... 2018-01-04 19:17:37 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/restservice/config/cloudify-restservice.service to /usr/lib/systemd/system/cloudify-restservice.service 2018-01-04 19:17:38 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Downloading resource cloudify-restservice.service to /opt/cloudify/restservice/resources/cloudify-restservice.service 2018-01-04 19:17:39 LOG <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] INFO: Enabling systemd .service... 2018-01-04 19:17:39 CFY <manager> [rest_service_ec35b->manager_configuration_bb27d|preconfigure] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:39 CFY <manager> [logstash_2a99b] Configuring node 2018-01-04 19:17:40 CFY <manager> [rest_service_ec35b] Configuring node 2018-01-04 19:17:40 CFY <manager> [rest_service_ec35b.configure] Sending task 'fabric_plugin.tasks.run_task' 2018-01-04 19:17:40 CFY <manager> [rest_service_ec35b.configure] Task started 'fabric_plugin.tasks.run_task' 2018-01-04 19:17:40 LOG <manager> [rest_service_ec35b.configure] INFO: Running task: install_plugins from components/restservice/scripts/install_plugins.py 2018-01-04 19:17:40 LOG <manager> [rest_service_ec35b.configure] INFO: Preparing fabric environment... 2018-01-04 19:17:40 LOG <manager> [rest_service_ec35b.configure] INFO: Environment prepared successfully 2018-01-04 19:17:40 LOG <manager> [rest_service_ec35b.configure] INFO: Installing plugins 2018-01-04 19:17:40 CFY <manager> [rest_service_ec35b.configure] Task succeeded 'fabric_plugin.tasks.run_task' 2018-01-04 19:17:40 CFY <manager> [logstash_2a99b] Starting node 2018-01-04 19:17:40 CFY <manager> [logstash_2a99b.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:40 CFY <manager> [logstash_2a99b.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:40 LOG <manager> [logstash_2a99b.start] INFO: Preparing fabric environment... 2018-01-04 19:17:40 LOG <manager> [logstash_2a99b.start] INFO: Environment prepared successfully 2018-01-04 19:17:41 LOG <manager> [logstash_2a99b.start] INFO: Starting Logstash Service... 2018-01-04 19:17:41 LOG <manager> [logstash_2a99b.start] INFO: Starting systemd service logstash... 2018-01-04 19:17:42 LOG <manager> [logstash_2a99b.start] INFO: logstash is running 2018-01-04 19:17:42 CFY <manager> [logstash_2a99b.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:42 CFY <manager> [rest_service_ec35b] Starting node 2018-01-04 19:17:42 CFY <manager> [rest_service_ec35b.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:42 CFY <manager> [rest_service_ec35b.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:42 LOG <manager> [rest_service_ec35b.start] INFO: Preparing fabric environment... 2018-01-04 19:17:42 LOG <manager> [rest_service_ec35b.start] INFO: Environment prepared successfully 2018-01-04 19:17:42 LOG <manager> [rest_service_ec35b.start] INFO: Starting Cloudify REST Service... 2018-01-04 19:17:43 LOG <manager> [rest_service_ec35b.start] INFO: Starting systemd service cloudify-restservice... 2018-01-04 19:17:43 LOG <manager> [rest_service_ec35b.start] INFO: restservice is running 2018-01-04 19:17:44 CFY <manager> [rest_service_ec35b.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:45 CFY <manager> [nginx_f39ff] Creating node 2018-01-04 19:17:45 CFY <manager> [webui_1fb18] Creating node 2018-01-04 19:17:45 CFY <manager> [webui_1fb18.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:45 CFY <manager> [nginx_f39ff.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:45 CFY <manager> [webui_1fb18.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:17:45 LOG <manager> [webui_1fb18.create] INFO: Preparing fabric environment... 2018-01-04 19:17:45 LOG <manager> [webui_1fb18.create] INFO: Environment prepared successfully 2018-01-04 19:17:45 LOG <manager> [webui_1fb18.create] INFO: Saving webui input configuration to /opt/cloudify/webui/node_properties/properties.json 2018-01-04 19:17:46 LOG <manager> [webui_1fb18.create] INFO: Installing Cloudify's WebUI... 2018-01-04 19:17:46 LOG <manager> [webui_1fb18.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:17:46 LOG <manager> [webui_1fb18.create] INFO: SELinux is not enforced. 2018-01-04 19:17:47 LOG <manager> [webui_1fb18.create] INFO: Downloading resource webui_NOTICE.txt to /opt/cloudify/webui/resources/webui_NOTICE.txt 2018-01-04 19:17:49 LOG <manager> [webui_1fb18.create] INFO: Checking whether user webui exists... 2018-01-04 19:17:49 LOG <manager> [webui_1fb18.create] INFO: Creating user webui, home: /opt/cloudify-ui... 2018-01-04 19:17:50 LOG <manager> [webui_1fb18.create] INFO: Installing NodeJS... 2018-01-04 19:17:51 LOG <manager> [webui_1fb18.create] INFO: Installing Cloudify's WebUI... 2018-01-04 19:17:53 LOG <manager> [webui_1fb18.create] INFO: Installing Grafana... 2018-01-04 19:17:55 LOG <manager> [webui_1fb18.create] INFO: Deploying WebUI Configuration... 2018-01-04 19:17:55 LOG <manager> [webui_1fb18.create] INFO: Deploying blueprint resource components/webui/config/gsPresets.json to /opt/cloudify-ui/backend/gsPresets.json 2018-01-04 19:17:55 LOG <manager> [webui_1fb18.create] INFO: Downloading resource gsPresets.json to /opt/cloudify/webui/resources/gsPresets.json 2018-01-04 19:17:56 LOG <manager> [webui_1fb18.create] INFO: Deploying Grafana Configuration... 2018-01-04 19:17:56 LOG <manager> [webui_1fb18.create] INFO: Deploying blueprint resource components/webui/config/grafana_config.js to /opt/cloudify-ui/grafana/config.js 2018-01-04 19:17:56 LOG <manager> [webui_1fb18.create] INFO: Downloading resource config.js to /opt/cloudify/webui/resources/config.js 2018-01-04 19:17:58 LOG <manager> [webui_1fb18.create] INFO: Fixing permissions... 2018-01-04 19:17:58 LOG <manager> [webui_1fb18.create] INFO: chowning /opt/cloudify-ui by webui:webui... 2018-01-04 19:17:58 LOG <manager> [webui_1fb18.create] INFO: chowning /opt/nodejs by webui:webui... 2018-01-04 19:17:58 LOG <manager> [webui_1fb18.create] INFO: chowning /var/log/cloudify/webui by webui:webui... 2018-01-04 19:17:59 LOG <manager> [webui_1fb18.create] INFO: Deploying logrotate config... 2018-01-04 19:17:59 LOG <manager> [webui_1fb18.create] INFO: Deploying blueprint resource components/webui/config/logrotate to /etc/logrotate.d/webui 2018-01-04 19:17:59 LOG <manager> [webui_1fb18.create] INFO: Downloading resource webui to /opt/cloudify/webui/resources/webui 2018-01-04 19:18:00 LOG <manager> [webui_1fb18.create] INFO: chmoding /etc/logrotate.d/webui: 644 2018-01-04 19:18:00 LOG <manager> [webui_1fb18.create] INFO: chowning /etc/logrotate.d/webui by root:root... 2018-01-04 19:18:00 LOG <manager> [webui_1fb18.create] INFO: Deploying systemd EnvironmentFile... 2018-01-04 19:18:01 LOG <manager> [webui_1fb18.create] INFO: Deploying blueprint resource components/webui/config/cloudify-webui to /etc/sysconfig/cloudify-webui 2018-01-04 19:18:01 LOG <manager> [webui_1fb18.create] INFO: Downloading resource cloudify-webui to /opt/cloudify/webui/resources/cloudify-webui 2018-01-04 19:18:02 LOG <manager> [webui_1fb18.create] INFO: Deploying systemd .service file... 2018-01-04 19:18:02 LOG <manager> [webui_1fb18.create] INFO: Deploying blueprint resource components/webui/config/cloudify-webui.service to /usr/lib/systemd/system/cloudify-webui.service 2018-01-04 19:18:02 LOG <manager> [webui_1fb18.create] INFO: Downloading resource cloudify-webui.service to /opt/cloudify/webui/resources/cloudify-webui.service 2018-01-04 19:18:03 LOG <manager> [webui_1fb18.create] INFO: Enabling systemd .service... 2018-01-04 19:18:04 CFY <manager> [webui_1fb18.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:04 CFY <manager> [nginx_f39ff.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:04 LOG <manager> [nginx_f39ff.create] INFO: Preparing fabric environment... 2018-01-04 19:18:04 LOG <manager> [nginx_f39ff.create] INFO: Environment prepared successfully 2018-01-04 19:18:05 LOG <manager> [nginx_f39ff.create] INFO: Saving nginx input configuration to /opt/cloudify/nginx/node_properties/properties.json 2018-01-04 19:18:06 LOG <manager> [nginx_f39ff.create] INFO: Installing Nginx... 2018-01-04 19:18:06 LOG <manager> [nginx_f39ff.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:18:06 LOG <manager> [nginx_f39ff.create] INFO: SELinux is not enforced. 2018-01-04 19:18:06 LOG <manager> [nginx_f39ff.create] INFO: Downloading resource nginx_NOTICE.txt to /opt/cloudify/nginx/resources/nginx_NOTICE.txt 2018-01-04 19:18:09 LOG <manager> [nginx_f39ff.create] INFO: Checking whether /opt/cloudify/nginx/resources/nginx-1.8.0-1.el7.ngx.x86_64.rpm is already installed... 2018-01-04 19:18:10 LOG <manager> [nginx_f39ff.create] INFO: yum installing /opt/cloudify/nginx/resources/nginx-1.8.0-1.el7.ngx.x86_64.rpm... 2018-01-04 19:18:11 LOG <manager> [nginx_f39ff.create] INFO: Creating systemd unit override... 2018-01-04 19:18:11 LOG <manager> [nginx_f39ff.create] INFO: Deploying blueprint resource components/nginx/config/restart.conf to /etc/systemd/system/nginx.service.d/restart.conf 2018-01-04 19:18:11 LOG <manager> [nginx_f39ff.create] INFO: Downloading resource restart.conf to /opt/cloudify/nginx/resources/restart.conf 2018-01-04 19:18:13 LOG <manager> [nginx_f39ff.create] INFO: Deploying logrotate config... 2018-01-04 19:18:13 LOG <manager> [nginx_f39ff.create] INFO: Deploying blueprint resource components/nginx/config/logrotate to /etc/logrotate.d/nginx 2018-01-04 19:18:13 LOG <manager> [nginx_f39ff.create] INFO: Downloading resource nginx to /opt/cloudify/nginx/resources/nginx 2018-01-04 19:18:14 LOG <manager> [nginx_f39ff.create] INFO: chmoding /etc/logrotate.d/nginx: 644 2018-01-04 19:18:14 LOG <manager> [nginx_f39ff.create] INFO: chowning /etc/logrotate.d/nginx by root:root... 2018-01-04 19:18:15 CFY <manager> [nginx_f39ff.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:15 CFY <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:15 CFY <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:15 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Preparing fabric environment... 2018-01-04 19:18:15 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Environment prepared successfully 2018-01-04 19:18:16 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying Nginx configuration files... 2018-01-04 19:18:16 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/nginx/config/http-rest-server.cloudify to /etc/nginx/conf.d/http-rest-server.cloudify 2018-01-04 19:18:16 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Downloading resource http-rest-server.cloudify to /opt/cloudify/nginx/resources/http-rest-server.cloudify 2018-01-04 19:18:17 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/nginx/config/nginx.conf to /etc/nginx/nginx.conf 2018-01-04 19:18:17 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Downloading resource nginx.conf to /opt/cloudify/nginx/resources/nginx.conf 2018-01-04 19:18:19 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/nginx/config/default.conf to /etc/nginx/conf.d/default.conf 2018-01-04 19:18:19 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Downloading resource default.conf to /opt/cloudify/nginx/resources/default.conf 2018-01-04 19:18:20 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/nginx/config/rest-location.cloudify to /etc/nginx/conf.d/rest-location.cloudify 2018-01-04 19:18:20 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Downloading resource rest-location.cloudify to /opt/cloudify/nginx/resources/rest-location.cloudify 2018-01-04 19:18:21 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/nginx/config/fileserver-location.cloudify to /etc/nginx/conf.d/fileserver-location.cloudify 2018-01-04 19:18:21 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Downloading resource fileserver-location.cloudify to /opt/cloudify/nginx/resources/fileserver-location.cloudify 2018-01-04 19:18:23 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/nginx/config/ui-locations.cloudify to /etc/nginx/conf.d/ui-locations.cloudify 2018-01-04 19:18:23 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Downloading resource ui-locations.cloudify to /opt/cloudify/nginx/resources/ui-locations.cloudify 2018-01-04 19:18:24 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Deploying blueprint resource components/nginx/config/logs-conf.cloudify to /etc/nginx/conf.d/logs-conf.cloudify 2018-01-04 19:18:24 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Downloading resource logs-conf.cloudify to /opt/cloudify/nginx/resources/logs-conf.cloudify 2018-01-04 19:18:25 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] INFO: Enabling systemd service nginx... 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff->manager_configuration_bb27d|preconfigure] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:26 CFY <manager> [webui_1fb18] Configuring node 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff] Configuring node 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff.configure] Sending task 'fabric_plugin.tasks.run_task' 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff.configure] Task started 'fabric_plugin.tasks.run_task' 2018-01-04 19:18:26 LOG <manager> [nginx_f39ff.configure] INFO: Running task: retrieve from components/nginx/scripts/retrieve_agents.py 2018-01-04 19:18:26 LOG <manager> [nginx_f39ff.configure] INFO: Preparing fabric environment... 2018-01-04 19:18:26 LOG <manager> [nginx_f39ff.configure] INFO: Environment prepared successfully 2018-01-04 19:18:26 LOG <manager> [nginx_f39ff.configure] INFO: Downloading Cloudify Agents... 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff.configure] Task succeeded 'fabric_plugin.tasks.run_task' 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff->manager_configuration_bb27d|postconfigure] Sending task 'script_runner.tasks.run' 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff->manager_configuration_bb27d|postconfigure] Task started 'script_runner.tasks.run' 2018-01-04 19:18:26 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|postconfigure] INFO: Setting Private Manager IP Runtime Property. 2018-01-04 19:18:26 LOG <manager> [nginx_f39ff->manager_configuration_bb27d|postconfigure] INFO: Manager Private IP is: 10.0.0.11 2018-01-04 19:18:26 CFY <manager> [nginx_f39ff->manager_configuration_bb27d|postconfigure] Task succeeded 'script_runner.tasks.run' 2018-01-04 19:18:26 CFY <manager> [webui_1fb18] Starting node 2018-01-04 19:18:26 CFY <manager> [webui_1fb18.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:26 CFY <manager> [webui_1fb18.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:26 LOG <manager> [webui_1fb18.start] INFO: Preparing fabric environment... 2018-01-04 19:18:26 LOG <manager> [webui_1fb18.start] INFO: Environment prepared successfully 2018-01-04 19:18:27 LOG <manager> [webui_1fb18.start] INFO: Starting WebUI Service... 2018-01-04 19:18:27 LOG <manager> [webui_1fb18.start] INFO: Starting systemd service cloudify-webui... 2018-01-04 19:18:28 CFY <manager> [webui_1fb18.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:28 CFY <manager> [nginx_f39ff] Starting node 2018-01-04 19:18:28 CFY <manager> [nginx_f39ff.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:28 CFY <manager> [nginx_f39ff.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:28 LOG <manager> [nginx_f39ff.start] INFO: Preparing fabric environment... 2018-01-04 19:18:28 LOG <manager> [nginx_f39ff.start] INFO: Environment prepared successfully 2018-01-04 19:18:28 LOG <manager> [nginx_f39ff.start] INFO: Starting systemd service nginx... 2018-01-04 19:18:29 LOG <manager> [nginx_f39ff.start] INFO: nginx is running 2018-01-04 19:18:29 CFY <manager> [nginx_f39ff.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:30 CFY <manager> [riemann_bc532] Creating node 2018-01-04 19:18:30 CFY <manager> [mgmt_worker_71792] Creating node 2018-01-04 19:18:30 CFY <manager> [mgmt_worker_71792.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:30 CFY <manager> [riemann_bc532.create] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:30 CFY <manager> [mgmt_worker_71792.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:18:30 LOG <manager> [mgmt_worker_71792.create] INFO: Preparing fabric environment... 2018-01-04 19:18:30 LOG <manager> [mgmt_worker_71792.create] INFO: Environment prepared successfully 2018-01-04 19:18:31 LOG <manager> [mgmt_worker_71792.create] INFO: Saving mgmtworker input configuration to /opt/cloudify/mgmtworker/node_properties/properties.json 2018-01-04 19:18:32 LOG <manager> [mgmt_worker_71792.create] INFO: rabbitmq_ssl_enabled: False 2018-01-04 19:18:32 LOG <manager> [mgmt_worker_71792.create] INFO: Installing Management Worker... 2018-01-04 19:18:32 LOG <manager> [mgmt_worker_71792.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:18:32 LOG <manager> [mgmt_worker_71792.create] INFO: SELinux is not enforced. 2018-01-04 19:18:33 LOG <manager> [mgmt_worker_71792.create] INFO: Downloading resource mgmtworker_NOTICE.txt to /opt/cloudify/mgmtworker/resources/mgmtworker_NOTICE.txt 2018-01-04 19:18:36 LOG <manager> [mgmt_worker_71792.create] INFO: Checking whether /opt/cloudify/mgmtworker/resources/cloudify-management-worker-3.4.0-ga_b400.x86_64.rpm is already installed... 2018-01-04 19:18:37 LOG <manager> [mgmt_worker_71792.create] INFO: yum installing /opt/cloudify/mgmtworker/resources/cloudify-management-worker-3.4.0-ga_b400.x86_64.rpm... 2018-01-04 19:19:02 LOG <manager> [mgmt_worker_71792.create] INFO: Installing Optional Packages if supplied... 2018-01-04 19:19:03 LOG <manager> [mgmt_worker_71792.create] WARNING: Broker SSL cert supplied but SSL not enabled (broker_ssl_enabled is False). 2018-01-04 19:19:03 LOG <manager> [mgmt_worker_71792.create] INFO: broker_port: 5672 2018-01-04 19:19:03 LOG <manager> [mgmt_worker_71792.create] INFO: Configuring Management worker... 2018-01-04 19:19:03 LOG <manager> [mgmt_worker_71792.create] INFO: Deploying blueprint resource components/mgmtworker/config/broker_config.json to /opt/mgmtworker/work/broker_config.json 2018-01-04 19:19:03 LOG <manager> [mgmt_worker_71792.create] INFO: Downloading resource broker_config.json to /opt/cloudify/mgmtworker/resources/broker_config.json 2018-01-04 19:19:05 LOG <manager> [mgmt_worker_71792.create] INFO: Deploying systemd EnvironmentFile... 2018-01-04 19:19:05 LOG <manager> [mgmt_worker_71792.create] INFO: Deploying blueprint resource components/mgmtworker/config/cloudify-mgmtworker to /etc/sysconfig/cloudify-mgmtworker 2018-01-04 19:19:05 LOG <manager> [mgmt_worker_71792.create] INFO: Downloading resource cloudify-mgmtworker to /opt/cloudify/mgmtworker/resources/cloudify-mgmtworker 2018-01-04 19:19:06 LOG <manager> [mgmt_worker_71792.create] INFO: Deploying systemd .service file... 2018-01-04 19:19:06 LOG <manager> [mgmt_worker_71792.create] INFO: Deploying blueprint resource components/mgmtworker/config/cloudify-mgmtworker.service to /usr/lib/systemd/system/cloudify-mgmtworker.service 2018-01-04 19:19:06 LOG <manager> [mgmt_worker_71792.create] INFO: Downloading resource cloudify-mgmtworker.service to /opt/cloudify/mgmtworker/resources/cloudify-mgmtworker.service 2018-01-04 19:19:07 LOG <manager> [mgmt_worker_71792.create] INFO: Enabling systemd .service... 2018-01-04 19:19:08 LOG <manager> [mgmt_worker_71792.create] INFO: Deploying logrotate config... 2018-01-04 19:19:08 LOG <manager> [mgmt_worker_71792.create] INFO: Deploying blueprint resource components/mgmtworker/config/logrotate to /etc/logrotate.d/mgmtworker 2018-01-04 19:19:08 LOG <manager> [mgmt_worker_71792.create] INFO: Downloading resource mgmtworker to /opt/cloudify/mgmtworker/resources/mgmtworker 2018-01-04 19:19:09 LOG <manager> [mgmt_worker_71792.create] INFO: chmoding /etc/logrotate.d/mgmtworker: 644 2018-01-04 19:19:10 LOG <manager> [mgmt_worker_71792.create] INFO: chowning /etc/logrotate.d/mgmtworker by root:root... 2018-01-04 19:19:10 CFY <manager> [mgmt_worker_71792.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:10 CFY <manager> [riemann_bc532.create] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:10 LOG <manager> [riemann_bc532.create] INFO: Preparing fabric environment... 2018-01-04 19:19:10 LOG <manager> [riemann_bc532.create] INFO: Environment prepared successfully 2018-01-04 19:19:11 LOG <manager> [riemann_bc532.create] INFO: Saving riemann input configuration to /opt/cloudify/riemann/node_properties/properties.json 2018-01-04 19:19:12 LOG <manager> [riemann_bc532.create] INFO: Installing Riemann... 2018-01-04 19:19:12 LOG <manager> [riemann_bc532.create] INFO: Checking whether SELinux in enforced... 2018-01-04 19:19:12 LOG <manager> [riemann_bc532.create] INFO: SELinux is not enforced. 2018-01-04 19:19:13 LOG <manager> [riemann_bc532.create] INFO: Downloading resource riemann_NOTICE.txt to /opt/cloudify/riemann/resources/riemann_NOTICE.txt 2018-01-04 19:19:16 LOG <manager> [riemann_bc532.create] INFO: Applying Langohr permissions... 2018-01-04 19:19:17 LOG <manager> [riemann_bc532.create] INFO: Checking whether /opt/cloudify/riemann/resources/daemonize-1.7.3-7.el7.x86_64.rpm is already installed... 2018-01-04 19:19:18 LOG <manager> [riemann_bc532.create] INFO: yum installing /opt/cloudify/riemann/resources/daemonize-1.7.3-7.el7.x86_64.rpm... 2018-01-04 19:19:19 LOG <manager> [riemann_bc532.create] INFO: Checking whether /opt/cloudify/riemann/resources/riemann-0.2.6-1.noarch.rpm is already installed... 2018-01-04 19:19:20 LOG <manager> [riemann_bc532.create] INFO: yum installing /opt/cloudify/riemann/resources/riemann-0.2.6-1.noarch.rpm... 2018-01-04 19:19:22 LOG <manager> [riemann_bc532.create] INFO: Deploying logrotate config... 2018-01-04 19:19:22 LOG <manager> [riemann_bc532.create] INFO: Deploying blueprint resource components/riemann/config/logrotate to /etc/logrotate.d/riemann 2018-01-04 19:19:22 LOG <manager> [riemann_bc532.create] INFO: Downloading resource riemann to /opt/cloudify/riemann/resources/riemann 2018-01-04 19:19:23 LOG <manager> [riemann_bc532.create] INFO: chmoding /etc/logrotate.d/riemann: 644 2018-01-04 19:19:23 LOG <manager> [riemann_bc532.create] INFO: chowning /etc/logrotate.d/riemann by root:root... 2018-01-04 19:19:24 LOG <manager> [riemann_bc532.create] INFO: Downloading cloudify-manager Repository... 2018-01-04 19:19:25 LOG <manager> [riemann_bc532.create] INFO: Extracting Manager Repository... 2018-01-04 19:19:25 LOG <manager> [riemann_bc532.create] INFO: Deploying Riemann manager.config... 2018-01-04 19:19:26 LOG <manager> [riemann_bc532.create] INFO: Deploying Riemann conf... 2018-01-04 19:19:26 LOG <manager> [riemann_bc532.create] INFO: Deploying blueprint resource components/riemann/config/main.clj to /etc/riemann/main.clj 2018-01-04 19:19:26 LOG <manager> [riemann_bc532.create] INFO: Downloading resource main.clj to /opt/cloudify/riemann/resources/main.clj 2018-01-04 19:19:27 LOG <manager> [riemann_bc532.create] INFO: Deploying systemd EnvironmentFile... 2018-01-04 19:19:27 LOG <manager> [riemann_bc532.create] INFO: Deploying blueprint resource components/riemann/config/cloudify-riemann to /etc/sysconfig/cloudify-riemann 2018-01-04 19:19:27 LOG <manager> [riemann_bc532.create] INFO: Downloading resource cloudify-riemann to /opt/cloudify/riemann/resources/cloudify-riemann 2018-01-04 19:19:29 LOG <manager> [riemann_bc532.create] INFO: Deploying systemd .service file... 2018-01-04 19:19:29 LOG <manager> [riemann_bc532.create] INFO: Deploying blueprint resource components/riemann/config/cloudify-riemann.service to /usr/lib/systemd/system/cloudify-riemann.service 2018-01-04 19:19:29 LOG <manager> [riemann_bc532.create] INFO: Downloading resource cloudify-riemann.service to /opt/cloudify/riemann/resources/cloudify-riemann.service 2018-01-04 19:19:30 LOG <manager> [riemann_bc532.create] INFO: Enabling systemd .service... 2018-01-04 19:19:31 CFY <manager> [riemann_bc532.create] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:31 CFY <manager> [mgmt_worker_71792] Configuring node 2018-01-04 19:19:31 CFY <manager> [riemann_bc532] Configuring node 2018-01-04 19:19:32 CFY <manager> [mgmt_worker_71792->nginx_f39ff|postconfigure] Sending task 'script_runner.tasks.run' 2018-01-04 19:19:32 CFY <manager> [mgmt_worker_71792->nginx_f39ff|postconfigure] Task started 'script_runner.tasks.run' 2018-01-04 19:19:32 LOG <manager> [mgmt_worker_71792->nginx_f39ff|postconfigure] INFO: Setting Private Manager IP Runtime Property. 2018-01-04 19:19:32 LOG <manager> [mgmt_worker_71792->nginx_f39ff|postconfigure] INFO: Manager Private IP is: 10.0.0.11 2018-01-04 19:19:32 CFY <manager> [mgmt_worker_71792->nginx_f39ff|postconfigure] Task succeeded 'script_runner.tasks.run' 2018-01-04 19:19:32 CFY <manager> [mgmt_worker_71792] Starting node 2018-01-04 19:19:32 CFY <manager> [mgmt_worker_71792.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:32 CFY <manager> [mgmt_worker_71792.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:32 LOG <manager> [mgmt_worker_71792.start] INFO: Preparing fabric environment... 2018-01-04 19:19:32 LOG <manager> [mgmt_worker_71792.start] INFO: Environment prepared successfully 2018-01-04 19:19:33 LOG <manager> [mgmt_worker_71792.start] INFO: Starting Management Worker Service... 2018-01-04 19:19:33 LOG <manager> [mgmt_worker_71792.start] INFO: Starting systemd service cloudify-mgmtworker... 2018-01-04 19:19:34 LOG <manager> [mgmt_worker_71792.start] INFO: mgmtworker is running 2018-01-04 19:19:34 LOG <manager> [mgmt_worker_71792.start] WARNING: celery status: worker not running, Retrying in 3 seconds... 2018-01-04 19:19:38 CFY <manager> [mgmt_worker_71792.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:38 CFY <manager> [riemann_bc532] Starting node 2018-01-04 19:19:38 CFY <manager> [riemann_bc532.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:38 CFY <manager> [riemann_bc532.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:38 LOG <manager> [riemann_bc532.start] INFO: Preparing fabric environment... 2018-01-04 19:19:38 LOG <manager> [riemann_bc532.start] INFO: Environment prepared successfully 2018-01-04 19:19:39 LOG <manager> [riemann_bc532.start] INFO: Starting Riemann Service... 2018-01-04 19:19:39 LOG <manager> [riemann_bc532.start] INFO: Starting systemd service cloudify-riemann... 2018-01-04 19:19:39 LOG <manager> [riemann_bc532.start] INFO: riemann is running 2018-01-04 19:19:40 CFY <manager> [riemann_bc532.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:41 CFY <manager> [sanity_a7795] Creating node 2018-01-04 19:19:41 CFY <manager> [sanity_a7795.create] Sending task 'fabric_plugin.tasks.run_task' 2018-01-04 19:19:41 CFY <manager> [sanity_a7795.create] Task started 'fabric_plugin.tasks.run_task' 2018-01-04 19:19:41 LOG <manager> [sanity_a7795.create] INFO: Running task: upload_keypair from components/manager/scripts/sanity/create_sanity.py 2018-01-04 19:19:41 LOG <manager> [sanity_a7795.create] INFO: Preparing fabric environment... 2018-01-04 19:19:41 LOG <manager> [sanity_a7795.create] INFO: Environment prepared successfully 2018-01-04 19:19:41 LOG <manager> [sanity_a7795.create] INFO: Uploading key /opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap... 2018-01-04 19:19:41 CFY <manager> [sanity_a7795.create] Task succeeded 'fabric_plugin.tasks.run_task' 2018-01-04 19:19:42 CFY <manager> [sanity_a7795] Configuring node 2018-01-04 19:19:43 CFY <manager> [sanity_a7795->manager_configuration_bb27d|postconfigure] Sending task 'script_runner.tasks.run' 2018-01-04 19:19:43 CFY <manager> [sanity_a7795->manager_configuration_bb27d|postconfigure] Task started 'script_runner.tasks.run' 2018-01-04 19:19:43 CFY <manager> [sanity_a7795->manager_configuration_bb27d|postconfigure] Task succeeded 'script_runner.tasks.run' 2018-01-04 19:19:44 CFY <manager> [sanity_a7795] Starting node 2018-01-04 19:19:44 CFY <manager> [sanity_a7795.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:44 CFY <manager> [sanity_a7795.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:44 LOG <manager> [sanity_a7795.start] INFO: Preparing fabric environment... 2018-01-04 19:19:44 LOG <manager> [sanity_a7795.start] INFO: Environment prepared successfully 2018-01-04 19:19:45 LOG <manager> [sanity_a7795.start] INFO: Saving sanity input configuration to /opt/cloudify/sanity/node_properties/properties.json 2018-01-04 19:19:46 CFY <manager> [sanity_a7795.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:19:48 CFY <manager> 'install' workflow execution succeeded Downloading from http://repository.cloudifysource.org/org/cloudify3/wagons/cloudify-openstack-plugin/1.4/cloudify_openstack_plugin-1.4-py27-none-linux_x86_64-centos-Core.wgn to /tmp/tmpct6F7l/cloudify_openstack_plugin-1.4-py27-none-linux_x86_64-centos-Core.wgn Download complete Validating plugin /tmp/tmpct6F7l/cloudify_openstack_plugin-1.4-py27-none-linux_x86_64-centos-Core.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/cloudify_openstack_plugin-1.4-py27-none-linux_x86_64-centos-Core.wgn Plugin uploaded. The plugin's id is f4df5b79-c85c-4379-89d9-23afad9635d0 Downloading from http://repository.cloudifysource.org/org/cloudify3/wagons/cloudify-fabric-plugin/1.4.1/cloudify_fabric_plugin-1.4.1-py27-none-linux_x86_64-centos-Core.wgn to /tmp/tmpct6F7l/cloudify_fabric_plugin-1.4.1-py27-none-linux_x86_64-centos-Core.wgn Download complete Validating plugin /tmp/tmpct6F7l/cloudify_fabric_plugin-1.4.1-py27-none-linux_x86_64-centos-Core.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/cloudify_fabric_plugin-1.4.1-py27-none-linux_x86_64-centos-Core.wgn Plugin uploaded. The plugin's id is f1eb9c9d-2402-4bf1-bb22-f00c71c217d5 Downloading from https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/plugins/dnsdesig-1.0.0-py27-none-any.wgn to /tmp/tmpct6F7l/dnsdesig-1.0.0-py27-none-any.wgn Download complete Validating plugin /tmp/tmpct6F7l/dnsdesig-1.0.0-py27-none-any.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/dnsdesig-1.0.0-py27-none-any.wgn Plugin uploaded. The plugin's id is 6bd1e681-ea68-4f40-a453-1b51cc9fea9d Downloading from https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/plugins/sshkeyshare-1.0.0-py27-none-any.wgn to /tmp/tmpct6F7l/sshkeyshare-1.0.0-py27-none-any.wgn Download complete Validating plugin /tmp/tmpct6F7l/sshkeyshare-1.0.0-py27-none-any.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/sshkeyshare-1.0.0-py27-none-any.wgn Plugin uploaded. The plugin's id is 75ba10ed-1310-415b-a0b7-b351263cbd25 Downloading from https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/plugins/pgaas-1.0.0-py27-none-any.wgn to /tmp/tmpct6F7l/pgaas-1.0.0-py27-none-any.wgn Download complete Validating plugin /tmp/tmpct6F7l/pgaas-1.0.0-py27-none-any.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/pgaas-1.0.0-py27-none-any.wgn Plugin uploaded. The plugin's id is c80a7e20-e57b-45c9-9b0b-5cad1ca1423b Downloading from https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/releases/plugins/cdapcloudify/cdapcloudify-14.2.5-py27-none-any.wgn to /tmp/tmpct6F7l/cdapcloudify-14.2.5-py27-none-any.wgn Download complete Validating plugin /tmp/tmpct6F7l/cdapcloudify-14.2.5-py27-none-any.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/cdapcloudify-14.2.5-py27-none-any.wgn Plugin uploaded. The plugin's id is cfd440c9-105e-415a-9f93-5992b990995a Downloading from https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/releases/plugins/dcaepolicyplugin/dcaepolicyplugin-1.0.0-py27-none-any.wgn to /tmp/tmpct6F7l/dcaepolicyplugin-1.0.0-py27-none-any.wgn Download complete Validating plugin /tmp/tmpct6F7l/dcaepolicyplugin-1.0.0-py27-none-any.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/dcaepolicyplugin-1.0.0-py27-none-any.wgn Plugin uploaded. The plugin's id is d14978a0-a8ad-4e3b-9cc1-8e5c919f5c5b Downloading from https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/releases/plugins/dockerplugin/dockerplugin-2.4.0-py27-none-any.wgn to /tmp/tmpct6F7l/dockerplugin-2.4.0-py27-none-any.wgn Download complete Validating plugin /tmp/tmpct6F7l/dockerplugin-2.4.0-py27-none-any.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/dockerplugin-2.4.0-py27-none-any.wgn Plugin uploaded. The plugin's id is 51759cb0-a58b-493f-b233-198593e1a5b1 Downloading from https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/releases/plugins/relationshipplugin/relationshipplugin-1.0.0-py27-none-any.wgn to /tmp/tmpct6F7l/relationshipplugin-1.0.0-py27-none-any.wgn Download complete Validating plugin /tmp/tmpct6F7l/relationshipplugin-1.0.0-py27-none-any.wgn... Plugin validated successfully Uploading plugin /tmp/tmpct6F7l/relationshipplugin-1.0.0-py27-none-any.wgn Plugin uploaded. The plugin's id is 618f4de6-68c0-4ebf-8550-4505da61d338 Downloading from http://www.getcloudify.org/spec/openstack-plugin/1.4/plugin.yaml to /tmp/tmpct6F7l/plugin.yaml Download complete Uploading resources from /tmp/tmpct6F7l/plugin.yaml to /opt/manager/resources/spec/openstack-plugin/1.4 [10.195.200.42] run: sudo mkdir -p /opt/manager/resources/spec/openstack-plugin/1.4 [10.195.200.42] put: /tmp/tmpct6F7l/plugin.yaml -> /opt/manager/resources/spec/openstack-plugin/1.4/plugin.yaml Downloading from http://www.getcloudify.org/spec/aws-plugin/1.4.1/plugin.yaml to /tmp/tmpct6F7l/plugin.yaml Download complete Uploading resources from /tmp/tmpct6F7l/plugin.yaml to /opt/manager/resources/spec/aws-plugin/1.4.1 [10.195.200.42] run: sudo mkdir -p /opt/manager/resources/spec/aws-plugin/1.4.1 [10.195.200.42] put: /tmp/tmpct6F7l/plugin.yaml -> /opt/manager/resources/spec/aws-plugin/1.4.1/plugin.yaml Downloading from http://www.getcloudify.org/spec/tosca-vcloud-plugin/1.3.1/plugin.yaml to /tmp/tmpct6F7l/plugin.yaml Download complete Uploading resources from /tmp/tmpct6F7l/plugin.yaml to /opt/manager/resources/spec/tosca-vcloud-plugin/1.3.1 [10.195.200.42] run: sudo mkdir -p /opt/manager/resources/spec/tosca-vcloud-plugin/1.3.1 [10.195.200.42] put: /tmp/tmpct6F7l/plugin.yaml -> /opt/manager/resources/spec/tosca-vcloud-plugin/1.3.1/plugin.yaml Downloading from http://www.getcloudify.org/spec/vsphere-plugin/2.0/plugin.yaml to /tmp/tmpct6F7l/plugin.yaml Download complete Uploading resources from /tmp/tmpct6F7l/plugin.yaml to /opt/manager/resources/spec/vsphere-plugin/2.0 [10.195.200.42] run: sudo mkdir -p /opt/manager/resources/spec/vsphere-plugin/2.0 [10.195.200.42] put: /tmp/tmpct6F7l/plugin.yaml -> /opt/manager/resources/spec/vsphere-plugin/2.0/plugin.yaml Downloading from http://www.getcloudify.org/spec/fabric-plugin/1.4.1/plugin.yaml to /tmp/tmpct6F7l/plugin.yaml Download complete Uploading resources from /tmp/tmpct6F7l/plugin.yaml to /opt/manager/resources/spec/fabric-plugin/1.4.1 [10.195.200.42] run: sudo mkdir -p /opt/manager/resources/spec/fabric-plugin/1.4.1 [10.195.200.42] put: /tmp/tmpct6F7l/plugin.yaml -> /opt/manager/resources/spec/fabric-plugin/1.4.1/plugin.yaml Downloading from http://www.getcloudify.org/spec/diamond-plugin/1.3.3/plugin.yaml to /tmp/tmpct6F7l/plugin.yaml Download complete Uploading resources from /tmp/tmpct6F7l/plugin.yaml to /opt/manager/resources/spec/diamond-plugin/1.3.3 [10.195.200.42] run: sudo mkdir -p /opt/manager/resources/spec/diamond-plugin/1.3.3 [10.195.200.42] put: /tmp/tmpct6F7l/plugin.yaml -> /opt/manager/resources/spec/diamond-plugin/1.3.3/plugin.yaml Downloading from http://www.getcloudify.org/spec/cloudify/3.4/types.yaml to /tmp/tmpct6F7l/types.yaml Download complete Uploading resources from /tmp/tmpct6F7l/types.yaml to /opt/manager/resources/spec/cloudify/3.4 [10.195.200.42] run: sudo mkdir -p /opt/manager/resources/spec/cloudify/3.4 [10.195.200.42] put: /tmp/tmpct6F7l/types.yaml -> /opt/manager/resources/spec/cloudify/3.4/types.yaml 2018-01-04 19:20:33 CFY <manager> Starting 'execute_operation' workflow execution 2018-01-04 19:20:33 CFY <manager> [sanity_a7795] Starting operation cloudify.interfaces.lifecycle.start (Operation parameters: {'manager_ip': u'10.195.200.42', 'run_sanity': 'true', 'fabric_env': {'key_filename': u'/opt/app/installer/cmtmp/cmbootstrap/id_rsa.cfybootstrap', 'host_string': u'10.195.200.42', 'user': u'centos'}}) 2018-01-04 19:20:33 CFY <manager> [sanity_a7795.start] Sending task 'fabric_plugin.tasks.run_script' 2018-01-04 19:20:33 CFY <manager> [sanity_a7795.start] Task started 'fabric_plugin.tasks.run_script' 2018-01-04 19:20:33 LOG <manager> [sanity_a7795.start] INFO: Preparing fabric environment... 2018-01-04 19:20:33 LOG <manager> [sanity_a7795.start] INFO: Environment prepared successfully 2018-01-04 19:20:34 LOG <manager> [sanity_a7795.start] INFO: Saving sanity input configuration to /opt/cloudify/sanity/node_properties/properties.json 2018-01-04 19:20:35 LOG <manager> [sanity_a7795.start] INFO: Starting Manager sanity check... 2018-01-04 19:20:40 LOG <manager> [sanity_a7795.start] INFO: Installing sanity app... 2018-01-04 19:21:10 LOG <manager> [sanity_a7795.start] INFO: Sanity app installed. Performing sanity test... 2018-01-04 19:21:10 LOG <manager> [sanity_a7795.start] INFO: Manager sanity check successful, cleaning up sanity resources. 2018-01-04 19:21:44 CFY <manager> [sanity_a7795.start] Task succeeded 'fabric_plugin.tasks.run_script' 2018-01-04 19:21:44 CFY <manager> [sanity_a7795] Finished operation cloudify.interfaces.lifecycle.start 2018-01-04 19:21:44 CFY <manager> 'execute_operation' workflow execution succeeded Bootstrap complete Manager is up at 10.195.200.42 + rm -f resources/ssl/server.key + cd /opt/app/installer + mkdir consul + cd consul + cfy init -r Initialization completed successfully + cfy use -t 10.195.200.42 Using manager 10.195.200.42 with port 80 Deploying Consul VM + echo 'Deploying Consul VM' + set +e + wget -O /tmp/consul_cluster.yaml https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/consul_cluster.yaml --2018-01-04 19:21:46-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/consul_cluster.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 12727 (12K) [text/x-yaml] Saving to: '/tmp/consul_cluster.yaml' 0K .......... .. 100% 16.9M=0.001s 2018-01-04 19:21:46 (16.9 MB/s) - '/tmp/consul_cluster.yaml' saved [12727/12727] + mv -f /tmp/consul_cluster.yaml ../blueprints/ Succeeded in getting the newest consul_cluster.yaml + echo 'Succeeded in getting the newest consul_cluster.yaml' + set -e + cfy install -p ../blueprints/consul_cluster.yaml -d consul -i .././config/inputs.yaml -i datacenter=MbOr Uploading blueprint ../blueprints/consul_cluster.yaml... Blueprint uploaded. The blueprint's id is blueprints Processing inputs source: .././config/inputs.yaml Processing inputs source: datacenter=MbOr Creating new deployment from blueprint blueprints... Deployment created. The deployment's id is consul Executing workflow install on deployment consul [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:21:52 CFY <consul> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:21:52 CFY <consul> Installing deployment plugins 2018-01-04T19:21:52 CFY <consul> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:21:52 CFY <consul> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:21:53 CFY <consul> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:21:53 CFY <consul> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:21:54 CFY <consul> Creating deployment work directory 2018-01-04T19:21:54 CFY <consul> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:21:59 CFY <consul> Starting 'install' workflow execution 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl00_1fcf2] Creating node 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl02_6658a] Creating node 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl02_6658a.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl02_6658a.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:22:00 CFY <consul> [private_net_c5d7d] Creating node 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl01_5a8ae] Creating node 2018-01-04T19:22:00 CFY <consul> [security_group_c6c1c] Creating node 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl01_5a8ae.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:22:00 CFY <consul> [private_net_c5d7d.create] Sending task 'neutron_plugin.network.create' 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl00_1fcf2.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:22:00 CFY <consul> [key_pair_a721c] Creating node 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl01_5a8ae.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:22:00 CFY <consul> [private_net_c5d7d.create] Task started 'neutron_plugin.network.create' 2018-01-04T19:22:00 CFY <consul> [floatingip_cnsl00_1fcf2.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:22:00 CFY <consul> [key_pair_a721c.create] Sending task 'nova_plugin.keypair.create' 2018-01-04T19:22:00 CFY <consul> [security_group_c6c1c.create] Sending task 'neutron_plugin.security_group.create' 2018-01-04T19:22:01 CFY <consul> [key_pair_a721c.create] Task started 'nova_plugin.keypair.create' 2018-01-04T19:22:02 CFY <consul> [private_net_c5d7d.create] Task succeeded 'neutron_plugin.network.create' 2018-01-04T19:22:02 CFY <consul> [security_group_c6c1c.create] Task started 'neutron_plugin.security_group.create' 2018-01-04T19:22:02 CFY <consul> [key_pair_a721c.create] Task succeeded 'nova_plugin.keypair.create' 2018-01-04T19:22:02 CFY <consul> [private_net_c5d7d] Configuring node 2018-01-04T19:22:02 CFY <consul> [key_pair_a721c] Configuring node 2018-01-04T19:22:02 CFY <consul> [key_pair_a721c] Starting node 2018-01-04T19:22:02 CFY <consul> [private_net_c5d7d] Starting node 2018-01-04T19:22:03 CFY <consul> [security_group_c6c1c.create] Task succeeded 'neutron_plugin.security_group.create' 2018-01-04T19:22:03 CFY <consul> [security_group_c6c1c] Configuring node 2018-01-04T19:22:03 CFY <consul> [floatingip_cnsl02_6658a.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:22:03 CFY <consul> [floatingip_cnsl00_1fcf2.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:22:03 CFY <consul> [floatingip_cnsl01_5a8ae.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:22:03 CFY <consul> [floatingip_cnsl02_6658a] Configuring node 2018-01-04T19:22:03 CFY <consul> [floatingip_cnsl00_1fcf2] Configuring node 2018-01-04T19:22:03 CFY <consul> [fixedip_cnsl00_e8dab] Creating node 2018-01-04T19:22:03 CFY <consul> [fixedip_cnsl00_e8dab.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:22:03 CFY <consul> [fixedip_cnsl00_e8dab.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:22:03 CFY <consul> [security_group_c6c1c] Starting node 2018-01-04T19:22:03 CFY <consul> [fixedip_cnsl01_eb2f0] Creating node 2018-01-04T19:22:03 CFY <consul> [fixedip_cnsl02_9ec54] Creating node 2018-01-04T19:22:04 CFY <consul> [floatingip_cnsl01_5a8ae] Configuring node 2018-01-04T19:22:04 CFY <consul> [fixedip_cnsl02_9ec54.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:22:04 CFY <consul> [fixedip_cnsl01_eb2f0.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:22:04 CFY <consul> [fixedip_cnsl02_9ec54.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:22:04 CFY <consul> [fixedip_cnsl01_eb2f0.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:22:04 CFY <consul> [floatingip_cnsl02_6658a] Starting node 2018-01-04T19:22:04 CFY <consul> [floatingip_cnsl00_1fcf2] Starting node 2018-01-04T19:22:04 CFY <consul> [floatingip_cnsl01_5a8ae] Starting node 2018-01-04T19:22:04 CFY <consul> [dns_cnsl02_b57d0] Creating node 2018-01-04T19:22:05 CFY <consul> [dns_cnsl02_b57d0.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [dns_cnsl02_b57d0.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [dns_cnsl00_4e838] Creating node 2018-01-04T19:22:05 CFY <consul> [dns_cnsl00_4e838.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [dns_cnsl00_4e838.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [dns_cluster_b8642] Creating node 2018-01-04T19:22:05 CFY <consul> [dns_cnsl01_16e6f] Creating node 2018-01-04T19:22:05 CFY <consul> [dns_cnsl01_16e6f.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [dns_cluster_b8642.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [fixedip_cnsl02_9ec54.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:22:05 CFY <consul> [dns_cnsl01_16e6f.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [dns_cnsl02_b57d0.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:05 CFY <consul> [dns_cluster_b8642.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:06 CFY <consul> [dns_cnsl00_4e838.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:06 CFY <consul> [fixedip_cnsl00_e8dab.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:22:06 CFY <consul> [fixedip_cnsl01_eb2f0.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:22:06 CFY <consul> [fixedip_cnsl02_9ec54] Configuring node 2018-01-04T19:22:06 CFY <consul> [dns_cnsl00_4e838] Configuring node 2018-01-04T19:22:06 CFY <consul> [dns_cnsl02_b57d0] Configuring node 2018-01-04T19:22:06 CFY <consul> [fixedip_cnsl00_e8dab] Configuring node 2018-01-04T19:22:06 CFY <consul> [fixedip_cnsl01_eb2f0] Configuring node 2018-01-04T19:22:06 CFY <consul> [dns_cnsl01_16e6f.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:06 CFY <consul> [fixedip_cnsl02_9ec54] Starting node 2018-01-04T19:22:06 CFY <consul> [dns_cluster_b8642.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:22:06 CFY <consul> [dns_cnsl02_b57d0] Starting node 2018-01-04T19:22:06 CFY <consul> [fixedip_cnsl00_e8dab] Starting node 2018-01-04T19:22:07 CFY <consul> [dns_cnsl01_16e6f] Configuring node 2018-01-04T19:22:07 CFY <consul> [dns_cnsl00_4e838] Starting node 2018-01-04T19:22:07 CFY <consul> [fixedip_cnsl01_eb2f0] Starting node 2018-01-04T19:22:07 CFY <consul> [dns_cluster_b8642] Configuring node 2018-01-04T19:22:07 CFY <consul> [host_cnsl02_63ce0] Creating node 2018-01-04T19:22:07 CFY <consul> [dns_cnsl01_16e6f] Starting node 2018-01-04T19:22:07 CFY <consul> [host_cnsl02_63ce0.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:22:07 CFY <consul> [host_cnsl02_63ce0.create] Task started 'nova_plugin.server.create' 2018-01-04T19:22:07 CFY <consul> [dns_cluster_b8642] Starting node 2018-01-04T19:22:08 CFY <consul> [host_cnsl01_d1821] Creating node 2018-01-04T19:22:08 CFY <consul> [host_cnsl01_d1821.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:22:08 CFY <consul> [host_cnsl01_d1821.create] Task started 'nova_plugin.server.create' 2018-01-04T19:22:09 CFY <consul> [host_cnsl02_63ce0.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:22:10 CFY <consul> [host_cnsl01_d1821.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:22:10 CFY <consul> [host_cnsl02_63ce0] Configuring node 2018-01-04T19:22:11 CFY <consul> [host_cnsl01_d1821] Configuring node 2018-01-04T19:22:11 CFY <consul> [host_cnsl02_63ce0] Starting node 2018-01-04T19:22:11 CFY <consul> [host_cnsl02_63ce0.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:22:11 CFY <consul> [host_cnsl02_63ce0.start] Task started 'nova_plugin.server.start' 2018-01-04T19:22:12 CFY <consul> [host_cnsl01_d1821] Starting node 2018-01-04T19:22:12 CFY <consul> [host_cnsl01_d1821.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:22:12 CFY <consul> [host_cnsl01_d1821.start] Task started 'nova_plugin.server.start' 2018-01-04T19:22:12 CFY <consul> [host_cnsl02_63ce0.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:22:13 CFY <consul> [host_cnsl01_d1821.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:22:42 CFY <consul> [host_cnsl02_63ce0.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:22:42 CFY <consul> [host_cnsl02_63ce0.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:22:43 CFY <consul> [host_cnsl01_d1821.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:22:43 CFY <consul> [host_cnsl01_d1821.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:22:44 CFY <consul> [host_cnsl02_63ce0.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:22:44 CFY <consul> [host_cnsl02_63ce0->security_group_c6c1c|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:22:44 CFY <consul> [host_cnsl02_63ce0->security_group_c6c1c|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:22:44 CFY <consul> [host_cnsl01_d1821.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:22:45 CFY <consul> [host_cnsl01_d1821->security_group_c6c1c|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:22:45 CFY <consul> [host_cnsl01_d1821->security_group_c6c1c|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:22:47 CFY <consul> [host_cnsl02_63ce0->security_group_c6c1c|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:22:47 CFY <consul> [host_cnsl02_63ce0->floatingip_cnsl02_6658a|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:22:47 CFY <consul> [host_cnsl02_63ce0->floatingip_cnsl02_6658a|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:22:47 CFY <consul> [host_cnsl01_d1821->security_group_c6c1c|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:22:47 CFY <consul> [host_cnsl01_d1821->floatingip_cnsl01_5a8ae|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:22:48 CFY <consul> [host_cnsl01_d1821->floatingip_cnsl01_5a8ae|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:22:50 CFY <consul> [host_cnsl02_63ce0->floatingip_cnsl02_6658a|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:22:50 CFY <consul> [host_cnsl01_d1821->floatingip_cnsl01_5a8ae|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:22:51 CFY <consul> [host_cnsl00_3ca84] Creating node 2018-01-04T19:22:51 CFY <consul> [host_cnsl00_3ca84.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:22:51 CFY <consul> [host_cnsl00_3ca84.create] Task started 'nova_plugin.server.create' 2018-01-04T19:22:53 CFY <consul> [host_cnsl00_3ca84.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:22:54 CFY <consul> [host_cnsl00_3ca84] Configuring node 2018-01-04T19:22:55 CFY <consul> [host_cnsl00_3ca84] Starting node 2018-01-04T19:22:55 CFY <consul> [host_cnsl00_3ca84.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:22:55 CFY <consul> [host_cnsl00_3ca84.start] Task started 'nova_plugin.server.start' 2018-01-04T19:22:56 CFY <consul> [host_cnsl00_3ca84.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:23:26 CFY <consul> [host_cnsl00_3ca84.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:23:26 CFY <consul> [host_cnsl00_3ca84.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:23:27 CFY <consul> [host_cnsl00_3ca84.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:23:28 CFY <consul> [host_cnsl00_3ca84->security_group_c6c1c|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:23:28 CFY <consul> [host_cnsl00_3ca84->security_group_c6c1c|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:23:30 CFY <consul> [host_cnsl00_3ca84->security_group_c6c1c|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:23:30 CFY <consul> [host_cnsl00_3ca84->floatingip_cnsl00_1fcf2|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:23:30 CFY <consul> [host_cnsl00_3ca84->floatingip_cnsl00_1fcf2|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:23:34 CFY <consul> [host_cnsl00_3ca84->floatingip_cnsl00_1fcf2|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:23:34 CFY <consul> 'install' workflow execution succeeded Finished executing workflow install on deployment consul * Run 'cfy events list --include-logs --execution-id 082ca307-9c72-435d-9040-897a77d8a9d6' to retrieve the execution's events/logs ++ grep -Po 'Value: \K.*' ++ cfy deployments outputs -d consul + CONSULIP=10.195.200.32 Consul deployed at 10.195.200.32 + echo Consul deployed at 10.195.200.32 + curl http://10.195.200.32:8500/v1/agent/services % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to 10.195.200.32 port 8500: Connection refused Waiting for Consul API + echo Waiting for Consul API + sleep 60 + curl http://10.195.200.32:8500/v1/agent/services % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 30673 0 --:--:-- --:--:-- --:--:-- 34500 ++ curl -Ss http://10.195.200.32:8500/v1/status/leader + [[ "10.0.0.9:8300" != \"\" ]] + curl http://10.195.200.42:8500/v1/agent/join/10.195.200.32 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + REGREQ=' { "Name" : "cloudify_manager", "ID" : "cloudify_manager", "Tags" : ["http://10.195.200.42/api/v2.1"], "Address": "10.195.200.42", "Port": 80, "Check" : { "Name" : "cloudify_manager_health", "Interval" : "300s", "HTTP" : "http://10.195.200.42/api/v2.1/status", "Status" : "passing", "DeregisterCriticalServiceAfter" : "30m" } } ' + curl -X PUT -H 'Content-Type: application/json' --data-binary ' { "Name" : "cloudify_manager", "ID" : "cloudify_manager", "Tags" : ["http://10.195.200.42/api/v2.1"], "Address": "10.195.200.42", "Port": 80, "Check" : { "Name" : "cloudify_manager_health", "Interval" : "300s", "HTTP" : "http://10.195.200.42/api/v2.1/status", "Status" : "passing", "DeregisterCriticalServiceAfter" : "30m" } } ' http://10.195.200.42:8500/v1/agent/service/register % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 362 0 0 100 362 0 15041 --:--:-- --:--:-- --:--:-- 15739 ++ mktemp + ENVINI=/tmp/tmp.vW3hr2dYeH + cat + scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .././key600 /tmp/tmp.vW3hr2dYeH centos@10.195.200.42:/tmp/env.ini Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + ssh -t -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .././key600 centos@10.195.200.42 sudo mv /tmp/env.ini /opt/env.ini Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: Permanently added '10.195.200.42' (ECDSA) to the list of known hosts. + rm /tmp/tmp.vW3hr2dYeH + wget -P ./blueprints/docker/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/DockerBP.yaml --2018-01-04 19:24:41-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/DockerBP.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 12527 (12K) [text/x-yaml] Saving to: './blueprints/docker/DockerBP.yaml' 0K .......... .. 100% 15.5M=0.001s 2018-01-04 19:24:41 (15.5 MB/s) - './blueprints/docker/DockerBP.yaml' saved [12527/12527] + wget -P ./blueprints/cbs/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/config_binding_service.yaml --2018-01-04 19:24:41-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/config_binding_service.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 2456 (2.4K) [text/x-yaml] Saving to: './blueprints/cbs/config_binding_service.yaml' 0K .. 100% 262M=0s 2018-01-04 19:24:41 (262 MB/s) - './blueprints/cbs/config_binding_service.yaml' saved [2456/2456] + wget -P ./blueprints/pg/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/pgaas-onevm.yaml --2018-01-04 19:24:41-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/pgaas-onevm.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 11759 (11K) [text/x-yaml] Saving to: './blueprints/pg/pgaas-onevm.yaml' 0K .......... . 100% 17.6M=0.001s 2018-01-04 19:24:41 (17.6 MB/s) - './blueprints/pg/pgaas-onevm.yaml' saved [11759/11759] + wget -P ./blueprints/cdap/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/cdapbp7.yaml --2018-01-04 19:24:41-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/cdapbp7.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 41241 (40K) [text/x-yaml] Saving to: './blueprints/cdap/cdapbp7.yaml' 0K .......... .......... .......... .......... 100% 8.00M=0.005s 2018-01-04 19:24:42 (8.00 MB/s) - './blueprints/cdap/cdapbp7.yaml' saved [41241/41241] + wget -P ./blueprints/cdapbroker/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/cdap_broker.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/cdap_broker.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 4155 (4.1K) [text/x-yaml] Saving to: './blueprints/cdapbroker/cdap_broker.yaml' 0K .... 100% 446M=0s 2018-01-04 19:24:42 (446 MB/s) - './blueprints/cdapbroker/cdap_broker.yaml' saved [4155/4155] + wget -P ./blueprints/inv/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/inventory.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/inventory.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 6818 (6.7K) [text/x-yaml] Saving to: './blueprints/inv/inventory.yaml' 0K ...... 100% 170M=0s 2018-01-04 19:24:42 (170 MB/s) - './blueprints/inv/inventory.yaml' saved [6818/6818] + wget -P ./blueprints/dh/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/DeploymentHandler.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/DeploymentHandler.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 3449 (3.4K) [text/x-yaml] Saving to: './blueprints/dh/DeploymentHandler.yaml' 0K ... 100% 523M=0s 2018-01-04 19:24:42 (523 MB/s) - './blueprints/dh/DeploymentHandler.yaml' saved [3449/3449] + wget -P ./blueprints/ph/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/policy_handler.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/policy_handler.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 2635 (2.6K) [text/x-yaml] Saving to: './blueprints/ph/policy_handler.yaml' 0K .. 100% 325M=0s 2018-01-04 19:24:42 (325 MB/s) - './blueprints/ph/policy_handler.yaml' saved [2635/2635] + wget -P ./blueprints/ves/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/ves.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/ves.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 4285 (4.2K) [text/x-yaml] Saving to: './blueprints/ves/ves.yaml' 0K .... 100% 377M=0s 2018-01-04 19:24:42 (377 MB/s) - './blueprints/ves/ves.yaml' saved [4285/4285] + wget -P ./blueprints/tca/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/tca.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/tca.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 5903 (5.8K) [text/x-yaml] Saving to: './blueprints/tca/tca.yaml' 0K ..... 100% 521M=0s 2018-01-04 19:24:42 (521 MB/s) - './blueprints/tca/tca.yaml' saved [5903/5903] + wget -P ./blueprints/hrules/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/holmes-rules.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/holmes-rules.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 7034 (6.9K) [text/x-yaml] Saving to: './blueprints/hrules/holmes-rules.yaml' 0K ...... 100% 863M=0s 2018-01-04 19:24:42 (863 MB/s) - './blueprints/hrules/holmes-rules.yaml' saved [7034/7034] + wget -P ./blueprints/hengine/ https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/holmes-engine.yaml --2018-01-04 19:24:42-- https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.blueprints/releases/blueprints/holmes-engine.yaml Resolving nexus.onap.org (nexus.onap.org)... 199.204.45.137, 2604:e100:1:0:f816:3eff:fefb:56ed Connecting to nexus.onap.org (nexus.onap.org)|199.204.45.137|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 3458 (3.4K) [text/x-yaml] Saving to: './blueprints/hengine/holmes-engine.yaml' 0K ... 100% 78.1M=0s 2018-01-04 19:24:42 (78.1 MB/s) - './blueprints/hengine/holmes-engine.yaml' saved [3458/3458] + curl -X PUT -H 'Content-Type: application/json' --data-binary '[{"username":"docker", "password":"docker", "registry": "nexus3.onap.org:10001"}]' http://10.195.200.32:8500/v1/kv/docker_plugin/docker_logins % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 85 100 4 100 81 416 8440 --:--:-- --:--:-- --:--:-- 9000 + set +e + cfy install -v -p ./blueprints/docker/DockerBP.yaml -b DockerBP -d DockerPlatform -i .././config/inputs.yaml -i registered_dockerhost_name=platform_dockerhost -i registrator_image=onapdcae/registrator:v7 -i location_id=MbOr -i node_name=dokp00 -i target_datacenter=MbOr {"consul":{"ID":"consul","Service":"consul","Tags":[],"Address":"","Port":8300,"EnableTagOverride":false,"CreateIndex":0,"ModifyIndex":0}}trueUploading blueprint ./blueprints/docker/DockerBP.yaml... Blueprint uploaded. The blueprint's id is DockerBP Processing inputs source: .././config/inputs.yaml Processing inputs source: registered_dockerhost_name=platform_dockerhost Processing inputs source: registrator_image=onapdcae/registrator:v7 Processing inputs source: location_id=MbOr Processing inputs source: node_name=dokp00 Processing inputs source: target_datacenter=MbOr Creating new deployment from blueprint DockerBP... Deployment created. The deployment's id is DockerPlatform Executing workflow install on deployment DockerPlatform [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:24:48 CFY <DockerPlatform> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:24:48 CFY <DockerPlatform> Installing deployment plugins 2018-01-04T19:24:48 CFY <DockerPlatform> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:24:48 CFY <DockerPlatform> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:24:50 CFY <DockerPlatform> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:24:50 CFY <DockerPlatform> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:24:51 CFY <DockerPlatform> Creating deployment work directory 2018-01-04T19:24:51 CFY <DockerPlatform> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:24:55 CFY <DockerPlatform> Starting 'install' workflow execution 2018-01-04T19:24:56 CFY <DockerPlatform> [private_net_90a71] Creating node 2018-01-04T19:24:56 CFY <DockerPlatform> [security_group_85b13] Creating node 2018-01-04T19:24:56 CFY <DockerPlatform> [key_pair_ae478] Creating node 2018-01-04T19:24:56 CFY <DockerPlatform> [floatingip_dokr00_8e046] Creating node 2018-01-04T19:24:56 CFY <DockerPlatform> [security_group_85b13.create] Sending task 'neutron_plugin.security_group.create' 2018-01-04T19:24:56 CFY <DockerPlatform> [key_pair_ae478.create] Sending task 'nova_plugin.keypair.create' 2018-01-04T19:24:56 CFY <DockerPlatform> [private_net_90a71.create] Sending task 'neutron_plugin.network.create' 2018-01-04T19:24:56 CFY <DockerPlatform> [security_group_85b13.create] Task started 'neutron_plugin.security_group.create' 2018-01-04T19:24:56 CFY <DockerPlatform> [key_pair_ae478.create] Task started 'nova_plugin.keypair.create' 2018-01-04T19:24:56 CFY <DockerPlatform> [private_net_90a71.create] Task started 'neutron_plugin.network.create' 2018-01-04T19:24:56 CFY <DockerPlatform> [floatingip_dokr00_8e046.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:24:56 CFY <DockerPlatform> [floatingip_dokr00_8e046.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:24:57 CFY <DockerPlatform> [key_pair_ae478.create] Task succeeded 'nova_plugin.keypair.create' 2018-01-04T19:24:57 CFY <DockerPlatform> [security_group_85b13.create] Task succeeded 'neutron_plugin.security_group.create' 2018-01-04T19:24:57 CFY <DockerPlatform> [private_net_90a71.create] Task succeeded 'neutron_plugin.network.create' 2018-01-04T19:24:57 CFY <DockerPlatform> [security_group_85b13] Configuring node 2018-01-04T19:24:57 CFY <DockerPlatform> [key_pair_ae478] Configuring node 2018-01-04T19:24:57 CFY <DockerPlatform> [private_net_90a71] Configuring node 2018-01-04T19:24:58 CFY <DockerPlatform> [security_group_85b13] Starting node 2018-01-04T19:24:58 CFY <DockerPlatform> [private_net_90a71] Starting node 2018-01-04T19:24:58 CFY <DockerPlatform> [key_pair_ae478] Starting node 2018-01-04T19:24:58 CFY <DockerPlatform> [fixedip_dokr00_885b8] Creating node 2018-01-04T19:24:58 CFY <DockerPlatform> [fixedip_dokr00_885b8.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:24:58 CFY <DockerPlatform> [fixedip_dokr00_885b8.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:24:59 CFY <DockerPlatform> [floatingip_dokr00_8e046.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:24:59 CFY <DockerPlatform> [floatingip_dokr00_8e046] Configuring node 2018-01-04T19:24:59 CFY <DockerPlatform> [floatingip_dokr00_8e046] Starting node 2018-01-04T19:25:00 CFY <DockerPlatform> [dns_dokr00_11b93] Creating node 2018-01-04T19:25:00 CFY <DockerPlatform> [dns_dokr00_11b93.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:25:00 CFY <DockerPlatform> [dns_dokr00_11b93.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:25:00 CFY <DockerPlatform> [fixedip_dokr00_885b8.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:25:01 CFY <DockerPlatform> [fixedip_dokr00_885b8] Configuring node 2018-01-04T19:25:01 CFY <DockerPlatform> [dns_dokr00_11b93.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:25:01 CFY <DockerPlatform> [fixedip_dokr00_885b8] Starting node 2018-01-04T19:25:01 CFY <DockerPlatform> [dns_dokr00_11b93] Configuring node 2018-01-04T19:25:02 CFY <DockerPlatform> [dns_dokr00_11b93] Starting node 2018-01-04T19:25:02 CFY <DockerPlatform> [host_dokr00_e4365] Creating node 2018-01-04T19:25:02 CFY <DockerPlatform> [host_dokr00_e4365.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:25:03 CFY <DockerPlatform> [host_dokr00_e4365.create] Task started 'nova_plugin.server.create' 2018-01-04T19:25:05 CFY <DockerPlatform> [host_dokr00_e4365.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:25:05 CFY <DockerPlatform> [host_dokr00_e4365] Configuring node 2018-01-04T19:25:06 CFY <DockerPlatform> [host_dokr00_e4365] Starting node 2018-01-04T19:25:06 CFY <DockerPlatform> [host_dokr00_e4365.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:25:06 CFY <DockerPlatform> [host_dokr00_e4365.start] Task started 'nova_plugin.server.start' 2018-01-04T19:25:08 CFY <DockerPlatform> [host_dokr00_e4365.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] Traceback (most recent call last): File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 596, in main File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 376, in handle OperationRetry: Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:25:38 CFY <DockerPlatform> [host_dokr00_e4365.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:25:38 CFY <DockerPlatform> [host_dokr00_e4365.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:25:39 CFY <DockerPlatform> [host_dokr00_e4365.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:25:40 CFY <DockerPlatform> [host_dokr00_e4365->security_group_85b13|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:25:40 CFY <DockerPlatform> [host_dokr00_e4365->security_group_85b13|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:25:42 CFY <DockerPlatform> [host_dokr00_e4365->security_group_85b13|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:25:43 CFY <DockerPlatform> [host_dokr00_e4365->floatingip_dokr00_8e046|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:25:43 CFY <DockerPlatform> [host_dokr00_e4365->floatingip_dokr00_8e046|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:25:45 CFY <DockerPlatform> [host_dokr00_e4365->floatingip_dokr00_8e046|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:25:46 CFY <DockerPlatform> [docker_host_93428] Creating node 2018-01-04T19:25:46 CFY <DockerPlatform> [docker_host_93428.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:25:46 CFY <DockerPlatform> [docker_host_93428.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:25:47 CFY <DockerPlatform> [docker_host_93428.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:25:47 CFY <DockerPlatform> [docker_host_93428] Configuring node 2018-01-04T19:25:48 CFY <DockerPlatform> [docker_host_93428] Starting node 2018-01-04T19:25:48 CFY <DockerPlatform> [registrator_19c9a] Creating node 2018-01-04T19:25:49 CFY <DockerPlatform> [registrator_19c9a->docker_host_93428|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:25:49 CFY <DockerPlatform> [registrator_19c9a->docker_host_93428|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:25:49 CFY <DockerPlatform> [registrator_19c9a->docker_host_93428|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:25:49 CFY <DockerPlatform> [registrator_19c9a] Configuring node 2018-01-04T19:25:50 CFY <DockerPlatform> [registrator_19c9a] Starting node 2018-01-04T19:25:50 CFY <DockerPlatform> [registrator_19c9a.start] Sending task 'dockerplugin.create_and_start_container' 2018-01-04T19:25:50 CFY <DockerPlatform> [registrator_19c9a.start] Task started 'dockerplugin.create_and_start_container' 2018-01-04T19:25:51 CFY <DockerPlatform> [registrator_19c9a.start] Task failed 'dockerplugin.create_and_start_container' -> Failed to find: platform_dockerhost Traceback (most recent call last): File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 596, in main File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 366, in handle File "/opt/mgmtworker/env/plugins/dockerplugin-2.4.0/lib/python2.7/site-packages/dockerplugin/decorators.py", line 53, in wrapper raise RecoverableError(e) RecoverableError: Failed to find: platform_dockerhost 2018-01-04T19:26:21 CFY <DockerPlatform> [registrator_19c9a.start] Sending task 'dockerplugin.create_and_start_container' [retry 1] 2018-01-04T19:26:21 CFY <DockerPlatform> [registrator_19c9a.start] Task started 'dockerplugin.create_and_start_container' [retry 1] 2018-01-04T19:26:22 CFY <DockerPlatform> [registrator_19c9a.start] Task failed 'dockerplugin.create_and_start_container' -> ('Connection aborted.', error(111, 'Connection refused')) [retry 1] Traceback (most recent call last): File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 596, in main File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 366, in handle File "/opt/mgmtworker/env/plugins/dockerplugin-2.4.0/lib/python2.7/site-packages/dockerplugin/decorators.py", line 53, in wrapper raise RecoverableError(e) RecoverableError: ('Connection aborted.', error(111, 'Connection refused')) 2018-01-04T19:26:52 CFY <DockerPlatform> [registrator_19c9a.start] Sending task 'dockerplugin.create_and_start_container' [retry 2] 2018-01-04T19:26:52 CFY <DockerPlatform> [registrator_19c9a.start] Task started 'dockerplugin.create_and_start_container' [retry 2] 2018-01-04T19:26:52 CFY <DockerPlatform> [registrator_19c9a.start] Task failed 'dockerplugin.create_and_start_container' -> ('Connection aborted.', error(111, 'Connection refused')) [retry 2] Traceback (most recent call last): File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 596, in main File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 366, in handle File "/opt/mgmtworker/env/plugins/dockerplugin-2.4.0/lib/python2.7/site-packages/dockerplugin/decorators.py", line 53, in wrapper raise RecoverableError(e) RecoverableError: ('Connection aborted.', error(111, 'Connection refused')) 2018-01-04T19:27:22 CFY <DockerPlatform> [registrator_19c9a.start] Sending task 'dockerplugin.create_and_start_container' [retry 3] 2018-01-04T19:27:23 CFY <DockerPlatform> [registrator_19c9a.start] Task started 'dockerplugin.create_and_start_container' [retry 3] 2018-01-04T19:27:23 CFY <DockerPlatform> [registrator_19c9a.start] Task failed 'dockerplugin.create_and_start_container' -> ('Connection aborted.', error(111, 'Connection refused')) [retry 3] Traceback (most recent call last): File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 596, in main File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 366, in handle File "/opt/mgmtworker/env/plugins/dockerplugin-2.4.0/lib/python2.7/site-packages/dockerplugin/decorators.py", line 53, in wrapper raise RecoverableError(e) RecoverableError: ('Connection aborted.', error(111, 'Connection refused')) 2018-01-04T19:27:53 CFY <DockerPlatform> [registrator_19c9a.start] Sending task 'dockerplugin.create_and_start_container' [retry 4] 2018-01-04T19:27:53 CFY <DockerPlatform> [registrator_19c9a.start] Task started 'dockerplugin.create_and_start_container' [retry 4] 2018-01-04T19:28:07 CFY <DockerPlatform> [registrator_19c9a.start] Task succeeded 'dockerplugin.create_and_start_container' [retry 4] 2018-01-04T19:28:07 CFY <DockerPlatform> 'install' workflow execution succeeded Finished executing workflow install on deployment DockerPlatform * Run 'cfy events list --include-logs --execution-id 70b1fab8-9c95-43bd-8ccb-f9fc0fb3a7ad' to retrieve the execution's events/logs + cfy deployments create -b DockerBP -d DockerComponent -i .././config/inputs.yaml -i registered_dockerhost_name=component_dockerhost -i location_id=MbOr -i registrator_image=onapdcae/registrator:v7 -i node_name=doks00 -i target_datacenter=MbOr Processing inputs source: .././config/inputs.yaml Processing inputs source: registered_dockerhost_name=component_dockerhost Processing inputs source: location_id=MbOr Processing inputs source: registrator_image=onapdcae/registrator:v7 Processing inputs source: node_name=doks00 Processing inputs source: target_datacenter=MbOr Creating new deployment from blueprint DockerBP... Deployment created. The deployment's id is DockerComponent + cfy executions start -d DockerComponent -w install Executing workflow install on deployment DockerComponent [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:28:14 CFY <DockerComponent> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:28:14 CFY <DockerComponent> Installing deployment plugins 2018-01-04T19:28:14 CFY <DockerComponent> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:28:14 CFY <DockerComponent> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:28:16 CFY <DockerComponent> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:28:16 CFY <DockerComponent> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:28:16 CFY <DockerComponent> Creating deployment work directory 2018-01-04T19:28:16 CFY <DockerComponent> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:28:21 CFY <DockerComponent> Starting 'install' workflow execution 2018-01-04T19:28:22 CFY <DockerComponent> [private_net_71c2c] Creating node 2018-01-04T19:28:22 CFY <DockerComponent> [security_group_a8752] Creating node 2018-01-04T19:28:22 CFY <DockerComponent> [security_group_a8752.create] Sending task 'neutron_plugin.security_group.create' 2018-01-04T19:28:22 CFY <DockerComponent> [floatingip_dokr00_7d781] Creating node 2018-01-04T19:28:22 CFY <DockerComponent> [key_pair_b3f96] Creating node 2018-01-04T19:28:22 CFY <DockerComponent> [security_group_a8752.create] Task started 'neutron_plugin.security_group.create' 2018-01-04T19:28:22 CFY <DockerComponent> [floatingip_dokr00_7d781.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:28:22 CFY <DockerComponent> [key_pair_b3f96.create] Sending task 'nova_plugin.keypair.create' 2018-01-04T19:28:22 CFY <DockerComponent> [private_net_71c2c.create] Sending task 'neutron_plugin.network.create' 2018-01-04T19:28:22 CFY <DockerComponent> [floatingip_dokr00_7d781.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:28:22 CFY <DockerComponent> [key_pair_b3f96.create] Task started 'nova_plugin.keypair.create' 2018-01-04T19:28:22 CFY <DockerComponent> [private_net_71c2c.create] Task started 'neutron_plugin.network.create' 2018-01-04T19:28:23 CFY <DockerComponent> [key_pair_b3f96.create] Task succeeded 'nova_plugin.keypair.create' 2018-01-04T19:28:23 CFY <DockerComponent> [security_group_a8752.create] Task succeeded 'neutron_plugin.security_group.create' 2018-01-04T19:28:23 CFY <DockerComponent> [private_net_71c2c.create] Task succeeded 'neutron_plugin.network.create' 2018-01-04T19:28:23 CFY <DockerComponent> [security_group_a8752] Configuring node 2018-01-04T19:28:23 CFY <DockerComponent> [key_pair_b3f96] Configuring node 2018-01-04T19:28:23 CFY <DockerComponent> [private_net_71c2c] Configuring node 2018-01-04T19:28:24 CFY <DockerComponent> [security_group_a8752] Starting node 2018-01-04T19:28:24 CFY <DockerComponent> [key_pair_b3f96] Starting node 2018-01-04T19:28:24 CFY <DockerComponent> [private_net_71c2c] Starting node 2018-01-04T19:28:24 CFY <DockerComponent> [floatingip_dokr00_7d781.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:28:25 CFY <DockerComponent> [fixedip_dokr00_75e79] Creating node 2018-01-04T19:28:25 CFY <DockerComponent> [fixedip_dokr00_75e79.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:28:25 CFY <DockerComponent> [fixedip_dokr00_75e79.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:28:25 CFY <DockerComponent> [floatingip_dokr00_7d781] Configuring node 2018-01-04T19:28:25 CFY <DockerComponent> [floatingip_dokr00_7d781] Starting node 2018-01-04T19:28:26 CFY <DockerComponent> [dns_dokr00_3c596] Creating node 2018-01-04T19:28:26 CFY <DockerComponent> [dns_dokr00_3c596.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:28:26 CFY <DockerComponent> [dns_dokr00_3c596.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:28:27 CFY <DockerComponent> [fixedip_dokr00_75e79.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:28:27 CFY <DockerComponent> [dns_dokr00_3c596.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:28:27 CFY <DockerComponent> [fixedip_dokr00_75e79] Configuring node 2018-01-04T19:28:27 CFY <DockerComponent> [dns_dokr00_3c596] Configuring node 2018-01-04T19:28:27 CFY <DockerComponent> [fixedip_dokr00_75e79] Starting node 2018-01-04T19:28:28 CFY <DockerComponent> [dns_dokr00_3c596] Starting node 2018-01-04T19:28:29 CFY <DockerComponent> [host_dokr00_1928a] Creating node 2018-01-04T19:28:29 CFY <DockerComponent> [host_dokr00_1928a.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:28:29 CFY <DockerComponent> [host_dokr00_1928a.create] Task started 'nova_plugin.server.create' 2018-01-04T19:28:31 CFY <DockerComponent> [host_dokr00_1928a.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:28:32 CFY <DockerComponent> [host_dokr00_1928a] Configuring node 2018-01-04T19:28:33 CFY <DockerComponent> [host_dokr00_1928a] Starting node 2018-01-04T19:28:33 CFY <DockerComponent> [host_dokr00_1928a.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:28:33 CFY <DockerComponent> [host_dokr00_1928a.start] Task started 'nova_plugin.server.start' 2018-01-04T19:28:34 CFY <DockerComponent> [host_dokr00_1928a.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:29:04 CFY <DockerComponent> [host_dokr00_1928a.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:29:04 CFY <DockerComponent> [host_dokr00_1928a.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:29:06 CFY <DockerComponent> [host_dokr00_1928a.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:29:06 CFY <DockerComponent> [host_dokr00_1928a->security_group_a8752|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:29:06 CFY <DockerComponent> [host_dokr00_1928a->security_group_a8752|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:29:09 CFY <DockerComponent> [host_dokr00_1928a->security_group_a8752|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:29:09 CFY <DockerComponent> [host_dokr00_1928a->floatingip_dokr00_7d781|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:29:09 CFY <DockerComponent> [host_dokr00_1928a->floatingip_dokr00_7d781|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:29:12 CFY <DockerComponent> [host_dokr00_1928a->floatingip_dokr00_7d781|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:29:13 CFY <DockerComponent> [docker_host_bc033] Creating node 2018-01-04T19:29:13 CFY <DockerComponent> [docker_host_bc033.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:29:13 CFY <DockerComponent> [docker_host_bc033.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:29:13 CFY <DockerComponent> [docker_host_bc033.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:29:14 CFY <DockerComponent> [docker_host_bc033] Configuring node 2018-01-04T19:29:14 CFY <DockerComponent> [docker_host_bc033] Starting node 2018-01-04T19:29:15 CFY <DockerComponent> [registrator_25df6] Creating node 2018-01-04T19:29:15 CFY <DockerComponent> [registrator_25df6->docker_host_bc033|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:29:15 CFY <DockerComponent> [registrator_25df6->docker_host_bc033|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:29:16 CFY <DockerComponent> [registrator_25df6->docker_host_bc033|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:29:16 CFY <DockerComponent> [registrator_25df6] Configuring node 2018-01-04T19:29:16 CFY <DockerComponent> [registrator_25df6] Starting node 2018-01-04T19:29:16 CFY <DockerComponent> [registrator_25df6.start] Sending task 'dockerplugin.create_and_start_container' 2018-01-04T19:29:16 CFY <DockerComponent> [registrator_25df6.start] Task started 'dockerplugin.create_and_start_container' 2018-01-04T19:29:17 CFY <DockerComponent> [registrator_25df6.start] Task failed 'dockerplugin.create_and_start_container' -> Failed to find: component_dockerhost 2018-01-04T19:29:47 CFY <DockerComponent> [registrator_25df6.start] Sending task 'dockerplugin.create_and_start_container' [retry 1] 2018-01-04T19:29:47 CFY <DockerComponent> [registrator_25df6.start] Task started 'dockerplugin.create_and_start_container' [retry 1] 2018-01-04T19:29:48 CFY <DockerComponent> [registrator_25df6.start] Task failed 'dockerplugin.create_and_start_container' -> ('Connection aborted.', error(111, 'Connection refused')) [retry 1] 2018-01-04T19:30:18 CFY <DockerComponent> [registrator_25df6.start] Sending task 'dockerplugin.create_and_start_container' [retry 2] 2018-01-04T19:30:18 CFY <DockerComponent> [registrator_25df6.start] Task started 'dockerplugin.create_and_start_container' [retry 2] 2018-01-04T19:30:19 CFY <DockerComponent> [registrator_25df6.start] Task failed 'dockerplugin.create_and_start_container' -> ('Connection aborted.', error(111, 'Connection refused')) [retry 2] 2018-01-04T19:30:49 CFY <DockerComponent> [registrator_25df6.start] Sending task 'dockerplugin.create_and_start_container' [retry 3] 2018-01-04T19:30:49 CFY <DockerComponent> [registrator_25df6.start] Task started 'dockerplugin.create_and_start_container' [retry 3] 2018-01-04T19:30:49 CFY <DockerComponent> [registrator_25df6.start] Task failed 'dockerplugin.create_and_start_container' -> ('Connection aborted.', error(111, 'Connection refused')) [retry 3] 2018-01-04T19:31:20 CFY <DockerComponent> [registrator_25df6.start] Sending task 'dockerplugin.create_and_start_container' [retry 4] 2018-01-04T19:31:20 CFY <DockerComponent> [registrator_25df6.start] Task started 'dockerplugin.create_and_start_container' [retry 4] 2018-01-04T19:31:20 CFY <DockerComponent> [registrator_25df6.start] Task failed 'dockerplugin.create_and_start_container' -> ('Connection aborted.', error(111, 'Connection refused')) [retry 4] 2018-01-04T19:31:51 CFY <DockerComponent> [registrator_25df6.start] Sending task 'dockerplugin.create_and_start_container' [retry 5] 2018-01-04T19:31:51 CFY <DockerComponent> [registrator_25df6.start] Task started 'dockerplugin.create_and_start_container' [retry 5] 2018-01-04T19:32:04 CFY <DockerComponent> [registrator_25df6.start] Task succeeded 'dockerplugin.create_and_start_container' [retry 5] 2018-01-04T19:32:04 CFY <DockerComponent> 'install' workflow execution succeeded Finished executing workflow install on deployment DockerComponent * Run 'cfy events list --include-logs --execution-id 5a98b171-a2c6-4bf1-a872-169eb6b6e09b' to retrieve the execution's events/logs + cfy install -p ./blueprints/cdap/cdapbp7.yaml -b cdapbp7 -d cdap7 -i ../config/cdapinputs.yaml -i location_id=MbOr Uploading blueprint ./blueprints/cdap/cdapbp7.yaml... Blueprint uploaded. The blueprint's id is cdapbp7 Processing inputs source: ../config/cdapinputs.yaml Processing inputs source: location_id=MbOr Creating new deployment from blueprint cdapbp7... Deployment created. The deployment's id is cdap7 Executing workflow install on deployment cdap7 [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:32:19 CFY <cdap7> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:32:19 CFY <cdap7> Installing deployment plugins 2018-01-04T19:32:19 CFY <cdap7> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:32:19 CFY <cdap7> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:32:20 CFY <cdap7> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:32:21 CFY <cdap7> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:32:21 CFY <cdap7> Creating deployment work directory 2018-01-04T19:32:21 CFY <cdap7> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:32:26 CFY <cdap7> Starting 'install' workflow execution 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap04_46ee7] Creating node 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap05_2dabb] Creating node 2018-01-04T19:32:27 CFY <cdap7> [private_net_40f29] Creating node 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap00_8bf09] Creating node 2018-01-04T19:32:27 CFY <cdap7> [security_group_edd3e] Creating node 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap01_17032] Creating node 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap04_46ee7.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap05_2dabb.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [private_net_40f29.create] Sending task 'neutron_plugin.network.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap04_46ee7.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap05_2dabb.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [key_pair_ab53f] Creating node 2018-01-04T19:32:27 CFY <cdap7> [private_net_40f29.create] Task started 'neutron_plugin.network.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap00_8bf09.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap01_17032.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [key_pair_ab53f.create] Sending task 'nova_plugin.keypair.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap06_14419] Creating node 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap00_8bf09.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap01_17032.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap03_2ecea] Creating node 2018-01-04T19:32:27 CFY <cdap7> [sharedsshkey_cdap_7e819] Creating node 2018-01-04T19:32:27 CFY <cdap7> [security_group_edd3e.create] Sending task 'neutron_plugin.security_group.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap02_86177] Creating node 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap06_14419.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap03_2ecea.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [floatingip_cdap02_86177.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:32:27 CFY <cdap7> [sharedsshkey_cdap_7e819.create] Sending task 'sshkeyshare.keyshare_plugin.generate' 2018-01-04T19:32:28 CFY <cdap7> [private_net_40f29.create] Task succeeded 'neutron_plugin.network.create' 2018-01-04T19:32:28 CFY <cdap7> [key_pair_ab53f.create] Task started 'nova_plugin.keypair.create' 2018-01-04T19:32:28 CFY <cdap7> [private_net_40f29] Configuring node 2018-01-04T19:32:29 CFY <cdap7> [private_net_40f29] Starting node 2018-01-04T19:32:29 CFY <cdap7> [key_pair_ab53f.create] Task succeeded 'nova_plugin.keypair.create' 2018-01-04T19:32:29 CFY <cdap7> [security_group_edd3e.create] Task started 'neutron_plugin.security_group.create' 2018-01-04T19:32:29 CFY <cdap7> [floatingip_cdap04_46ee7.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:32:29 CFY <cdap7> [floatingip_cdap06_14419.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:32:29 CFY <cdap7> [fixedip_cdap00_ad41d] Creating node 2018-01-04T19:32:29 CFY <cdap7> [fixedip_cdap02_3037c] Creating node 2018-01-04T19:32:29 CFY <cdap7> [key_pair_ab53f] Configuring node 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap02_3037c.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap06_0cf14] Creating node 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap03_11749] Creating node 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap05_72159] Creating node 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap01_9a945] Creating node 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap03_11749.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap00_ad41d.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap05_72159.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap06_0cf14.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap01_17032.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap04_8020f] Creating node 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap03_2ecea.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap05_2dabb.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap02_86177.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap01_9a945.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap04_8020f.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap00_8bf09.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:32:30 CFY <cdap7> [sharedsshkey_cdap_7e819.create] Task started 'sshkeyshare.keyshare_plugin.generate' 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap04_46ee7] Configuring node 2018-01-04T19:32:30 CFY <cdap7> [security_group_edd3e.create] Task succeeded 'neutron_plugin.security_group.create' 2018-01-04T19:32:30 CFY <cdap7> [fixedip_cdap02_3037c.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:32:30 CFY <cdap7> [key_pair_ab53f] Starting node 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap01_17032] Configuring node 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap05_2dabb] Configuring node 2018-01-04T19:32:30 CFY <cdap7> [floatingip_cdap00_8bf09] Configuring node 2018-01-04T19:32:30 CFY <cdap7> [security_group_edd3e] Configuring node 2018-01-04T19:32:31 CFY <cdap7> [floatingip_cdap04_46ee7] Starting node 2018-01-04T19:32:31 CFY <cdap7> [floatingip_cdap01_17032] Starting node 2018-01-04T19:32:31 CFY <cdap7> [sharedsshkey_cdap_7e819.create] Task succeeded 'sshkeyshare.keyshare_plugin.generate' 2018-01-04T19:32:31 CFY <cdap7> [fixedip_cdap03_11749.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:32:31 CFY <cdap7> [floatingip_cdap05_2dabb] Starting node 2018-01-04T19:32:31 CFY <cdap7> [floatingip_cdap00_8bf09] Starting node 2018-01-04T19:32:31 CFY <cdap7> [security_group_edd3e] Starting node 2018-01-04T19:32:31 CFY <cdap7> [sharedsshkey_cdap_7e819] Configuring node 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap04_b26dc] Creating node 2018-01-04T19:32:31 CFY <cdap7> [sharedsshkey_cdap_7e819] Starting node 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap05_a911e] Creating node 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap04_b26dc.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap05_a911e.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap01_fe11a] Creating node 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap00_29740] Creating node 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap00_29740.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:31 CFY <cdap7> [dns_cdap01_fe11a.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap02_3037c.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap00_ad41d.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:32:32 CFY <cdap7> [floatingip_cdap06_14419.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap05_72159.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:32:32 CFY <cdap7> [floatingip_cdap06_14419] Configuring node 2018-01-04T19:32:32 CFY <cdap7> [floatingip_cdap03_2ecea.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap06_0cf14.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap02_3037c] Configuring node 2018-01-04T19:32:32 CFY <cdap7> [floatingip_cdap02_86177.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap01_9a945.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap03_11749.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:32:32 CFY <cdap7> [fixedip_cdap04_8020f.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:32:32 CFY <cdap7> [floatingip_cdap02_86177] Configuring node 2018-01-04T19:32:33 CFY <cdap7> [floatingip_cdap03_2ecea] Configuring node 2018-01-04T19:32:33 CFY <cdap7> [fixedip_cdap03_11749] Configuring node 2018-01-04T19:32:33 CFY <cdap7> [floatingip_cdap06_14419] Starting node 2018-01-04T19:32:33 CFY <cdap7> [fixedip_cdap02_3037c] Starting node 2018-01-04T19:32:33 CFY <cdap7> [floatingip_cdap02_86177] Starting node 2018-01-04T19:32:33 CFY <cdap7> [floatingip_cdap03_2ecea] Starting node 2018-01-04T19:32:33 CFY <cdap7> [fixedip_cdap03_11749] Starting node 2018-01-04T19:32:33 CFY <cdap7> [dns_cdap06_6c3e7] Creating node 2018-01-04T19:32:33 CFY <cdap7> [fixedip_cdap00_ad41d.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:32:33 CFY <cdap7> [dns_cdap04_b26dc.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:33 CFY <cdap7> [dns_cdap06_6c3e7.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap02_dbb7e] Creating node 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap02_dbb7e.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap03_76896] Creating node 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap03_76896.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [fixedip_cdap00_ad41d] Configuring node 2018-01-04T19:32:34 CFY <cdap7> [fixedip_cdap05_72159.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap05_a911e.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [fixedip_cdap05_72159] Configuring node 2018-01-04T19:32:34 CFY <cdap7> [fixedip_cdap00_ad41d] Starting node 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap04_b26dc.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap00_29740.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [fixedip_cdap06_0cf14.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap01_fe11a.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [fixedip_cdap01_9a945.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap06_6c3e7.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:34 CFY <cdap7> [fixedip_cdap04_8020f.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:32:34 CFY <cdap7> [dns_cdap02_dbb7e.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap05_a911e.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:35 CFY <cdap7> [fixedip_cdap05_72159] Starting node 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap03_76896.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap04_b26dc] Configuring node 2018-01-04T19:32:35 CFY <cdap7> [fixedip_cdap04_8020f] Configuring node 2018-01-04T19:32:35 CFY <cdap7> [fixedip_cdap01_9a945] Configuring node 2018-01-04T19:32:35 CFY <cdap7> [fixedip_cdap06_0cf14] Configuring node 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap00_29740.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap04_b26dc] Starting node 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap01_fe11a.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap05_a911e] Configuring node 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap02_dbb7e.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:35 CFY <cdap7> [fixedip_cdap01_9a945] Starting node 2018-01-04T19:32:35 CFY <cdap7> [dns_cdap06_6c3e7.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:35 CFY <cdap7> [fixedip_cdap04_8020f] Starting node 2018-01-04T19:32:35 CFY <cdap7> [fixedip_cdap06_0cf14] Starting node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap03_76896.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap01_fe11a] Configuring node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap00_29740] Configuring node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap05_a911e] Starting node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap02_dbb7e] Configuring node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap06_6c3e7] Configuring node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap03_76896] Configuring node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap00_29740] Starting node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap06_6c3e7] Starting node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap01_fe11a] Starting node 2018-01-04T19:32:36 CFY <cdap7> [dns_cdap02_dbb7e] Starting node 2018-01-04T19:32:37 CFY <cdap7> [dns_cdap03_76896] Starting node 2018-01-04T19:32:37 CFY <cdap7> [hostdeps_cdap_2000e] Creating node 2018-01-04T19:32:39 CFY <cdap7> [hostdeps_cdap_2000e] Configuring node 2018-01-04T19:32:41 CFY <cdap7> [hostdeps_cdap_2000e] Starting node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap00_3a75e] Creating node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap02_a1c90] Creating node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap00_3a75e.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap02_a1c90.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap00_3a75e.create] Task started 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap02_a1c90.create] Task started 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap04_144be] Creating node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap01_56310] Creating node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap06_662d8] Creating node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap03_831d4] Creating node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap03_831d4.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap01_56310.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap03_831d4.create] Task started 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap06_662d8.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap01_56310.create] Task started 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap05_6675e] Creating node 2018-01-04T19:32:43 CFY <cdap7> [host_cdap06_662d8.create] Task started 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap04_144be.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:32:43 CFY <cdap7> [host_cdap05_6675e.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:32:45 CFY <cdap7> [host_cdap01_56310.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:32:45 CFY <cdap7> [host_cdap04_144be.create] Task started 'nova_plugin.server.create' 2018-01-04T19:32:45 CFY <cdap7> [host_cdap06_662d8.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:32:45 CFY <cdap7> [host_cdap05_6675e.create] Task started 'nova_plugin.server.create' 2018-01-04T19:32:45 CFY <cdap7> [host_cdap03_831d4.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:32:45 CFY <cdap7> [host_cdap00_3a75e.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:32:45 CFY <cdap7> [host_cdap02_a1c90.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:32:46 CFY <cdap7> [host_cdap01_56310] Configuring node 2018-01-04T19:32:46 CFY <cdap7> [host_cdap03_831d4] Configuring node 2018-01-04T19:32:46 CFY <cdap7> [host_cdap06_662d8] Configuring node 2018-01-04T19:32:46 CFY <cdap7> [host_cdap00_3a75e] Configuring node 2018-01-04T19:32:46 CFY <cdap7> [host_cdap02_a1c90] Configuring node 2018-01-04T19:32:47 CFY <cdap7> [host_cdap01_56310] Starting node 2018-01-04T19:32:47 CFY <cdap7> [host_cdap01_56310.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap00_3a75e] Starting node 2018-01-04T19:32:47 CFY <cdap7> [host_cdap01_56310.start] Task started 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap06_662d8] Starting node 2018-01-04T19:32:47 CFY <cdap7> [host_cdap02_a1c90] Starting node 2018-01-04T19:32:47 CFY <cdap7> [host_cdap03_831d4] Starting node 2018-01-04T19:32:47 CFY <cdap7> [host_cdap03_831d4.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap00_3a75e.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap03_831d4.start] Task started 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap00_3a75e.start] Task started 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap04_144be.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap05_6675e.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap02_a1c90.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap06_662d8.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap02_a1c90.start] Task started 'nova_plugin.server.start' 2018-01-04T19:32:47 CFY <cdap7> [host_cdap06_662d8.start] Task started 'nova_plugin.server.start' 2018-01-04T19:32:48 CFY <cdap7> [host_cdap01_56310.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:32:48 CFY <cdap7> [host_cdap05_6675e] Configuring node 2018-01-04T19:32:48 CFY <cdap7> [host_cdap03_831d4.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:32:48 CFY <cdap7> [host_cdap00_3a75e.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:networking state. Retrying... [retry_after=30] 2018-01-04T19:32:48 CFY <cdap7> [host_cdap04_144be] Configuring node 2018-01-04T19:32:49 CFY <cdap7> [host_cdap02_a1c90.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:networking state. Retrying... [retry_after=30] 2018-01-04T19:32:49 CFY <cdap7> [host_cdap06_662d8.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:32:49 CFY <cdap7> [host_cdap05_6675e] Starting node 2018-01-04T19:32:49 CFY <cdap7> [host_cdap05_6675e.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:32:49 CFY <cdap7> [host_cdap04_144be] Starting node 2018-01-04T19:32:49 CFY <cdap7> [host_cdap05_6675e.start] Task started 'nova_plugin.server.start' 2018-01-04T19:32:50 CFY <cdap7> [host_cdap04_144be.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:32:50 CFY <cdap7> [host_cdap04_144be.start] Task started 'nova_plugin.server.start' 2018-01-04T19:32:50 CFY <cdap7> [host_cdap05_6675e.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:None state. Retrying... [retry_after=30] 2018-01-04T19:32:51 CFY <cdap7> [host_cdap04_144be.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:None state. Retrying... [retry_after=30] 2018-01-04T19:33:18 CFY <cdap7> [host_cdap01_56310.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:18 CFY <cdap7> [host_cdap01_56310.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:18 CFY <cdap7> [host_cdap03_831d4.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:18 CFY <cdap7> [host_cdap00_3a75e.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:18 CFY <cdap7> [host_cdap03_831d4.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:19 CFY <cdap7> [host_cdap00_3a75e.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:19 CFY <cdap7> [host_cdap02_a1c90.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:19 CFY <cdap7> [host_cdap06_662d8.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:19 CFY <cdap7> [host_cdap02_a1c90.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:19 CFY <cdap7> [host_cdap06_662d8.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:19 CFY <cdap7> [host_cdap01_56310.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:20 CFY <cdap7> [host_cdap03_831d4.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:20 CFY <cdap7> [host_cdap06_662d8.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:20 CFY <cdap7> [host_cdap02_a1c90.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:20 CFY <cdap7> [host_cdap00_3a75e.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:20 CFY <cdap7> [host_cdap01_56310->security_group_edd3e|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap01_56310->security_group_edd3e|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap03_831d4->security_group_edd3e|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap03_831d4->security_group_edd3e|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap06_662d8->security_group_edd3e|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap06_662d8->security_group_edd3e|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap02_a1c90->security_group_edd3e|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap00_3a75e->security_group_edd3e|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap02_a1c90->security_group_edd3e|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:20 CFY <cdap7> [host_cdap00_3a75e->security_group_edd3e|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:21 CFY <cdap7> [host_cdap05_6675e.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:21 CFY <cdap7> [host_cdap04_144be.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:23 CFY <cdap7> [host_cdap06_662d8->security_group_edd3e|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap05_6675e.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:23 CFY <cdap7> [host_cdap01_56310->security_group_edd3e|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap01_56310->floatingip_cdap01_17032|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap04_144be.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:23 CFY <cdap7> [host_cdap06_662d8->floatingip_cdap06_14419|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap00_3a75e->security_group_edd3e|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap01_56310->floatingip_cdap01_17032|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap03_831d4->security_group_edd3e|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap03_831d4->floatingip_cdap03_2ecea|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap06_662d8->floatingip_cdap06_14419|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap00_3a75e->floatingip_cdap00_8bf09|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap02_a1c90->security_group_edd3e|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap03_831d4->floatingip_cdap03_2ecea|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:23 CFY <cdap7> [host_cdap02_a1c90->floatingip_cdap02_86177|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:24 CFY <cdap7> [host_cdap04_144be.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:24 CFY <cdap7> [host_cdap00_3a75e->floatingip_cdap00_8bf09|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:24 CFY <cdap7> [host_cdap05_6675e.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:33:24 CFY <cdap7> [host_cdap02_a1c90->floatingip_cdap02_86177|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:24 CFY <cdap7> [host_cdap05_6675e->security_group_edd3e|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:24 CFY <cdap7> [host_cdap04_144be->security_group_edd3e|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:25 CFY <cdap7> [host_cdap06_662d8->floatingip_cdap06_14419|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:25 CFY <cdap7> [host_cdap05_6675e->security_group_edd3e|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:25 CFY <cdap7> [host_cdap01_56310->floatingip_cdap01_17032|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:25 CFY <cdap7> [host_cdap04_144be->security_group_edd3e|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:26 CFY <cdap7> [host_cdap03_831d4->floatingip_cdap03_2ecea|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:26 CFY <cdap7> [host_cdap00_3a75e->floatingip_cdap00_8bf09|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:27 CFY <cdap7> [host_cdap02_a1c90->floatingip_cdap02_86177|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:27 CFY <cdap7> [host_cdap04_144be->security_group_edd3e|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:27 CFY <cdap7> [host_cdap05_6675e->security_group_edd3e|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:33:27 CFY <cdap7> [host_cdap05_6675e->floatingip_cdap05_2dabb|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:27 CFY <cdap7> [host_cdap04_144be->floatingip_cdap04_46ee7|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:27 CFY <cdap7> [host_cdap05_6675e->floatingip_cdap05_2dabb|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:27 CFY <cdap7> [host_cdap04_144be->floatingip_cdap04_46ee7|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:30 CFY <cdap7> [host_cdap04_144be->floatingip_cdap04_46ee7|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:30 CFY <cdap7> [host_cdap05_6675e->floatingip_cdap05_2dabb|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:33:30 CFY <cdap7> 'install' workflow execution succeeded Finished executing workflow install on deployment cdap7 * Run 'cfy events list --include-logs --execution-id 3da33b6b-6d4b-4013-8a29-ed550c634553' to retrieve the execution's events/logs + cfy install -p ./blueprints/cbs/config_binding_service.yaml -b config_binding_service -d config_binding_service -i location_id=MbOr Uploading blueprint ./blueprints/cbs/config_binding_service.yaml... Blueprint uploaded. The blueprint's id is config_binding_service Processing inputs source: location_id=MbOr Creating new deployment from blueprint config_binding_service... Deployment created. The deployment's id is config_binding_service Executing workflow install on deployment config_binding_service [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:33:38 CFY <config_binding_service> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:33:39 CFY <config_binding_service> Installing deployment plugins 2018-01-04T19:33:39 CFY <config_binding_service> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:33:39 CFY <config_binding_service> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:33:40 CFY <config_binding_service> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:33:40 CFY <config_binding_service> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:33:40 CFY <config_binding_service> Creating deployment work directory 2018-01-04T19:33:40 CFY <config_binding_service> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:33:45 CFY <config_binding_service> Starting 'install' workflow execution 2018-01-04T19:33:46 CFY <config_binding_service> [docker_host_5feb1] Creating node 2018-01-04T19:33:46 CFY <config_binding_service> [docker_host_5feb1.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:33:46 CFY <config_binding_service> [docker_host_5feb1.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:33:47 CFY <config_binding_service> [docker_host_5feb1.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:33:47 CFY <config_binding_service> [docker_host_5feb1] Configuring node 2018-01-04T19:33:47 CFY <config_binding_service> [docker_host_5feb1] Starting node 2018-01-04T19:33:48 CFY <config_binding_service> [service-config-binding_ff57f] Creating node 2018-01-04T19:33:48 CFY <config_binding_service> [service-config-binding_ff57f.create] Sending task 'dockerplugin.create_for_platforms' 2018-01-04T19:33:48 CFY <config_binding_service> [service-config-binding_ff57f.create] Task started 'dockerplugin.create_for_platforms' 2018-01-04T19:33:49 CFY <config_binding_service> [service-config-binding_ff57f.create] Task succeeded 'dockerplugin.create_for_platforms' 2018-01-04T19:33:49 CFY <config_binding_service> [service-config-binding_ff57f->docker_host_5feb1|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:33:49 CFY <config_binding_service> [service-config-binding_ff57f->docker_host_5feb1|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:33:49 CFY <config_binding_service> [service-config-binding_ff57f->docker_host_5feb1|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:33:50 CFY <config_binding_service> [service-config-binding_ff57f] Configuring node 2018-01-04T19:33:50 CFY <config_binding_service> [service-config-binding_ff57f] Starting node 2018-01-04T19:33:50 CFY <config_binding_service> [service-config-binding_ff57f.start] Sending task 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:33:50 CFY <config_binding_service> [service-config-binding_ff57f.start] Task started 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:34:32 CFY <config_binding_service> [service-config-binding_ff57f.start] Task succeeded 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:34:33 CFY <config_binding_service> 'install' workflow execution succeeded Finished executing workflow install on deployment config_binding_service * Run 'cfy events list --include-logs --execution-id 8bdc0946-9572-4a21-90fa-af6e6c39e119' to retrieve the execution's events/logs + cfy install -p ./blueprints/pg/pgaas-onevm.yaml -b pgaas -d pgaas -i .././config/inputs.yaml Uploading blueprint ./blueprints/pg/pgaas-onevm.yaml... Blueprint uploaded. The blueprint's id is pgaas Processing inputs source: .././config/inputs.yaml Creating new deployment from blueprint pgaas... Deployment created. The deployment's id is pgaas Executing workflow install on deployment pgaas [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:34:42 CFY <pgaas> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:34:43 CFY <pgaas> Installing deployment plugins 2018-01-04T19:34:43 CFY <pgaas> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:34:43 CFY <pgaas> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:34:45 CFY <pgaas> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:34:45 CFY <pgaas> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:34:45 CFY <pgaas> Creating deployment work directory 2018-01-04T19:34:45 CFY <pgaas> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:34:50 CFY <pgaas> Starting 'install' workflow execution 2018-01-04T19:34:50 CFY <pgaas> [sharedsshkey_pgrs_afc6d] Creating node 2018-01-04T19:34:50 CFY <pgaas> [dns_pgrs_rw_673bc] Creating node 2018-01-04T19:34:50 CFY <pgaas> [dns_pgrs_ro_104a8] Creating node 2018-01-04T19:34:50 CFY <pgaas> [key_pair_3051b] Creating node 2018-01-04T19:34:50 CFY <pgaas> [sharedsshkey_pgrs_afc6d.create] Sending task 'sshkeyshare.keyshare_plugin.generate' 2018-01-04T19:34:50 CFY <pgaas> [dns_pgrs_rw_673bc.create] Sending task 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04T19:34:50 CFY <pgaas> [sharedsshkey_pgrs_afc6d.create] Task started 'sshkeyshare.keyshare_plugin.generate' 2018-01-04T19:34:50 CFY <pgaas> [dns_pgrs_rw_673bc.create] Task started 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04T19:34:50 CFY <pgaas> [security_group_ee9c0] Creating node 2018-01-04T19:34:50 CFY <pgaas> [private_net_ffb53] Creating node 2018-01-04T19:34:50 CFY <pgaas> [key_pair_3051b.create] Sending task 'nova_plugin.keypair.create' 2018-01-04T19:34:51 CFY <pgaas> [dns_pgrs_ro_104a8.create] Sending task 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04T19:34:51 CFY <pgaas> [security_group_ee9c0.create] Sending task 'neutron_plugin.security_group.create' 2018-01-04T19:34:51 CFY <pgaas> [floatingip_pgrs00_99dfd] Creating node 2018-01-04T19:34:51 CFY <pgaas> [key_pair_3051b.create] Task started 'nova_plugin.keypair.create' 2018-01-04T19:34:51 CFY <pgaas> [dns_pgrs_ro_104a8.create] Task started 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04T19:34:51 CFY <pgaas> [security_group_ee9c0.create] Task started 'neutron_plugin.security_group.create' 2018-01-04T19:34:51 CFY <pgaas> [floatingip_pgrs00_99dfd.create] Sending task 'neutron_plugin.floatingip.create' 2018-01-04T19:34:51 CFY <pgaas> [private_net_ffb53.create] Sending task 'neutron_plugin.network.create' 2018-01-04T19:34:51 CFY <pgaas> [sharedsshkey_pgrs_afc6d.create] Task succeeded 'sshkeyshare.keyshare_plugin.generate' 2018-01-04T19:34:51 CFY <pgaas> [floatingip_pgrs00_99dfd.create] Task started 'neutron_plugin.floatingip.create' 2018-01-04T19:34:51 CFY <pgaas> [dns_pgrs_rw_673bc.create] Task succeeded 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04T19:34:51 CFY <pgaas> [private_net_ffb53.create] Task started 'neutron_plugin.network.create' 2018-01-04T19:34:51 CFY <pgaas> [sharedsshkey_pgrs_afc6d] Configuring node 2018-01-04T19:34:51 CFY <pgaas> [key_pair_3051b.create] Task succeeded 'nova_plugin.keypair.create' 2018-01-04T19:34:52 CFY <pgaas> [dns_pgrs_ro_104a8.create] Task succeeded 'dnsdesig.dns_plugin.cnameneeded' 2018-01-04T19:34:52 CFY <pgaas> [dns_pgrs_rw_673bc] Configuring node 2018-01-04T19:34:52 CFY <pgaas> [security_group_ee9c0.create] Task succeeded 'neutron_plugin.security_group.create' 2018-01-04T19:34:52 CFY <pgaas> [dns_pgrs_ro_104a8] Configuring node 2018-01-04T19:34:52 CFY <pgaas> [sharedsshkey_pgrs_afc6d] Starting node 2018-01-04T19:34:52 CFY <pgaas> [key_pair_3051b] Configuring node 2018-01-04T19:34:52 CFY <pgaas> [dns_pgrs_rw_673bc] Starting node 2018-01-04T19:34:52 CFY <pgaas> [security_group_ee9c0] Configuring node 2018-01-04T19:34:52 CFY <pgaas> [dns_pgrs_ro_104a8] Starting node 2018-01-04T19:34:52 CFY <pgaas> [private_net_ffb53.create] Task succeeded 'neutron_plugin.network.create' 2018-01-04T19:34:53 CFY <pgaas> [key_pair_3051b] Starting node 2018-01-04T19:34:53 CFY <pgaas> [security_group_ee9c0] Starting node 2018-01-04T19:34:53 CFY <pgaas> [private_net_ffb53] Configuring node 2018-01-04T19:34:53 CFY <pgaas> [pgaas_cluster_4111b] Creating node 2018-01-04T19:34:53 CFY <pgaas> [private_net_ffb53] Starting node 2018-01-04T19:34:53 CFY <pgaas> [pgaas_cluster_4111b.create] Sending task 'pgaas.pgaas_plugin.add_pgaas_cluster' 2018-01-04T19:34:53 CFY <pgaas> [pgaas_cluster_4111b.create] Task started 'pgaas.pgaas_plugin.add_pgaas_cluster' 2018-01-04T19:34:54 CFY <pgaas> [floatingip_pgrs00_99dfd.create] Task succeeded 'neutron_plugin.floatingip.create' 2018-01-04T19:34:54 CFY <pgaas> [pgaas_cluster_4111b.create] Task succeeded 'pgaas.pgaas_plugin.add_pgaas_cluster' 2018-01-04T19:34:54 CFY <pgaas> [fixedip_pgrs00_85733] Creating node 2018-01-04T19:34:54 CFY <pgaas> [fixedip_pgrs00_85733.create] Sending task 'neutron_plugin.port.create' 2018-01-04T19:34:54 CFY <pgaas> [fixedip_pgrs00_85733.create] Task started 'neutron_plugin.port.create' 2018-01-04T19:34:54 CFY <pgaas> [floatingip_pgrs00_99dfd] Configuring node 2018-01-04T19:34:54 CFY <pgaas> [floatingip_pgrs00_99dfd] Starting node 2018-01-04T19:34:54 CFY <pgaas> [pgaas_cluster_4111b] Configuring node 2018-01-04T19:34:55 CFY <pgaas> [pgaas_cluster_4111b] Starting node 2018-01-04T19:34:55 CFY <pgaas> [dns_pgrs00_ec537] Creating node 2018-01-04T19:34:55 CFY <pgaas> [dns_pgrs00_ec537.create] Sending task 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:34:55 CFY <pgaas> [dns_pgrs00_ec537.create] Task started 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:34:56 CFY <pgaas> [fixedip_pgrs00_85733.create] Task succeeded 'neutron_plugin.port.create' 2018-01-04T19:34:56 CFY <pgaas> [fixedip_pgrs00_85733] Configuring node 2018-01-04T19:34:56 CFY <pgaas> [dns_pgrs00_ec537.create] Task succeeded 'dnsdesig.dns_plugin.aneeded' 2018-01-04T19:34:57 CFY <pgaas> [dns_pgrs00_ec537] Configuring node 2018-01-04T19:34:57 CFY <pgaas> [fixedip_pgrs00_85733] Starting node 2018-01-04T19:34:57 CFY <pgaas> [dns_pgrs00_ec537] Starting node 2018-01-04T19:34:58 CFY <pgaas> [host_pgrs00_66678] Creating node 2018-01-04T19:34:58 CFY <pgaas> [host_pgrs00_66678.create] Sending task 'nova_plugin.server.create' 2018-01-04T19:34:58 CFY <pgaas> [host_pgrs00_66678.create] Task started 'nova_plugin.server.create' 2018-01-04T19:35:00 CFY <pgaas> [host_pgrs00_66678.create] Task succeeded 'nova_plugin.server.create' 2018-01-04T19:35:01 CFY <pgaas> [host_pgrs00_66678] Configuring node 2018-01-04T19:35:02 CFY <pgaas> [host_pgrs00_66678] Starting node 2018-01-04T19:35:02 CFY <pgaas> [host_pgrs00_66678.start] Sending task 'nova_plugin.server.start' 2018-01-04T19:35:02 CFY <pgaas> [host_pgrs00_66678.start] Task started 'nova_plugin.server.start' 2018-01-04T19:35:03 CFY <pgaas> [host_pgrs00_66678.start] Task rescheduled 'nova_plugin.server.start' -> Waiting for server to be in ACTIVE state but is in BUILD:spawning state. Retrying... [retry_after=30] 2018-01-04T19:35:33 CFY <pgaas> [host_pgrs00_66678.start] Sending task 'nova_plugin.server.start' [retry 1] 2018-01-04T19:35:34 CFY <pgaas> [host_pgrs00_66678.start] Task started 'nova_plugin.server.start' [retry 1] 2018-01-04T19:35:35 CFY <pgaas> [host_pgrs00_66678.start] Task succeeded 'nova_plugin.server.start' [retry 1] 2018-01-04T19:35:35 CFY <pgaas> [host_pgrs00_66678->security_group_ee9c0|establish] Sending task 'nova_plugin.server.connect_security_group' 2018-01-04T19:35:35 CFY <pgaas> [host_pgrs00_66678->security_group_ee9c0|establish] Task started 'nova_plugin.server.connect_security_group' 2018-01-04T19:35:38 CFY <pgaas> [host_pgrs00_66678->security_group_ee9c0|establish] Task succeeded 'nova_plugin.server.connect_security_group' 2018-01-04T19:35:38 CFY <pgaas> [host_pgrs00_66678->floatingip_pgrs00_99dfd|establish] Sending task 'nova_plugin.server.connect_floatingip' 2018-01-04T19:35:38 CFY <pgaas> [host_pgrs00_66678->floatingip_pgrs00_99dfd|establish] Task started 'nova_plugin.server.connect_floatingip' 2018-01-04T19:35:41 CFY <pgaas> [host_pgrs00_66678->floatingip_pgrs00_99dfd|establish] Task succeeded 'nova_plugin.server.connect_floatingip' 2018-01-04T19:35:42 CFY <pgaas> 'install' workflow execution succeeded Finished executing workflow install on deployment pgaas * Run 'cfy events list --include-logs --execution-id 71b9cfe3-cddb-44ca-ab3d-e818007f0765' to retrieve the execution's events/logs + cfy install -p ./blueprints/inv/inventory.yaml -b PlatformServicesInventory -d PlatformServicesInventory -i location_id=MbOr -i ../config/invinputs.yaml Uploading blueprint ./blueprints/inv/inventory.yaml... Blueprint uploaded. The blueprint's id is PlatformServicesInventory Processing inputs source: location_id=MbOr Processing inputs source: ../config/invinputs.yaml Creating new deployment from blueprint PlatformServicesInventory... Deployment created. The deployment's id is PlatformServicesInventory Executing workflow install on deployment PlatformServicesInventory [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:35:53 CFY <PlatformServicesInventory> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:35:53 CFY <PlatformServicesInventory> Installing deployment plugins 2018-01-04T19:35:53 CFY <PlatformServicesInventory> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:35:53 CFY <PlatformServicesInventory> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:35:54 CFY <PlatformServicesInventory> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:35:54 CFY <PlatformServicesInventory> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:35:54 CFY <PlatformServicesInventory> Creating deployment work directory 2018-01-04T19:35:54 CFY <PlatformServicesInventory> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:36:00 CFY <PlatformServicesInventory> Starting 'install' workflow execution 2018-01-04T19:36:00 CFY <PlatformServicesInventory> [docker_host_88070] Creating node 2018-01-04T19:36:00 CFY <PlatformServicesInventory> [docker_host_88070.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:36:00 CFY <PlatformServicesInventory> [docker_host_88070.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:36:01 CFY <PlatformServicesInventory> [docker_host_88070.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:36:01 CFY <PlatformServicesInventory> [docker_host_88070] Configuring node 2018-01-04T19:36:02 CFY <PlatformServicesInventory> [docker_host_88070] Starting node 2018-01-04T19:36:02 CFY <PlatformServicesInventory> [postgres_e227d] Creating node 2018-01-04T19:36:03 CFY <PlatformServicesInventory> [postgres_e227d->docker_host_88070|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:36:03 CFY <PlatformServicesInventory> [postgres_e227d->docker_host_88070|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:36:03 CFY <PlatformServicesInventory> [postgres_e227d->docker_host_88070|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:36:03 CFY <PlatformServicesInventory> [postgres_e227d] Configuring node 2018-01-04T19:36:04 CFY <PlatformServicesInventory> [postgres_e227d] Starting node 2018-01-04T19:36:04 CFY <PlatformServicesInventory> [postgres_e227d.start] Sending task 'dockerplugin.create_and_start_container' 2018-01-04T19:36:04 CFY <PlatformServicesInventory> [postgres_e227d.start] Task started 'dockerplugin.create_and_start_container' 2018-01-04T19:36:23 CFY <PlatformServicesInventory> [postgres_e227d.start] Task succeeded 'dockerplugin.create_and_start_container' 2018-01-04T19:36:23 CFY <PlatformServicesInventory> [inventory_ba158] Creating node 2018-01-04T19:36:23 CFY <PlatformServicesInventory> [inventory_ba158.create] Sending task 'dockerplugin.create_for_platforms' 2018-01-04T19:36:23 CFY <PlatformServicesInventory> [inventory_ba158.create] Task started 'dockerplugin.create_for_platforms' 2018-01-04T19:36:24 CFY <PlatformServicesInventory> [inventory_ba158.create] Task succeeded 'dockerplugin.create_for_platforms' 2018-01-04T19:36:24 CFY <PlatformServicesInventory> [inventory_ba158->docker_host_88070|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:36:24 CFY <PlatformServicesInventory> [inventory_ba158->docker_host_88070|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:36:25 CFY <PlatformServicesInventory> [inventory_ba158->docker_host_88070|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:36:25 CFY <PlatformServicesInventory> [inventory_ba158] Configuring node 2018-01-04T19:36:26 CFY <PlatformServicesInventory> [inventory_ba158] Starting node 2018-01-04T19:36:26 CFY <PlatformServicesInventory> [inventory_ba158.start] Sending task 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:36:26 CFY <PlatformServicesInventory> [inventory_ba158.start] Task started 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:37:22 CFY <PlatformServicesInventory> [service-change-handler_5c9bd] Starting node 2018-01-04T19:37:20 CFY <PlatformServicesInventory> [service-change-handler_5c9bd] Creating node 2018-01-04T19:37:20 CFY <PlatformServicesInventory> [service-change-handler_5c9bd.create] Sending task 'dockerplugin.create_for_platforms' 2018-01-04T19:37:20 CFY <PlatformServicesInventory> [service-change-handler_5c9bd.create] Task started 'dockerplugin.create_for_platforms' 2018-01-04T19:37:20 CFY <PlatformServicesInventory> [service-change-handler_5c9bd.create] Task succeeded 'dockerplugin.create_for_platforms' 2018-01-04T19:37:21 CFY <PlatformServicesInventory> [service-change-handler_5c9bd->docker_host_88070|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:37:21 CFY <PlatformServicesInventory> [service-change-handler_5c9bd->docker_host_88070|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:37:21 CFY <PlatformServicesInventory> [service-change-handler_5c9bd->docker_host_88070|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:37:21 CFY <PlatformServicesInventory> [service-change-handler_5c9bd] Configuring node 2018-01-04T19:37:22 CFY <PlatformServicesInventory> [service-change-handler_5c9bd] Starting node 2018-01-04T19:37:22 CFY <PlatformServicesInventory> [service-change-handler_5c9bd.start] Sending task 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:37:22 CFY <PlatformServicesInventory> [service-change-handler_5c9bd.start] Task started 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:37:44 CFY <PlatformServicesInventory> [service-change-handler_5c9bd.start] Task succeeded 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:37:45 CFY <PlatformServicesInventory> 'install' workflow execution succeeded Finished executing workflow install on deployment PlatformServicesInventory * Run 'cfy events list --include-logs --execution-id 3fb2ec52-c86a-4b3e-9208-ecc3cca7dc58' to retrieve the execution's events/logs + cat + cfy install -p ./blueprints/dh/DeploymentHandler.yaml -b DeploymentHandlerBP -d DeploymentHandler -i location_id=MbOr -i ../dhinputs Uploading blueprint ./blueprints/dh/DeploymentHandler.yaml... Blueprint uploaded. The blueprint's id is DeploymentHandlerBP Processing inputs source: location_id=MbOr Processing inputs source: ../dhinputs Creating new deployment from blueprint DeploymentHandlerBP... Deployment created. The deployment's id is DeploymentHandler Executing workflow install on deployment DeploymentHandler [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:37:55 CFY <DeploymentHandler> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:37:55 CFY <DeploymentHandler> Installing deployment plugins 2018-01-04T19:37:55 CFY <DeploymentHandler> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:37:55 CFY <DeploymentHandler> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:37:56 CFY <DeploymentHandler> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:37:56 CFY <DeploymentHandler> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:37:56 CFY <DeploymentHandler> Creating deployment work directory 2018-01-04T19:37:57 CFY <DeploymentHandler> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:38:02 CFY <DeploymentHandler> Starting 'install' workflow execution 2018-01-04T19:38:02 CFY <DeploymentHandler> [docker_host_61886] Creating node 2018-01-04T19:38:02 CFY <DeploymentHandler> [docker_host_61886.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:38:02 CFY <DeploymentHandler> [docker_host_61886.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:38:03 CFY <DeploymentHandler> [docker_host_61886.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:38:03 CFY <DeploymentHandler> [docker_host_61886] Configuring node 2018-01-04T19:38:04 CFY <DeploymentHandler> [docker_host_61886] Starting node 2018-01-04T19:38:04 CFY <DeploymentHandler> [deployment-handler_76671] Creating node 2018-01-04T19:38:04 CFY <DeploymentHandler> [deployment-handler_76671.create] Sending task 'dockerplugin.create_for_platforms' 2018-01-04T19:38:04 CFY <DeploymentHandler> [deployment-handler_76671.create] Task started 'dockerplugin.create_for_platforms' 2018-01-04T19:38:05 CFY <DeploymentHandler> [deployment-handler_76671.create] Task succeeded 'dockerplugin.create_for_platforms' 2018-01-04T19:38:05 CFY <DeploymentHandler> [deployment-handler_76671->docker_host_61886|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:38:05 CFY <DeploymentHandler> [deployment-handler_76671->docker_host_61886|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:38:06 CFY <DeploymentHandler> [deployment-handler_76671->docker_host_61886|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:38:06 CFY <DeploymentHandler> [deployment-handler_76671] Configuring node 2018-01-04T19:38:06 CFY <DeploymentHandler> [deployment-handler_76671] Starting node 2018-01-04T19:38:06 CFY <DeploymentHandler> [deployment-handler_76671.start] Sending task 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:38:06 CFY <DeploymentHandler> [deployment-handler_76671.start] Task started 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:41:52 CFY <DeploymentHandler> [deployment-handler_76671.start] Task succeeded 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:41:53 CFY <DeploymentHandler> 'install' workflow execution succeeded Finished executing workflow install on deployment DeploymentHandler * Run 'cfy events list --include-logs --execution-id 006c73dd-7a87-4441-a128-a26fbbf9e1da' to retrieve the execution's events/logs + cfy install -p ./blueprints/ph/policy_handler.yaml -b policy_handler_BP -d policy_handler -i policy_handler_image=nexus3.onap.org:10001/onap/org.onap.dcaegen2.platform.policy-handler:1.1-latest -i location_id=MbOr -i ../config/phinputs.yaml Uploading blueprint ./blueprints/ph/policy_handler.yaml... Blueprint uploaded. The blueprint's id is policy_handler_BP Processing inputs source: policy_handler_image=nexus3.onap.org:10001/onap/org.onap.dcaegen2.platform.policy-handler:1.1-latest Processing inputs source: location_id=MbOr Processing inputs source: ../config/phinputs.yaml Creating new deployment from blueprint policy_handler_BP... Deployment created. The deployment's id is policy_handler Executing workflow install on deployment policy_handler [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:41:58 CFY <policy_handler> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:41:58 CFY <policy_handler> Installing deployment plugins 2018-01-04T19:41:58 CFY <policy_handler> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:41:58 CFY <policy_handler> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:41:59 CFY <policy_handler> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:42:00 CFY <policy_handler> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:42:00 CFY <policy_handler> Creating deployment work directory 2018-01-04T19:42:00 CFY <policy_handler> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:42:05 CFY <policy_handler> Starting 'install' workflow execution 2018-01-04T19:42:05 CFY <policy_handler> [docker_host_15bee] Creating node 2018-01-04T19:42:06 CFY <policy_handler> [docker_host_15bee.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:42:06 CFY <policy_handler> [docker_host_15bee.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:42:06 CFY <policy_handler> [docker_host_15bee.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:42:07 CFY <policy_handler> [docker_host_15bee] Configuring node 2018-01-04T19:42:07 CFY <policy_handler> [docker_host_15bee] Starting node 2018-01-04T19:42:08 CFY <policy_handler> [policy_handler_eee42] Creating node 2018-01-04T19:42:08 CFY <policy_handler> [policy_handler_eee42.create] Sending task 'dockerplugin.create_for_platforms' 2018-01-04T19:42:08 CFY <policy_handler> [policy_handler_eee42.create] Task started 'dockerplugin.create_for_platforms' 2018-01-04T19:42:08 CFY <policy_handler> [policy_handler_eee42.create] Task succeeded 'dockerplugin.create_for_platforms' 2018-01-04T19:42:08 CFY <policy_handler> [policy_handler_eee42->docker_host_15bee|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:42:08 CFY <policy_handler> [policy_handler_eee42->docker_host_15bee|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:42:09 CFY <policy_handler> [policy_handler_eee42->docker_host_15bee|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:42:09 CFY <policy_handler> [policy_handler_eee42] Configuring node 2018-01-04T19:42:10 CFY <policy_handler> [policy_handler_eee42] Starting node 2018-01-04T19:42:10 CFY <policy_handler> [policy_handler_eee42.start] Sending task 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:42:10 CFY <policy_handler> [policy_handler_eee42.start] Task started 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:42:38 CFY <policy_handler> [policy_handler_eee42.start] Task succeeded 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:42:38 CFY <policy_handler> 'install' workflow execution succeeded Finished executing workflow install on deployment policy_handler * Run 'cfy events list --include-logs --execution-id 2d4dafa6-b187-45a4-8312-9bca2f85b314' to retrieve the execution's events/logs Waiting for CDAP cluster to register + echo 'Waiting for CDAP cluster to register' + grep cdap + curl -Ss http://10.195.200.32:8500/v1/catalog/service/cdap [{"ID":"4fc3f38c-259f-1172-1313-8e8404eb27fe","Node":"dcaecdap02","Address":"10.0.0.15","Datacenter":"mbor","TaggedAddresses":{"lan":"10.0.0.15","wan":"10.0.0.15"},"NodeMeta":{},"ServiceID":"cdap","ServiceName":"cdap","ServiceTags":[],"ServiceAddress":"10.195.200.50","ServicePort":11015,"ServiceEnableTagOverride":false,"CreateIndex":207,"ModifyIndex":207}] CDAP cluster registered + echo 'CDAP cluster registered' + cfy install -p ./blueprints/cdapbroker/cdap_broker.yaml -b cdapbroker -d cdapbroker -i location_id=MbOr Uploading blueprint ./blueprints/cdapbroker/cdap_broker.yaml... Blueprint uploaded. The blueprint's id is cdapbroker Processing inputs source: location_id=MbOr Creating new deployment from blueprint cdapbroker... Deployment created. The deployment's id is cdapbroker Executing workflow install on deployment cdapbroker [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:42:45 CFY <cdapbroker> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:42:45 CFY <cdapbroker> Installing deployment plugins 2018-01-04T19:42:45 CFY <cdapbroker> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:42:45 CFY <cdapbroker> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:42:47 CFY <cdapbroker> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:42:47 CFY <cdapbroker> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:42:47 CFY <cdapbroker> Creating deployment work directory 2018-01-04T19:42:47 CFY <cdapbroker> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:42:52 CFY <cdapbroker> Starting 'install' workflow execution 2018-01-04T19:42:53 CFY <cdapbroker> [docker_host_eb0fc] Creating node 2018-01-04T19:42:53 CFY <cdapbroker> [docker_host_eb0fc.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:42:53 CFY <cdapbroker> [docker_host_eb0fc.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:42:53 CFY <cdapbroker> [docker_host_eb0fc.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:42:54 CFY <cdapbroker> [docker_host_eb0fc] Configuring node 2018-01-04T19:42:54 CFY <cdapbroker> [docker_host_eb0fc] Starting node 2018-01-04T19:42:55 CFY <cdapbroker> [cdap_broker_9f679] Creating node 2018-01-04T19:42:55 CFY <cdapbroker> [cdap_broker_9f679.create] Sending task 'dockerplugin.create_for_platforms' 2018-01-04T19:42:55 CFY <cdapbroker> [cdap_broker_9f679.create] Task started 'dockerplugin.create_for_platforms' 2018-01-04T19:42:55 CFY <cdapbroker> [cdap_broker_9f679.create] Task succeeded 'dockerplugin.create_for_platforms' 2018-01-04T19:42:55 CFY <cdapbroker> [cdap_broker_9f679->docker_host_eb0fc|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:42:55 CFY <cdapbroker> [cdap_broker_9f679->docker_host_eb0fc|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:42:56 CFY <cdapbroker> [cdap_broker_9f679->docker_host_eb0fc|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:42:56 CFY <cdapbroker> [cdap_broker_9f679] Configuring node 2018-01-04T19:42:57 CFY <cdapbroker> [cdap_broker_9f679] Starting node 2018-01-04T19:42:57 CFY <cdapbroker> [cdap_broker_9f679.start] Sending task 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:42:57 CFY <cdapbroker> [cdap_broker_9f679.start] Task started 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:45:10 CFY <cdapbroker> [cdap_broker_9f679.start] Task succeeded 'dockerplugin.create_and_start_container_for_platforms' 2018-01-04T19:45:11 CFY <cdapbroker> [broker_deleter_f7729] Creating node 2018-01-04T19:45:11 CFY <cdapbroker> [broker_deleter_f7729] Configuring node 2018-01-04T19:45:12 CFY <cdapbroker> [broker_deleter_f7729] Starting node 2018-01-04T19:45:12 CFY <cdapbroker> 'install' workflow execution succeeded Finished executing workflow install on deployment cdapbroker * Run 'cfy events list --include-logs --execution-id f40d8da7-0fa7-4c1e-b8d1-127fdec05778' to retrieve the execution's events/logs + cfy install -p ./blueprints/ves/ves.yaml -b ves -d ves -i ../config/vesinput.yaml Uploading blueprint ./blueprints/ves/ves.yaml... Blueprint uploaded. The blueprint's id is ves Processing inputs source: ../config/vesinput.yaml Creating new deployment from blueprint ves... Deployment created. The deployment's id is ves Executing workflow install on deployment ves [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:45:21 CFY <ves> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:45:21 CFY <ves> Installing deployment plugins 2018-01-04T19:45:21 CFY <ves> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:45:21 CFY <ves> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:45:22 CFY <ves> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:45:22 CFY <ves> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:45:22 CFY <ves> Creating deployment work directory 2018-01-04T19:45:23 CFY <ves> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:45:25 CFY <ves> Starting 'install' workflow execution 2018-01-04T19:45:25 CFY <ves> [docker_collector_host_eb9ee] Creating node 2018-01-04T19:45:26 CFY <ves> [docker_collector_host_eb9ee.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:45:26 CFY <ves> [docker_collector_host_eb9ee.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:45:26 CFY <ves> [docker_collector_host_eb9ee.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:45:27 CFY <ves> [docker_collector_host_eb9ee] Configuring node 2018-01-04T19:45:27 CFY <ves> [docker_collector_host_eb9ee] Starting node 2018-01-04T19:45:28 CFY <ves> [ves_58b13] Creating node 2018-01-04T19:45:28 CFY <ves> [ves_58b13.create] Sending task 'dockerplugin.create_for_components_with_streams' 2018-01-04T19:45:28 CFY <ves> [ves_58b13.create] Task started 'dockerplugin.create_for_components_with_streams' 2018-01-04T19:45:29 CFY <ves> [ves_58b13.create] Task succeeded 'dockerplugin.create_for_components_with_streams' 2018-01-04T19:45:29 CFY <ves> [ves_58b13->docker_collector_host_eb9ee|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:45:29 CFY <ves> [ves_58b13->docker_collector_host_eb9ee|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:45:29 CFY <ves> [ves_58b13->docker_collector_host_eb9ee|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:45:29 CFY <ves> [ves_58b13] Configuring node 2018-01-04T19:45:30 CFY <ves> [ves_58b13] Starting node 2018-01-04T19:45:30 CFY <ves> [ves_58b13.start] Sending task 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T19:45:30 CFY <ves> [ves_58b13.start] Task started 'dockerplugin.create_and_start_container_for_components_with_streams' Timed out waiting for workflow 'install' of deployment 'ves' to end. The execution may still be running properly; however, the command-line utility was instructed to wait up to 900 seconds for its completion. * Run 'cfy executions list' to determine the execution's status. * Run 'cfy executions cancel --execution-id 3b9a6058-3b35-4406-a077-8430fff5a518' to cancel the running workflow. * Run 'cfy events list --tail --include-logs --execution-id 3b9a6058-3b35-4406-a077-8430fff5a518' to retrieve the execution's events/logs + cfy install -p ./blueprints/tca/tca.yaml -b tca -d tca -i ../config/tcainputs.yaml Uploading blueprint ./blueprints/tca/tca.yaml... Blueprint uploaded. The blueprint's id is tca Processing inputs source: ../config/tcainputs.yaml Creating new deployment from blueprint tca... Deployment created. The deployment's id is tca Executing workflow install on deployment tca [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T20:00:27 CFY <tca> Starting 'create_deployment_environment' workflow execution 2018-01-04T20:00:27 CFY <tca> Installing deployment plugins 2018-01-04T20:00:27 CFY <tca> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T20:00:27 CFY <tca> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T20:00:28 CFY <tca> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T20:00:28 CFY <tca> Skipping starting deployment policy engine core - no policies defined 2018-01-04T20:00:28 CFY <tca> Creating deployment work directory 2018-01-04T20:00:28 CFY <tca> 'create_deployment_environment' workflow execution succeeded 2018-01-04T20:00:37 CFY <tca> Starting 'install' workflow execution 2018-01-04T20:00:37 CFY <tca> [tca_tca_ca556] Creating node 2018-01-04T20:00:37 CFY <tca> [tca_tca_ca556.create] Sending task 'cdapcloudify.cdap_plugin.create' 2018-01-04T20:00:38 CFY <tca> [tca_tca_ca556.create] Task started 'cdapcloudify.cdap_plugin.create' 2018-01-04T20:00:38 CFY <tca> [tca_tca_ca556.create] Task succeeded 'cdapcloudify.cdap_plugin.create' 2018-01-04T20:00:38 CFY <tca> [tca_tca_ca556] Configuring node 2018-01-04T20:00:39 CFY <tca> [tca_tca_ca556] Starting node 2018-01-04T20:00:39 CFY <tca> [tca_tca_ca556.start] Sending task 'cdapcloudify.cdap_plugin.deploy_and_start_application' 2018-01-04T20:00:39 CFY <tca> [tca_tca_ca556.start] Task started 'cdapcloudify.cdap_plugin.deploy_and_start_application' 2018-01-04T20:01:04 CFY <tca> [tca_tca_ca556.start] Task succeeded 'cdapcloudify.cdap_plugin.deploy_and_start_application' 2018-01-04T20:01:04 CFY <tca> 'install' workflow execution succeeded Finished executing workflow install on deployment tca * Run 'cfy events list --include-logs --execution-id 381ec53d-5709-4479-9933-d367d219f471' to retrieve the execution's events/logs + cfy install -p ./blueprints/hrules/holmes-rules.yaml -b hrules -d hrules -i ../config/hr-ip.yaml Uploading blueprint ./blueprints/hrules/holmes-rules.yaml... Blueprint uploaded. The blueprint's id is hrules Processing inputs source: ../config/hr-ip.yaml Creating new deployment from blueprint hrules... Deployment created. The deployment's id is hrules Executing workflow install on deployment hrules [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T20:01:14 CFY <hrules> Starting 'create_deployment_environment' workflow execution 2018-01-04T20:01:14 CFY <hrules> Installing deployment plugins 2018-01-04T20:01:14 CFY <hrules> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T20:01:14 CFY <hrules> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T20:01:16 CFY <hrules> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T20:01:16 CFY <hrules> Skipping starting deployment policy engine core - no policies defined 2018-01-04T20:01:16 CFY <hrules> Creating deployment work directory 2018-01-04T20:01:16 CFY <hrules> 'create_deployment_environment' workflow execution succeeded 2018-01-04T20:01:21 CFY <hrules> Starting 'install' workflow execution 2018-01-04T20:01:21 CFY <hrules> [docker_holmes_host_877ca] Creating node 2018-01-04T20:01:21 CFY <hrules> [pgaasvm_20bce] Creating node 2018-01-04T20:01:21 CFY <hrules> [docker_holmes_host_877ca.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T20:01:21 CFY <hrules> [pgaasvm_20bce.create] Sending task 'pgaas.pgaas_plugin.create_database' 2018-01-04T20:01:22 CFY <hrules> [docker_holmes_host_877ca.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T20:01:22 CFY <hrules> [pgaasvm_20bce.create] Task started 'pgaas.pgaas_plugin.create_database' 2018-01-04T20:01:22 CFY <hrules> [docker_holmes_host_877ca.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T20:01:22 CFY <hrules> [docker_holmes_host_877ca] Configuring node 2018-01-04T20:01:23 CFY <hrules> [pgaasvm_20bce.create] Task succeeded 'pgaas.pgaas_plugin.create_database' 2018-01-04T20:01:23 CFY <hrules> [docker_holmes_host_877ca] Starting node 2018-01-04T20:01:23 CFY <hrules> [pgaasvm_20bce] Configuring node 2018-01-04T20:01:23 CFY <hrules> [pgaasvm_20bce] Starting node 2018-01-04T20:01:24 CFY <hrules> [holmesrules_5137d] Creating node 2018-01-04T20:01:24 CFY <hrules> [holmesrules_5137d.create] Sending task 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:01:24 CFY <hrules> [holmesrules_5137d.create] Task started 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:01:25 CFY <hrules> [holmesrules_5137d.create] Task succeeded 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:01:25 CFY <hrules> [holmesrules_5137d->docker_holmes_host_877ca|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T20:01:25 CFY <hrules> [holmesrules_5137d->docker_holmes_host_877ca|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T20:01:26 CFY <hrules> [holmesrules_5137d->docker_holmes_host_877ca|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T20:01:26 CFY <hrules> [holmesrules_5137d] Configuring node 2018-01-04T20:01:27 CFY <hrules> [holmesrules_5137d] Starting node 2018-01-04T20:01:27 CFY <hrules> [holmesrules_5137d.start] Sending task 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:01:27 CFY <hrules> [holmesrules_5137d.start] Task started 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:01:54 CFY <hrules> [holmesrules_5137d.start] Task succeeded 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:01:54 CFY <hrules> 'install' workflow execution succeeded Finished executing workflow install on deployment hrules * Run 'cfy events list --include-logs --execution-id ba698197-330b-45db-a47b-31fbf1e52a0c' to retrieve the execution's events/logs + cfy install -p ./blueprints/hengine/holmes-engine.yaml -b hengine -d hengine -i ../config/he-ip.yaml Uploading blueprint ./blueprints/hengine/holmes-engine.yaml... Blueprint uploaded. The blueprint's id is hengine Processing inputs source: ../config/he-ip.yaml Creating new deployment from blueprint hengine... Deployment created. The deployment's id is hengine Executing workflow install on deployment hengine [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T20:02:04 CFY <hengine> Starting 'create_deployment_environment' workflow execution 2018-01-04T20:02:04 CFY <hengine> Installing deployment plugins 2018-01-04T20:02:04 CFY <hengine> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T20:02:04 CFY <hengine> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T20:02:06 CFY <hengine> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T20:02:06 CFY <hengine> Skipping starting deployment policy engine core - no policies defined 2018-01-04T20:02:06 CFY <hengine> Creating deployment work directory 2018-01-04T20:02:06 CFY <hengine> 'create_deployment_environment' workflow execution succeeded 2018-01-04T20:02:11 CFY <hengine> Starting 'install' workflow execution 2018-01-04T20:02:12 CFY <hengine> [docker_holmes_host_7fa6d] Creating node 2018-01-04T20:02:12 CFY <hengine> [pgaasvm_cd3bb] Creating node 2018-01-04T20:02:12 CFY <hengine> [pgaasvm_cd3bb.create] Sending task 'pgaas.pgaas_plugin.create_database' 2018-01-04T20:02:12 CFY <hengine> [docker_holmes_host_7fa6d.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T20:02:12 CFY <hengine> [pgaasvm_cd3bb.create] Task started 'pgaas.pgaas_plugin.create_database' 2018-01-04T20:02:12 CFY <hengine> [docker_holmes_host_7fa6d.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T20:02:12 CFY <hengine> [docker_holmes_host_7fa6d.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T20:02:12 CFY <hengine> [pgaasvm_cd3bb.create] Task succeeded 'pgaas.pgaas_plugin.create_database' 2018-01-04T20:02:13 CFY <hengine> [docker_holmes_host_7fa6d] Configuring node 2018-01-04T20:02:13 CFY <hengine> [pgaasvm_cd3bb] Configuring node 2018-01-04T20:02:13 CFY <hengine> [docker_holmes_host_7fa6d] Starting node 2018-01-04T20:02:13 CFY <hengine> [pgaasvm_cd3bb] Starting node 2018-01-04T20:02:14 CFY <hengine> [holmesengine_643a5] Creating node 2018-01-04T20:02:14 CFY <hengine> [holmesengine_643a5.create] Sending task 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:02:14 CFY <hengine> [holmesengine_643a5.create] Task started 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:02:15 CFY <hengine> [holmesengine_643a5.create] Task succeeded 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:02:15 CFY <hengine> [holmesengine_643a5->docker_holmes_host_7fa6d|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T20:02:15 CFY <hengine> [holmesengine_643a5->docker_holmes_host_7fa6d|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T20:02:16 CFY <hengine> [holmesengine_643a5->docker_holmes_host_7fa6d|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T20:02:16 CFY <hengine> [holmesengine_643a5] Configuring node 2018-01-04T20:02:16 CFY <hengine> [holmesengine_643a5] Starting node 2018-01-04T20:02:16 CFY <hengine> [holmesengine_643a5.start] Sending task 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:02:17 CFY <hengine> [holmesengine_643a5.start] Task started 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:02:55 CFY <hengine> [holmesengine_643a5.start] Task succeeded 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:02:56 CFY <hengine> 'install' workflow execution succeeded Finished executing workflow install on deployment hengine * Run 'cfy events list --include-logs --execution-id 568d7e03-a0e7-40cb-ad49-c5a6a7a027f7' to retrieve the execution's events/logs + echo 10.195.200.32 + echo 10.195.200.42 + rm -f /tmp/ready_to_exit + '[' '!' -e /tmp/ready_to_exit ']' + sleep 30 + '[' '!' -e /tmp/ready_to_exit ']' + sleep 30
Unluckily, In the run above, I faced an issue with the VES collector that failed to get deployed properly:
Expand source+ cfy install -p ./blueprints/ves/ves.yaml -b ves -d ves -i ../config/vesinput.yaml Uploading blueprint ./blueprints/ves/ves.yaml... Blueprint uploaded. The blueprint's id is ves Processing inputs source: ../config/vesinput.yaml Creating new deployment from blueprint ves... Deployment created. The deployment's id is ves Executing workflow install on deployment ves [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T19:45:21 CFY <ves> Starting 'create_deployment_environment' workflow execution 2018-01-04T19:45:21 CFY <ves> Installing deployment plugins 2018-01-04T19:45:21 CFY <ves> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T19:45:21 CFY <ves> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T19:45:22 CFY <ves> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T19:45:22 CFY <ves> Skipping starting deployment policy engine core - no policies defined 2018-01-04T19:45:22 CFY <ves> Creating deployment work directory 2018-01-04T19:45:23 CFY <ves> 'create_deployment_environment' workflow execution succeeded 2018-01-04T19:45:25 CFY <ves> Starting 'install' workflow execution 2018-01-04T19:45:25 CFY <ves> [docker_collector_host_eb9ee] Creating node 2018-01-04T19:45:26 CFY <ves> [docker_collector_host_eb9ee.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T19:45:26 CFY <ves> [docker_collector_host_eb9ee.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T19:45:26 CFY <ves> [docker_collector_host_eb9ee.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T19:45:27 CFY <ves> [docker_collector_host_eb9ee] Configuring node 2018-01-04T19:45:27 CFY <ves> [docker_collector_host_eb9ee] Starting node 2018-01-04T19:45:28 CFY <ves> [ves_58b13] Creating node 2018-01-04T19:45:28 CFY <ves> [ves_58b13.create] Sending task 'dockerplugin.create_for_components_with_streams' 2018-01-04T19:45:28 CFY <ves> [ves_58b13.create] Task started 'dockerplugin.create_for_components_with_streams' 2018-01-04T19:45:29 CFY <ves> [ves_58b13.create] Task succeeded 'dockerplugin.create_for_components_with_streams' 2018-01-04T19:45:29 CFY <ves> [ves_58b13->docker_collector_host_eb9ee|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T19:45:29 CFY <ves> [ves_58b13->docker_collector_host_eb9ee|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T19:45:29 CFY <ves> [ves_58b13->docker_collector_host_eb9ee|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T19:45:29 CFY <ves> [ves_58b13] Configuring node 2018-01-04T19:45:30 CFY <ves> [ves_58b13] Starting node 2018-01-04T19:45:30 CFY <ves> [ves_58b13.start] Sending task 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T19:45:30 CFY <ves> [ves_58b13.start] Task started 'dockerplugin.create_and_start_container_for_components_with_streams' Timed out waiting for workflow 'install' of deployment 'ves' to end. The execution may still be running properly; however, the command-line utility was instructed to wait up to 900 seconds for its completion. * Run 'cfy executions list' to determine the execution's status. * Run 'cfy executions cancel --execution-id 3b9a6058-3b35-4406-a077-8430fff5a518' to cancel the running workflow. * Run 'cfy events list --tail --include-logs --execution-id 3b9a6058-3b35-4406-a077-8430fff5a518' to retrieve the execution's events/logs
To debug, I have done the following:
go in the boot container
docker exec -it boot bash
Activate the virtual environment created by the installer
source dcaeinstall/bin/activate
Run the command provided in the failed execution logs to see the logs output which might point to the failure
Expand source(dcaeinstall) installer@e6120e566d15:~/consul$ cfy events list --tail --include-logs --execution-id 3b9a6058-3b35-4406-a077-8430fff5a518 Listing events for execution id 3b9a6058-3b35-4406-a077-8430fff5a518 [include_logs=True] Execution of workflow install for deployment ves failed. [error=Traceback (most recent call last): File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 472, in _remote_workflow_child_thread File "/tmp/pip-build-c5GA7o/cloudify-plugins-common/cloudify/dispatch.py", line 504, in _execute_workflow_function File "/opt/mgmtworker/env/lib/python2.7/site-packages/cloudify/plugins/workflows.py", line 27, in install node_instances=set(ctx.node_instances)) File "/opt/mgmtworker/env/lib/python2.7/site-packages/cloudify/plugins/lifecycle.py", line 28, in install_node_instances processor.install() File "/opt/mgmtworker/env/lib/python2.7/site-packages/cloudify/plugins/lifecycle.py", line 83, in install graph_finisher_func=self._finish_install) File "/opt/mgmtworker/env/lib/python2.7/site-packages/cloudify/plugins/lifecycle.py", line 103, in _process_node_instances self.graph.execute() File "/opt/mgmtworker/env/lib/python2.7/site-packages/cloudify/workflows/tasks_graph.py", line 133, in execute self._handle_terminated_task(task) File "/opt/mgmtworker/env/lib/python2.7/site-packages/cloudify/workflows/tasks_graph.py", line 207, in _handle_terminated_task raise RuntimeError(message) RuntimeError: Workflow failed: Task failed 'dockerplugin.create_and_start_container_for_components_with_streams' -> 500 Server Error: Internal Server Error ("{"message":"Get https://nexus3.onap.org:10001/v2/onap/org.onap.dcaegen2.collectors.ves.vescollector/manifests/v1.1.0: read tcp 10.0.0.13:46574-\u003e199.204.45.137:10001: read: no route to host"}") ]
Unfortunatly for me, Nexus decided to crap on me at the exact time it tried to query it...
Anyway, here try to understand the issue, and/or send the output to the mailing-list. In my case, I tried to uninstall and re-installed the ves and it worked.Uninstall the failed deployment
Expand source(dcaeinstall) installer@e6120e566d15:~/consul$ cfy uninstall -d ves Executing workflow uninstall on deployment ves [timeout=900 seconds] 2018-01-04T20:23:39 CFY <ves> Starting 'uninstall' workflow execution 2018-01-04T20:23:39 CFY <ves> [ves_58b13] Stopping node 2018-01-04T20:23:39 CFY <ves> [ves_58b13.stop] Sending task 'dockerplugin.stop_and_remove_container' 2018-01-04T20:23:39 CFY <ves> [ves_58b13.stop] Task started 'dockerplugin.stop_and_remove_container' 2018-01-04T20:23:40 CFY <ves> [ves_58b13.stop] Task failed 'dockerplugin.stop_and_remove_container' -> 'container_id' 2018-01-04T20:23:41 CFY <ves> [ves_58b13] Deleting node 2018-01-04T20:23:41 CFY <ves> [ves_58b13.delete] Sending task 'dockerplugin.cleanup_discovery' 2018-01-04T20:23:41 CFY <ves> [ves_58b13.delete] Task started 'dockerplugin.cleanup_discovery' 2018-01-04T20:23:41 CFY <ves> [ves_58b13.delete] Task succeeded 'dockerplugin.cleanup_discovery' 2018-01-04T20:23:42 CFY <ves> [docker_collector_host_eb9ee] Stopping node 2018-01-04T20:23:42 CFY <ves> [docker_collector_host_eb9ee] Deleting node 2018-01-04T20:23:42 CFY <ves> [docker_collector_host_eb9ee.delete] Sending task 'dockerplugin.unselect_docker_host' 2018-01-04T20:23:42 CFY <ves> [docker_collector_host_eb9ee.delete] Task started 'dockerplugin.unselect_docker_host' 2018-01-04T20:23:43 CFY <ves> [docker_collector_host_eb9ee.delete] Task succeeded 'dockerplugin.unselect_docker_host' 2018-01-04T20:23:43 CFY <ves> 'uninstall' workflow execution succeeded Finished executing workflow uninstall on deployment ves * Run 'cfy events list --include-logs --execution-id cecdd4f0-8fd4-48b0-b9f7-2eb888b478e8' to retrieve the execution's events/logs Deleting deployment ves... Deployment deleted Deleting blueprint ves... Blueprint deleted
Install the deployment
Expand source(dcaeinstall) installer@e6120e566d15:~/consul$ cfy install -p ./blueprints/ves/ves.yaml -b ves -d ves -i ../config/vesinput.yaml Uploading blueprint ./blueprints/ves/ves.yaml... Blueprint uploaded. The blueprint's id is ves Processing inputs source: ../config/vesinput.yaml Creating new deployment from blueprint ves... Deployment created. The deployment's id is ves Executing workflow install on deployment ves [timeout=900 seconds] Deployment environment creation is in progress... 2018-01-04T20:24:01 CFY <ves> Starting 'create_deployment_environment' workflow execution 2018-01-04T20:24:02 CFY <ves> Installing deployment plugins 2018-01-04T20:24:02 CFY <ves> Sending task 'cloudify_agent.operations.install_plugins' 2018-01-04T20:24:02 CFY <ves> Task started 'cloudify_agent.operations.install_plugins' 2018-01-04T20:24:03 CFY <ves> Task succeeded 'cloudify_agent.operations.install_plugins' 2018-01-04T20:24:03 CFY <ves> Skipping starting deployment policy engine core - no policies defined 2018-01-04T20:24:03 CFY <ves> Creating deployment work directory 2018-01-04T20:24:03 CFY <ves> 'create_deployment_environment' workflow execution succeeded 2018-01-04T20:24:06 CFY <ves> Starting 'install' workflow execution 2018-01-04T20:24:06 CFY <ves> [docker_collector_host_fec48] Creating node 2018-01-04T20:24:06 CFY <ves> [docker_collector_host_fec48.create] Sending task 'dockerplugin.select_docker_host' 2018-01-04T20:24:06 CFY <ves> [docker_collector_host_fec48.create] Task started 'dockerplugin.select_docker_host' 2018-01-04T20:24:07 CFY <ves> [docker_collector_host_fec48.create] Task succeeded 'dockerplugin.select_docker_host' 2018-01-04T20:24:07 CFY <ves> [docker_collector_host_fec48] Configuring node 2018-01-04T20:24:07 CFY <ves> [docker_collector_host_fec48] Starting node 2018-01-04T20:24:08 CFY <ves> [ves_45c17] Creating node 2018-01-04T20:24:08 CFY <ves> [ves_45c17.create] Sending task 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:24:08 CFY <ves> [ves_45c17.create] Task started 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:24:09 CFY <ves> [ves_45c17.create] Task succeeded 'dockerplugin.create_for_components_with_streams' 2018-01-04T20:24:09 CFY <ves> [ves_45c17->docker_collector_host_fec48|preconfigure] Sending task 'relationshipplugin.forward_destination_info' 2018-01-04T20:24:09 CFY <ves> [ves_45c17->docker_collector_host_fec48|preconfigure] Task started 'relationshipplugin.forward_destination_info' 2018-01-04T20:24:10 CFY <ves> [ves_45c17->docker_collector_host_fec48|preconfigure] Task succeeded 'relationshipplugin.forward_destination_info' 2018-01-04T20:24:10 CFY <ves> [ves_45c17] Configuring node 2018-01-04T20:24:10 CFY <ves> [ves_45c17] Starting node 2018-01-04T20:24:10 CFY <ves> [ves_45c17.start] Sending task 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:24:10 CFY <ves> [ves_45c17.start] Task started 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:24:48 CFY <ves> [ves_45c17.start] Task succeeded 'dockerplugin.create_and_start_container_for_components_with_streams' 2018-01-04T20:24:49 CFY <ves> 'install' workflow execution succeeded Finished executing workflow install on deployment ves * Run 'cfy events list --include-logs --execution-id 5029d6f6-000d-49e7-be9e-c6f627b0d73e' to retrieve the execution's events/logs
- Now, time for a break. This will take arround 30/40 minutes for the Kubernetes stuff, and up to an hour for DCAE in OpenStack
After 45mn, everything is ready
$ kubectl get pods --all-namespaces
Result:
Expand source$ kubectl get pods --all-namespaces NAMESPACE NAME READY STATUS RESTARTS AGE kube-system heapster-4285517626-n5b57 1/1 Running 0 55m kube-system kube-dns-638003847-px0s1 3/3 Running 0 55m kube-system kubernetes-dashboard-716739405-llh0w 1/1 Running 0 55m kube-system monitoring-grafana-2360823841-tn80f 1/1 Running 0 55m kube-system monitoring-influxdb-2323019309-34ml1 1/1 Running 0 55m kube-system tiller-deploy-737598192-k2ttl 1/1 Running 0 55m onap-aaf aaf-1993711932-0xcdt 0/1 Running 0 46m onap-aaf aaf-cs-1310404376-6zjjh 1/1 Running 0 46m onap-aai aai-resources-1412762642-kh8r0 2/2 Running 0 47m onap-aai aai-service-749944520-t87vn 1/1 Running 0 47m onap-aai aai-traversal-3084029645-x29p6 2/2 Running 0 47m onap-aai data-router-3434587794-hj9b3 1/1 Running 0 47m onap-aai elasticsearch-622738319-m85sn 1/1 Running 0 47m onap-aai hbase-1949550546-lncls 1/1 Running 0 47m onap-aai model-loader-service-4144225433-0m8sp 2/2 Running 0 47m onap-aai search-data-service-378072033-sfrnd 2/2 Running 0 47m onap-aai sparky-be-3094577325-902jg 2/2 Running 0 47m onap-appc appc-1828810488-xg5k3 2/2 Running 0 47m onap-appc appc-dbhost-2793739621-ckxrf 1/1 Running 0 47m onap-appc appc-dgbuilder-2298093128-qd4b4 1/1 Running 0 47m onap-clamp clamp-2211988013-qwkvl 1/1 Running 0 46m onap-clamp clamp-mariadb-1812977665-mp89r 1/1 Running 0 46m onap-cli cli-595710742-wj4mg 1/1 Running 0 47m onap-consul consul-agent-3312409084-kv21c 1/1 Running 1 47m onap-consul consul-server-1173049560-966zr 1/1 Running 0 47m onap-consul consul-server-1173049560-d656s 1/1 Running 1 47m onap-consul consul-server-1173049560-k41w3 1/1 Running 0 47m onap-dcaegen2 dcaegen2 1/1 Running 0 47m onap-kube2msb kube2msb-registrator-1359309322-p60lx 1/1 Running 0 46m onap-log elasticsearch-1942187295-mtw6l 1/1 Running 0 47m onap-log kibana-3372627750-k8q6p 1/1 Running 0 47m onap-log logstash-1708188010-2vpd1 1/1 Running 0 47m onap-message-router dmaap-3126594942-vnj5w 1/1 Running 0 47m onap-message-router global-kafka-666408702-1z9c5 1/1 Running 0 47m onap-message-router zookeeper-624700062-kvk1m 1/1 Running 0 47m onap-msb msb-consul-3334785600-nz1zt 1/1 Running 0 47m onap-msb msb-discovery-196547432-pqs3g 1/1 Running 0 47m onap-msb msb-eag-1649257109-nl11h 1/1 Running 0 47m onap-msb msb-iag-1033096170-6cx7t 1/1 Running 0 47m onap-mso mariadb-829081257-q90fd 1/1 Running 0 47m onap-mso mso-3784963895-brdxx 2/2 Running 0 47m onap-multicloud framework-2273343137-nnvr5 1/1 Running 0 47m onap-multicloud multicloud-ocata-1517639325-gwkjr 1/1 Running 0 47m onap-multicloud multicloud-vio-4239509896-zxmvx 1/1 Running 0 47m onap-multicloud multicloud-windriver-3629763724-993qk 1/1 Running 0 47m onap-policy brmsgw-1909438199-k2ppk 1/1 Running 0 47m onap-policy drools-2600956298-p9t68 2/2 Running 0 47m onap-policy mariadb-2660273324-lj0ts 1/1 Running 0 47m onap-policy nexus-3663640793-pgf51 1/1 Running 0 47m onap-policy pap-466625067-2hcxb 2/2 Running 0 47m onap-policy pdp-2354817903-65rnb 2/2 Running 0 47m onap-portal portalapps-1783099045-prvmp 2/2 Running 0 47m onap-portal portaldb-3181004999-0t228 2/2 Running 0 47m onap-portal portalwidgets-2060058548-w6hr9 1/1 Running 0 47m onap-portal vnc-portal-3680188324-b22zq 1/1 Running 0 47m onap-robot robot-2551980890-cw3vj 1/1 Running 0 47m onap-sdc sdc-be-2336519847-hcs6h 2/2 Running 0 47m onap-sdc sdc-cs-1151560586-sfkf0 1/1 Running 0 47m onap-sdc sdc-es-2438522492-cw6rj 1/1 Running 0 47m onap-sdc sdc-fe-2862673798-lplcx 2/2 Running 0 47m onap-sdc sdc-kb-1258596734-43lf7 1/1 Running 0 47m onap-sdnc sdnc-1395102659-rd27h 2/2 Running 0 47m onap-sdnc sdnc-dbhost-3029711096-vl2jg 1/1 Running 0 47m onap-sdnc sdnc-dgbuilder-4267203648-bb828 1/1 Running 0 47m onap-sdnc sdnc-portal-2558294154-3nh31 1/1 Running 0 47m onap-uui uui-4267149477-bqt0r 1/1 Running 0 46m onap-uui uui-server-3441797946-dx683 1/1 Running 0 46m onap-vfc vfc-catalog-840807183-lx4d0 1/1 Running 0 46m onap-vfc vfc-emsdriver-2936953408-fb2pf 1/1 Running 0 46m onap-vfc vfc-gvnfmdriver-2866216209-k5t1t 1/1 Running 0 46m onap-vfc vfc-hwvnfmdriver-2588350680-bpglx 1/1 Running 0 46m onap-vfc vfc-jujudriver-406795794-ttp9p 1/1 Running 0 46m onap-vfc vfc-nokiavnfmdriver-1760240499-xm0qk 1/1 Running 0 46m onap-vfc vfc-nslcm-3756650867-1dnr0 1/1 Running 0 46m onap-vfc vfc-resmgr-1409642779-0603z 1/1 Running 0 46m onap-vfc vfc-vnflcm-3340104471-xsk72 1/1 Running 0 46m onap-vfc vfc-vnfmgr-2823857741-r04xj 1/1 Running 0 46m onap-vfc vfc-vnfres-1792029715-ls480 1/1 Running 0 46m onap-vfc vfc-workflow-3450325534-flwtw 1/1 Running 0 46m onap-vfc vfc-workflowengineactiviti-4110617986-mvlgl 1/1 Running 0 46m onap-vfc vfc-ztesdncdriver-1452986549-c59jb 1/1 Running 0 46m onap-vfc vfc-ztevmanagerdriver-2080553526-wdxwq 1/1 Running 0 46m onap-vid vid-mariadb-3318685446-hmf2q 1/1 Running 0 47m onap-vid vid-server-2994633010-x3t74 2/2 Running 0 47m onap-vnfsdk postgres-436836560-cl2dz 1/1 Running 0 46m onap-vnfsdk refrepo-1924147637-wft62 1/1 Running 0 46m
Update result (04/01/2018): Since c/26645 got merged, note the two new pods under the onap-dcaegen2 namespace. Here it was faster than above, because I already had the docker image locally.Expand source$ kubectl get pods --all-namespaces NAMESPACE NAME READY STATUS RESTARTS AGE kube-system heapster-4285517626-t1400 1/1 Running 0 23d kube-system kube-dns-638003847-3lsc9 3/3 Running 0 23d kube-system kubernetes-dashboard-716739405-dl0mx 1/1 Running 1 23d kube-system monitoring-grafana-2360823841-mz943 1/1 Running 0 23d kube-system monitoring-influxdb-2323019309-3hg7j 1/1 Running 1 23d kube-system tiller-deploy-737598192-0s32x 1/1 Running 0 23d onap-aaf aaf-1993711932-kk25r 0/1 Running 0 16m onap-aaf aaf-cs-1310404376-s4ftc 1/1 Running 0 16m onap-aai aai-resources-2269342809-rkd30 2/2 Running 0 17m onap-aai aai-service-749944520-76sl1 1/1 Running 0 17m onap-aai aai-traversal-8423740-mw90r 2/2 Running 0 17m onap-aai data-router-3434587794-n2x9c 1/1 Running 0 17m onap-aai elasticsearch-622738319-swzv2 1/1 Running 0 17m onap-aai hbase-1949550546-c22z3 1/1 Running 0 17m onap-aai model-loader-service-4144225433-s9pqp 2/2 Running 0 17m onap-aai search-data-service-3842430948-grqvc 2/2 Running 0 17m onap-aai sparky-be-4222608366-ggm5d 2/2 Running 0 17m onap-appc appc-1828810488-f0zg3 2/2 Running 0 17m onap-appc appc-dbhost-2793739621-6rnjz 1/1 Running 0 17m onap-appc appc-dgbuilder-2298093128-nnz9c 1/1 Running 0 17m onap-clamp clamp-2211988013-rngzh 1/1 Running 0 16m onap-clamp clamp-mariadb-1812977665-qhrpp 1/1 Running 0 16m onap-cli cli-595710742-2cqw7 1/1 Running 0 16m onap-consul consul-agent-3312409084-261ks 1/1 Running 2 17m onap-consul consul-server-1173049560-20448 1/1 Running 2 17m onap-consul consul-server-1173049560-9pn84 1/1 Running 1 17m onap-consul consul-server-1173049560-md1th 1/1 Running 1 17m onap-dcaegen2 heat-bootstrap-4010086101-0fdss 1/1 Running 0 17m onap-dcaegen2 nginx-1230103904-2qm41 1/1 Running 0 17m onap-kube2msb kube2msb-registrator-1227291125-lb6vw 1/1 Running 0 16m onap-log elasticsearch-1942187295-xqrxr 1/1 Running 0 16m onap-log kibana-3372627750-q93zv 1/1 Running 0 16m onap-log logstash-1708188010-18gms 1/1 Running 0 16m onap-message-router dmaap-3126594942-w1s5p 1/1 Running 0 17m onap-message-router global-kafka-3848542622-snjvq 1/1 Running 0 17m onap-message-router zookeeper-624700062-m08rx 1/1 Running 0 17m onap-msb msb-consul-3334785600-j7x42 1/1 Running 0 17m onap-msb msb-discovery-196547432-hpjlk 1/1 Running 0 17m onap-msb msb-eag-1649257109-m5d4h 1/1 Running 0 17m onap-msb msb-iag-1033096170-slnn5 1/1 Running 0 17m onap-mso mariadb-829081257-5nbgm 1/1 Running 0 17m onap-mso mso-3784963895-l7q3d 2/2 Running 0 17m onap-multicloud framework-2273343137-v3kfd 1/1 Running 0 16m onap-multicloud multicloud-ocata-1517639325-2pxbw 1/1 Running 0 16m onap-multicloud multicloud-vio-4239509896-3fh96 1/1 Running 0 16m onap-multicloud multicloud-windriver-3629763724-0mmpt 1/1 Running 0 16m onap-policy brmsgw-4149605335-283vs 1/1 Running 0 17m onap-policy drools-870120400-k491c 2/2 Running 0 17m onap-policy mariadb-2660273324-mpjkq 1/1 Running 0 17m onap-policy nexus-1730114603-9nvdg 1/1 Running 0 17m onap-policy pap-1693910617-v1f4p 2/2 Running 0 17m onap-policy pdp-3450409118-0dtq9 2/2 Running 0 17m onap-portal portalapps-1783099045-3v42h 2/2 Running 0 17m onap-portal portaldb-1451233177-6qtqq 1/1 Running 0 17m onap-portal portalwidgets-2060058548-k8pq1 1/1 Running 0 17m onap-portal vnc-portal-1319334380-5sjxz 1/1 Running 0 17m onap-robot robot-2551980890-xjngn 1/1 Running 0 17m onap-sdc sdc-be-2336519847-lb6f4 2/2 Running 0 17m onap-sdc sdc-cs-1151560586-06t27 1/1 Running 0 17m onap-sdc sdc-es-3319302712-d6c0z 1/1 Running 0 17m onap-sdc sdc-fe-2862673798-ffk7d 2/2 Running 0 17m onap-sdc sdc-kb-1258596734-rkvff 1/1 Running 0 17m onap-sdnc sdnc-1395102659-nc13w 2/2 Running 0 17m onap-sdnc sdnc-dbhost-3029711096-dxjsq 1/1 Running 0 17m onap-sdnc sdnc-dgbuilder-4267203648-v6s5w 1/1 Running 0 17m onap-sdnc sdnc-portal-2558294154-k6psg 1/1 Running 0 17m onap-uui uui-4267149477-q672x 1/1 Running 0 16m onap-uui uui-server-3441797946-qs1hq 1/1 Running 0 16m onap-vfc vfc-catalog-840807183-xqh9c 1/1 Running 0 16m onap-vfc vfc-emsdriver-2936953408-jwskm 1/1 Running 0 16m onap-vfc vfc-gvnfmdriver-2866216209-fkt8n 1/1 Running 0 16m onap-vfc vfc-hwvnfmdriver-2588350680-qg4xq 1/1 Running 0 16m onap-vfc vfc-jujudriver-406795794-lm91b 1/1 Running 0 16m onap-vfc vfc-nokiavnfmdriver-1760240499-3bswj 1/1 Running 0 16m onap-vfc vfc-nslcm-3756650867-k5wtq 1/1 Running 0 16m onap-vfc vfc-resmgr-1409642779-0xwxp 1/1 Running 0 16m onap-vfc vfc-vnflcm-3340104471-3s2th 1/1 Running 0 16m onap-vfc vfc-vnfmgr-2823857741-96h0q 1/1 Running 0 16m onap-vfc vfc-vnfres-1792029715-v0fm0 1/1 Running 0 16m onap-vfc vfc-workflow-3450325534-zfj11 1/1 Running 0 16m onap-vfc vfc-workflowengineactiviti-4110617986-vc677 1/1 Running 0 16m onap-vfc vfc-ztesdncdriver-1452986549-vv31k 1/1 Running 0 16m onap-vfc vfc-ztevmanagerdriver-2080553526-lzk66 1/1 Running 0 16m onap-vid vid-mariadb-3318685446-zdnww 1/1 Running 0 17m onap-vid vid-server-3026751708-7hglt 2/2 Running 0 17m onap-vnfsdk postgres-436836560-rkc4k 1/1 Running 0 16m onap-vnfsdk refrepo-1924147637-xhrbj 1/1 Running 0 16m
Let's run health check to see current status, with the expected failure for DCAE, as it's now deployed.
cd oom/kubernetes/robot ./ete-k8s.sh [kubernetes-namespace] health Example $ ./ete-k8s.sh onap health
Result:
Expand sourceStarting Xvfb on display :88 with res 1280x1024x24 Executing robot tests at log level TRACE ============================================================================== OpenECOMP ETE ============================================================================== OpenECOMP ETE.Robot ============================================================================== OpenECOMP ETE.Robot.Testsuites ============================================================================== OpenECOMP ETE.Robot.Testsuites.Health-Check :: Testing ecomp components are... ============================================================================== Basic DCAE Health Check [ WARN ] Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7ffa61dbfa50>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /healthcheck [ WARN ] Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7ffa61dbf650>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /healthcheck [ WARN ] Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7ffa5fe40510>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /healthcheck | FAIL | ConnectionError: HTTPConnectionPool(host='dcae-controller.onap-dcae', port=8080): Max retries exceeded with url: /healthcheck (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7ffa619bf7d0>: Failed to establish a new connection: [Errno -2] Name or service not known',)) ------------------------------------------------------------------------------ Basic SDNGC Health Check | PASS | ------------------------------------------------------------------------------ Basic A&AI Health Check | PASS | ------------------------------------------------------------------------------ Basic Policy Health Check | PASS | ------------------------------------------------------------------------------ Basic MSO Health Check | PASS | ------------------------------------------------------------------------------ Basic ASDC Health Check | PASS | ------------------------------------------------------------------------------ Basic APPC Health Check | PASS | ------------------------------------------------------------------------------ Basic Portal Health Check | PASS | ------------------------------------------------------------------------------ Basic Message Router Health Check | PASS | ------------------------------------------------------------------------------ Basic VID Health Check | PASS | ------------------------------------------------------------------------------ Basic Microservice Bus Health Check | PASS | ------------------------------------------------------------------------------ Basic CLAMP Health Check | PASS | ------------------------------------------------------------------------------ catalog API Health Check | PASS | ------------------------------------------------------------------------------ emsdriver API Health Check | PASS | ------------------------------------------------------------------------------ gvnfmdriver API Health Check | PASS | ------------------------------------------------------------------------------ huaweivnfmdriver API Health Check | PASS | ------------------------------------------------------------------------------ multicloud API Health Check | PASS | ------------------------------------------------------------------------------ multicloud-ocata API Health Check | PASS | ------------------------------------------------------------------------------ multicloud-titanium_cloud API Health Check | PASS | ------------------------------------------------------------------------------ multicloud-vio API Health Check | PASS | ------------------------------------------------------------------------------ nokiavnfmdriver API Health Check | PASS | ------------------------------------------------------------------------------ nslcm API Health Check | PASS | ------------------------------------------------------------------------------ resmgr API Health Check | PASS | ------------------------------------------------------------------------------ usecaseui-gui API Health Check | PASS | ------------------------------------------------------------------------------ vnflcm API Health Check | PASS | ------------------------------------------------------------------------------ vnfmgr API Health Check | PASS | ------------------------------------------------------------------------------ vnfres API Health Check | PASS | ------------------------------------------------------------------------------ workflow API Health Check | PASS | ------------------------------------------------------------------------------ ztesdncdriver API Health Check | PASS | ------------------------------------------------------------------------------ ztevmanagerdriver API Health Check | PASS | ------------------------------------------------------------------------------ OpenECOMP ETE.Robot.Testsuites.Health-Check :: Testing ecomp compo... | FAIL | 30 critical tests, 29 passed, 1 failed 30 tests total, 29 passed, 1 failed ============================================================================== OpenECOMP ETE.Robot.Testsuites | FAIL | 30 critical tests, 29 passed, 1 failed 30 tests total, 29 passed, 1 failed ============================================================================== OpenECOMP ETE.Robot | FAIL | 30 critical tests, 29 passed, 1 failed 30 tests total, 29 passed, 1 failed ============================================================================== OpenECOMP ETE | FAIL | 30 critical tests, 29 passed, 1 failed 30 tests total, 29 passed, 1 failed ============================================================================== Output: /share/logs/ETE_46070/output.xml Log: /share/logs/ETE_46070/log.html Report: /share/logs/ETE_46070/report.html command terminated with exit code 1
Update result (04/01/2018): Since c/26645 got merged, DCAE health check is passingExpand source$ ./ete-k8s.sh health Starting Xvfb on display :88 with res 1280x1024x24 Executing robot tests at log level TRACE ============================================================================== OpenECOMP ETE ============================================================================== OpenECOMP ETE.Robot ============================================================================== OpenECOMP ETE.Robot.Testsuites ============================================================================== OpenECOMP ETE.Robot.Testsuites.Health-Check :: Testing ecomp components are... ============================================================================== Basic DCAE Health Check | PASS | ------------------------------------------------------------------------------ Basic SDNGC Health Check | PASS | ------------------------------------------------------------------------------ Basic A&AI Health Check | PASS | ------------------------------------------------------------------------------ Basic Policy Health Check | PASS | ------------------------------------------------------------------------------ Basic MSO Health Check | PASS | ------------------------------------------------------------------------------ Basic ASDC Health Check | PASS | ------------------------------------------------------------------------------ Basic APPC Health Check | PASS | ------------------------------------------------------------------------------ Basic Portal Health Check | PASS | ------------------------------------------------------------------------------ Basic Message Router Health Check | PASS | ------------------------------------------------------------------------------ Basic VID Health Check | PASS | ------------------------------------------------------------------------------ Basic Microservice Bus Health Check | PASS | ------------------------------------------------------------------------------ Basic CLAMP Health Check | PASS | ------------------------------------------------------------------------------ catalog API Health Check | PASS | ------------------------------------------------------------------------------ emsdriver API Health Check | PASS | ------------------------------------------------------------------------------ gvnfmdriver API Health Check | PASS | ------------------------------------------------------------------------------ huaweivnfmdriver API Health Check | PASS | ------------------------------------------------------------------------------ multicloud API Health Check | PASS | ------------------------------------------------------------------------------ multicloud-ocata API Health Check | PASS | ------------------------------------------------------------------------------ multicloud-titanium_cloud API Health Check | PASS | ------------------------------------------------------------------------------ multicloud-vio API Health Check | PASS | ------------------------------------------------------------------------------ nokiavnfmdriver API Health Check | PASS | ------------------------------------------------------------------------------ nslcm API Health Check | PASS | ------------------------------------------------------------------------------ resmgr API Health Check | PASS | ------------------------------------------------------------------------------ usecaseui-gui API Health Check | PASS | ------------------------------------------------------------------------------ vnflcm API Health Check | PASS | ------------------------------------------------------------------------------ vnfmgr API Health Check | PASS | ------------------------------------------------------------------------------ vnfres API Health Check | PASS | ------------------------------------------------------------------------------ workflow API Health Check | PASS | ------------------------------------------------------------------------------ ztesdncdriver API Health Check | PASS | ------------------------------------------------------------------------------ ztevmanagerdriver API Health Check | PASS | ------------------------------------------------------------------------------ OpenECOMP ETE.Robot.Testsuites.Health-Check :: Testing ecomp compo... | PASS | 30 critical tests, 30 passed, 0 failed 30 tests total, 30 passed, 0 failed ============================================================================== OpenECOMP ETE.Robot.Testsuites | PASS | 30 critical tests, 30 passed, 0 failed 30 tests total, 30 passed, 0 failed ============================================================================== OpenECOMP ETE.Robot | PASS | 30 critical tests, 30 passed, 0 failed 30 tests total, 30 passed, 0 failed ============================================================================== OpenECOMP ETE | PASS | 30 critical tests, 30 passed, 0 failed 30 tests total, 30 passed, 0 failed ============================================================================== Output: /share/logs/ETE_21228/output.xml Log: /share/logs/ETE_21228/log.html Report: /share/logs/ETE_21228/report.html
Let's run the init_robot script, that will enable us to check the robot logs
cd oom/kubernetes/robot $ ./demo-k8s.sh init_robot
Result:
Expand sourceWEB Site Password for user 'test': Starting Xvfb on display :89 with res 1280x1024x24 Executing robot tests at log level TRACE ============================================================================== OpenECOMP ETE ============================================================================== OpenECOMP ETE.Robot ============================================================================== OpenECOMP ETE.Robot.Testsuites ============================================================================== OpenECOMP ETE.Robot.Testsuites.Update Onap Page :: Initializes ONAP Test We... ============================================================================== Update ONAP Page | PASS | ------------------------------------------------------------------------------ OpenECOMP ETE.Robot.Testsuites.Update Onap Page :: Initializes ONA... | PASS | 1 critical test, 1 passed, 0 failed 1 test total, 1 passed, 0 failed ============================================================================== OpenECOMP ETE.Robot.Testsuites | PASS | 1 critical test, 1 passed, 0 failed 1 test total, 1 passed, 0 failed ============================================================================== OpenECOMP ETE.Robot | PASS | 1 critical test, 1 passed, 0 failed 1 test total, 1 passed, 0 failed ============================================================================== OpenECOMP ETE | PASS | 1 critical test, 1 passed, 0 failed 1 test total, 1 passed, 0 failed ============================================================================== Output: /share/logs/demo/UpdateWebPage/output.xml Log: /share/logs/demo/UpdateWebPage/log.html Report: /share/logs/demo/UpdateWebPage/report.html
Navigate to
<kubernetes-vm-ip>:30209
and to see the robot logs, go to
<kubernetes-vm-ip>:30209/logs