Skip to content

Instantly share code, notes, and snippets.

@cben
Last active March 15, 2016 14:20
Show Gist options
  • Select an option

  • Save cben/6101fbb918d2a751796c to your computer and use it in GitHub Desktop.

Select an option

Save cben/6101fbb918d2a751796c to your computer and use it in GitHub Desktop.
Testing https://github.com/openshift/openshift-ansible/pull/1582 (at 1b8e8ef75c50a9ddb8c3922979fe6ddb027f10a4)
> bin/cluster -v create libvirt metrics4 --option use_openshift_metrics=true
...
PLAY RECAP ******************************************************************** 
localhost                  : ok=90   changed=31   unreachable=0    failed=0   
metrics4-master-d780a      : ok=282  changed=51   unreachable=0    failed=0   
metrics4-node-compute-0e7b2 : ok=129  changed=30   unreachable=0    failed=0   
metrics4-node-compute-266fe : ok=129  changed=30   unreachable=0    failed=0   
metrics4-node-infra-48f49  : ok=129  changed=30   unreachable=0    failed=0   

> ssh [email protected]

[openshift@metrics4-master-d780a ~]$ oc status -v --all-namespaces
... looks good but no registry ...
[openshift@metrics4-master-d780a ~]$ cd /etc/origin/master/
[openshift@metrics4-master-d780a master]$ sudo oadm registry --config=admin.kubeconfig     --credentials=openshift-registry.kubeconfig
deploymentconfig "docker-registry" created
service "docker-registry" created
[openshift@metrics4-master-d780a master]$ oc status -v --all-namespacesShowing all projects on server https://metrics4-master-d780a.example.com:8443

svc/docker-registry[default] - 172.30.249.204:5000
  dc/docker-registry deploys docker.io/openshift/origin-docker-registry:v1.1.3 
    #1 deployment pending 4 seconds ago

svc/kubernetes[default] - 172.30.0.1 ports 443, 53, 53

svc/router[default] - 172.30.30.101:80
  dc/router deploys docker.io/openshift/origin-haproxy-router:v1.1.3 
    #1 deployment running for 12 minutes - 1 pod

svc/hawkular-cassandra[openshift-infra] - 172.30.110.77 ports 9042->cql-port, 9160->thift-port, 7000->tcp-port, 7001->ssl-port
  rc/hawkular-cassandra-1 runs docker.io/openshift/origin-metrics-cassandra:latest
    rc/hawkular-cassandra-1 created 7 minutes ago - 1 pod

svc/hawkular-cassandra-nodes[openshift-infra] (headless) ports 9042, 9160, 7000, 7001
  rc/hawkular-cassandra-1 runs docker.io/openshift/origin-metrics-cassandra:latest
    rc/hawkular-cassandra-1 created 7 minutes ago - 1 pod

svc/hawkular-metrics[openshift-infra] - 172.30.194.133:443 -> https-endpoint
  rc/hawkular-metrics runs docker.io/openshift/origin-metrics-hawkular-metrics:latest
    rc/hawkular-metrics created 7 minutes ago - 1 pod
  exposed by route/hawkular-metrics

svc/heapster[openshift-infra] - 172.30.147.98:80 -> http-endpoint
  rc/heapster runs docker.io/openshift/origin-metrics-heapster:latest
    rc/heapster created 7 minutes ago - 1 pod

Errors:
  * container "heapster" in pod/heapster-qmfwr[openshift-infra] is crash-looping

    The container is starting and exiting repeatedly. This usually means the container is unable
    to start, misconfigured, or limited by security restrictions. Check the container logs with
    
      oc logs -p heapster-qmfwr -c heapster
    
    Current security policy prevents your containers from being run as the root user. Some images
    may fail expecting to be able to change ownership or permissions on directories. Your admin
    can grant you access to run containers that need to run as the root user with this command:
    
      oadm policy add-scc-to-user anyuid -n openshift-infra -z heapster

Hmm. Didn't catch the logs in time, but some time later the crash-looping message is gone.

Created a couple projects

  • django-ex built fine; at some point docker-registry restarted but build retried pushing to registry until it succeeded.
  • node-ex build failed (Failed to push image. Response from registry is: dial tcp 172.30.249.204:5000: no route to host); manually started 2nd build which worked.

=> The pods are running but there are no Metrics tabs in UI :-(

DNS is ok:

> 
dig @metrics4-master-d780a.example.com +short kubernetes.default.svc.cluster.local
172.30.0.1

metricsPublicURL in master-config.yaml: was missing!

[openshift@metrics4-master-d780a master]$ cat /etc/hostname 
metrics4-master-d780a.example.com
[openshift@metrics4-master-d780a master]$ sudo sed -i.metricsPublicURL.bak "/assetConfig:/a\ \ metricsPublicURL: https://$(cat /etc/hostname)/hawkular/metrics" /etc/origin/master/master-config.yaml
[openshift@metrics4-master-d780a master]$ sudo grep -B1 metricsPublicURL /etc/origin/master/master-config.yaml
assetConfig:
  metricsPublicURL: https://metrics4-master-d780a.example.com/hawkular/metrics

[openshift@metrics4-master-d780a master]$ sudo reboot

What's worse, https://metrics4-master-d780a.example.com/hawkular/metrics is not responding: curl: (7) Failed to connect to metrics4-master-d780a.example.com port 443: No route to host

Let's check routes:

[openshift@metrics4-master-d780a ~]$ oc get route --all-namespaces 
NAMESPACE         NAME               HOST/PORT                                    PATH      SERVICE            TERMINATION   LABELS
openshift-infra   hawkular-metrics   hawkular-metrics.example.com                           hawkular-metrics   passthrough   metrics-infra=support
proj              djex               djex-proj.router.default.svc.cluster.local             djex:8080-tcp                    app=djex
proj              nex                nex-proj.router.default.svc.cluster.local              nex:8080-tcp                     app=nex

[openshift@metrics4-master-d780a ~]$ oc describe route -n openshift-infra
Name:			hawkular-metrics
Created:		4 hours ago
Labels:			metrics-infra=support
Annotations:		<none>
Requested Host:		hawkular-metrics.example.com
			  exposed on router router 3 hours ago
Path:			<none>
TLS Termination:	passthrough
Insecure Policy:	<none>
Service:		hawkular-metrics
Endpoint Port:		<all endpoint ports>
Endpoints:		10.1.2.2:8443

Aha, was host hawkular-metrics.example.com supposed to be something specific (like master host)? Does passing the Host help?

> curl -X GET -H 'Host: hawkular-metrics.example.com' https://metrics4-master-d780a.example.com/hawkular/metrics/status --insecure
curl: (7) Failed to connect to metrics4-master-d780a.example.com port 443: No route to host

No, master is not even listening on 443! I also tried directly accessing the service IPs/ports, with no luck.

Hmm, according to https://github.com/openshift/origin-metrics/blob/master/docs/hawkular_metrics.adoc it seems hawkular-metrics.example.com is the expected host. Alas, it doesn't resolve:

[openshift@metrics4-master-d780a ~]$ host hawkular-metrics.example.com
Host hawkular-metrics.example.com not found: 3(NXDOMAIN)
[openshift@metrics4-master-d780a master]$ oc get pods -n openshift-infra
NAME                         READY     STATUS      RESTARTS   AGE
hawkular-cassandra-1-3vk5v   1/1       Running     3          3h
hawkular-metrics-heyff       1/1       Running     0          3h
heapster-qmfwr               1/1       Running     2          3h
metrics-deployer-pqjtp       0/1       Completed   0          3h

OK.

> curl -X GET https://metrics4-master-d780a.example.com/hawkular/metrics/status
curl: (7) Failed to connect to metrics4-master-d780a.example.com port 443: No route to host

:-(

2016-03-15 11:45:48,253 p=8050 u=bpaskinc |  /usr/bin/ansible-playbook -v -i inventory/libvirt/hosts -e num_masters=1 num_nodes=2 cli_use_openshift_metrics=true cluster_id=metrics4 cluster_env=dev num_etcd=0 num_infra=1 deployment_type=origin playbooks/libvirt/openshift-cluster/launch.yml
2016-03-15 11:45:48,254 p=8050 u=bpaskinc |
2016-03-15 11:45:51,719 p=8050 u=bpaskinc |  PLAY [Launch instance(s)] *****************************************************
2016-03-15 11:45:51,720 p=8050 u=bpaskinc |  TASK: [fail msg="Deployment type not supported for libvirt provider yet"] *****
2016-03-15 11:45:51,728 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:51,728 p=8050 u=bpaskinc |  TASK: [Create libvirt storage directory for openshift] ************************
2016-03-15 11:45:51,831 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "gid": 1000, "group": "bpaskinc", "mode": "0775", "owner": "bpaskinc", "path": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 4096, "state": "directory", "uid": 1000}
2016-03-15 11:45:51,832 p=8050 u=bpaskinc |  TASK: [acl ] ******************************************************************
2016-03-15 11:45:51,944 p=8050 u=bpaskinc |  ok: [localhost] => {"acl": ["user::rwx", "group::r-x", "group:kvm:rwx", "mask::rwx", "other::r-x", "default:user::rwx", "default:group::r-x", "default:group:kvm:rwx", "default:mask::rwx", "default:other::r-x"], "changed": false, "item": false, "msg": "group:kvm:rwx is present"}
2016-03-15 11:45:52,079 p=8050 u=bpaskinc |  ok: [localhost] => (item=True) => {"acl": ["user::rwx", "group::r-x", "group:kvm:rwx", "mask::rwx", "other::r-x", "default:user::rwx", "default:group::r-x", "default:group:kvm:rwx", "default:mask::rwx", "default:other::r-x"], "changed": false, "item": true, "msg": "group:kvm:rwx is present"}
2016-03-15 11:45:52,079 p=8050 u=bpaskinc |  TASK: [Test if libvirt storage pool for openshift already exists] *************
2016-03-15 11:45:52,226 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "cmd": ["virsh", "-c", "qemu:///system", "pool-info", "openshift-ansible"], "delta": "0:00:00.035509", "end": "2016-03-15 11:45:52.209779", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 11:45:52.174270", "stderr": "", "stdout": "Name:           openshift-ansible\nUUID:           33daca12-3404-42f0-86ca-37749eb658b5\nState:          running\nPersistent:     no\nAutostart:      no\nCapacity:       179.24 GiB\nAllocation:     95.97 GiB\nAvailable:      83.27 GiB", "stdout_lines": ["Name:           openshift-ansible", "UUID:           33daca12-3404-42f0-86ca-37749eb658b5", "State:          running", "Persistent:     no", "Autostart:      no", "Capacity:       179.24 GiB", "Allocation:     95.97 GiB", "Available:      83.27 GiB"], "warnings": []}
2016-03-15 11:45:52,227 p=8050 u=bpaskinc |  TASK: [Create the libvirt storage pool for openshift] *************************
2016-03-15 11:45:52,232 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,233 p=8050 u=bpaskinc |  TASK: [Test if libvirt network for openshift already exists] ******************
2016-03-15 11:45:52,379 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "cmd": ["virsh", "-c", "qemu:///system", "net-info", "openshift-ansible"], "delta": "0:00:00.037736", "end": "2016-03-15 11:45:52.363484", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 11:45:52.325748", "stderr": "", "stdout": "Name:           openshift-ansible\nUUID:           51d295a4-f0ad-490b-88b3-829c468865ce\nActive:         yes\nPersistent:     no\nAutostart:      no\nBridge:         virbr3", "stdout_lines": ["Name:           openshift-ansible", "UUID:           51d295a4-f0ad-490b-88b3-829c468865ce", "Active:         yes", "Persistent:     no", "Autostart:      no", "Bridge:         virbr3"], "warnings": []}
2016-03-15 11:45:52,380 p=8050 u=bpaskinc |  TASK: [Create a temp directory for the template xml file] *********************
2016-03-15 11:45:52,388 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,389 p=8050 u=bpaskinc |  TASK: [Create network xml file] ***********************************************
2016-03-15 11:45:52,398 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,398 p=8050 u=bpaskinc |  TASK: [Create libvirt network for openshift] **********************************
2016-03-15 11:45:52,403 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,403 p=8050 u=bpaskinc |  TASK: [Remove the temp directory] *********************************************
2016-03-15 11:45:52,411 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,411 p=8050 u=bpaskinc |  TASK: [set_fact k8s_type="etcd"] **********************************************
2016-03-15 11:45:52,413 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"k8s_type": "etcd"}}
2016-03-15 11:45:52,414 p=8050 u=bpaskinc |  TASK: [Generate etcd instance names(s)] ***************************************
2016-03-15 11:45:52,422 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,423 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:45:52,428 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"etcd_names": []}}
2016-03-15 11:45:52,429 p=8050 u=bpaskinc |  TASK: [Download Base Cloud image] *********************************************
2016-03-15 11:45:52,648 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/CentOS-7-x86_64-GenericCloud.qcow2.xz", "gid": 1000, "group": "bpaskinc", "mode": "0664", "msg": "file already exists", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 265028736, "state": "file", "uid": 1000, "url": "http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1602.qcow2.xz"}
2016-03-15 11:45:52,649 p=8050 u=bpaskinc |  TASK: [Uncompress xz compressed base cloud image] *****************************
2016-03-15 11:45:52,705 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,706 p=8050 u=bpaskinc |  TASK: [Uncompress tgz compressed base cloud image] ****************************
2016-03-15 11:45:52,742 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,743 p=8050 u=bpaskinc |  TASK: [Uncompress gzip compressed base cloud image] ***************************
2016-03-15 11:45:52,788 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,789 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive path] *******************************
2016-03-15 11:45:52,796 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,797 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive files] ******************************
2016-03-15 11:45:52,802 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,802 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive] ************************************
2016-03-15 11:45:52,812 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,812 p=8050 u=bpaskinc |  TASK: [Refresh the libvirt storage pool for openshift] ************************
2016-03-15 11:45:52,961 p=8050 u=bpaskinc |  changed: [localhost] => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "pool-refresh", "openshift-ansible"], "delta": "0:00:00.042754", "end": "2016-03-15 11:45:52.953069", "rc": 0, "start": "2016-03-15 11:45:52.910315", "stderr": "", "stdout": "Pool openshift-ansible refreshed", "warnings": []}
2016-03-15 11:45:52,961 p=8050 u=bpaskinc |  TASK: [Create VMs drives] *****************************************************
2016-03-15 11:45:52,966 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,967 p=8050 u=bpaskinc |  TASK: [Create VMs] ************************************************************
2016-03-15 11:45:52,971 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,971 p=8050 u=bpaskinc |  TASK: [Start VMs] *************************************************************
2016-03-15 11:45:52,976 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,976 p=8050 u=bpaskinc |  TASK: [Wait for the VMs to get an IP] *****************************************
2016-03-15 11:45:52,983 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,984 p=8050 u=bpaskinc |  TASK: [Collect IP addresses of the VMs] ***************************************
2016-03-15 11:45:52,995 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:52,996 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:45:53,003 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"ips": []}}
2016-03-15 11:45:53,003 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:45:53,008 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,009 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:45:53,018 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,019 p=8050 u=bpaskinc |  TASK: [Add new instances] *****************************************************
2016-03-15 11:45:53,031 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,032 p=8050 u=bpaskinc |  TASK: [Wait for ssh] **********************************************************
2016-03-15 11:45:53,037 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,038 p=8050 u=bpaskinc |  TASK: [Wait for openshift user setup] *****************************************
2016-03-15 11:45:53,043 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,043 p=8050 u=bpaskinc |  TASK: [set_fact k8s_type="master"] ********************************************
2016-03-15 11:45:53,046 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"k8s_type": "master"}}
2016-03-15 11:45:53,046 p=8050 u=bpaskinc |  TASK: [Generate master instance names(s)] *************************************
2016-03-15 11:45:53,056 p=8050 u=bpaskinc |  ok: [localhost] => (item=1) => {"ansible_facts": {"scratch_name": "metrics4-master-d780a"}, "item": "1"}
2016-03-15 11:45:53,057 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:45:53,061 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"master_names": ["metrics4-master-d780a"]}}
2016-03-15 11:45:53,061 p=8050 u=bpaskinc |  TASK: [Download Base Cloud image] *********************************************
2016-03-15 11:45:53,278 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/CentOS-7-x86_64-GenericCloud.qcow2.xz", "gid": 1000, "group": "bpaskinc", "mode": "0664", "msg": "file already exists", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 265028736, "state": "file", "uid": 1000, "url": "http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1602.qcow2.xz"}
2016-03-15 11:45:53,279 p=8050 u=bpaskinc |  TASK: [Uncompress xz compressed base cloud image] *****************************
2016-03-15 11:45:53,321 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,321 p=8050 u=bpaskinc |  TASK: [Uncompress tgz compressed base cloud image] ****************************
2016-03-15 11:45:53,354 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,355 p=8050 u=bpaskinc |  TASK: [Uncompress gzip compressed base cloud image] ***************************
2016-03-15 11:45:53,389 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:45:53,390 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive path] *******************************
2016-03-15 11:45:53,478 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-master-d780a) => {"changed": true, "gid": 1000, "group": "bpaskinc", "item": "metrics4-master-d780a", "mode": "0775", "owner": "bpaskinc", "path": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-master-d780a_configdrive/", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 4096, "state": "directory", "uid": 1000}
2016-03-15 11:45:53,478 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive files] ******************************
2016-03-15 11:45:53,601 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-master-d780a', 'user-data']) => {"changed": true, "checksum": "12836b8dfb7ca18b2b356d95d40b686f64488296", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-master-d780a_configdrive/user-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-master-d780a", "user-data"], "md5sum": "67532d1ad87346a62956e6739c06919a", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 2200, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035153.48-145307786178526/source", "state": "file", "uid": 1000}
2016-03-15 11:45:53,717 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-master-d780a', 'meta-data']) => {"changed": true, "checksum": "974ad7d7e16921054326c2ab708c58853a62016d", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-master-d780a_configdrive/meta-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-master-d780a", "meta-data"], "md5sum": "0ce8b9589c043f1d408983619d92a5c1", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 117, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035153.6-223711084314157/source", "state": "file", "uid": 1000}
2016-03-15 11:45:53,718 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive] ************************************
2016-03-15 11:45:53,845 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-master-d780a) => {"changed": true, "cmd": ["genisoimage", "-output", "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-master-d780a_cloud-init.iso", "-volid", "cidata", "-joliet", "-rock", "user-data", "meta-data"], "delta": "0:00:00.014902", "end": "2016-03-15 11:45:53.833728", "item": "metrics4-master-d780a", "rc": 0, "start": "2016-03-15 11:45:53.818826", "stderr": "I: -input-charset not specified, using utf-8 (detected in locale settings)\nTotal translation table size: 0\nTotal rockridge attributes bytes: 331\nTotal directory bytes: 0\nPath table size(bytes): 10\nMax brk space used 0\n184 extents written (0 MB)", "stdout": "", "warnings": []}
2016-03-15 11:45:53,846 p=8050 u=bpaskinc |  TASK: [Refresh the libvirt storage pool for openshift] ************************
2016-03-15 11:45:54,025 p=8050 u=bpaskinc |  changed: [localhost] => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "pool-refresh", "openshift-ansible"], "delta": "0:00:00.050934", "end": "2016-03-15 11:45:54.006283", "rc": 0, "start": "2016-03-15 11:45:53.955349", "stderr": "", "stdout": "Pool openshift-ansible refreshed", "warnings": []}
2016-03-15 11:45:54,025 p=8050 u=bpaskinc |  TASK: [Create VMs drives] *****************************************************
2016-03-15 11:45:54,448 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-master-d780a) => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "vol-create-as", "openshift-ansible", "metrics4-master-d780a.qcow2", "10G", "--format", "qcow2", "--backing-vol", "CentOS-7-x86_64-GenericCloud.qcow2", "--backing-vol-format", "qcow2"], "delta": "0:00:00.254598", "end": "2016-03-15 11:45:54.437635", "item": "metrics4-master-d780a", "rc": 0, "start": "2016-03-15 11:45:54.183037", "stderr": "", "stdout": "Vol metrics4-master-d780a.qcow2 created", "warnings": []}
2016-03-15 11:45:54,449 p=8050 u=bpaskinc |  TASK: [Create VMs] ************************************************************
2016-03-15 11:45:54,633 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-master-d780a) => {"changed": true, "created": "metrics4-master-d780a", "item": "metrics4-master-d780a"}
2016-03-15 11:45:54,634 p=8050 u=bpaskinc |  TASK: [Start VMs] *************************************************************
2016-03-15 11:45:55,285 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-master-d780a) => {"changed": true, "item": "metrics4-master-d780a", "msg": 0}
2016-03-15 11:45:55,286 p=8050 u=bpaskinc |  TASK: [Wait for the VMs to get an IP] *****************************************
2016-03-15 11:46:11,348 p=8050 u=bpaskinc |  changed: [localhost] => {"attempts": 5, "changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | egrep -c 'metrics4-master-d780a'", "delta": "0:00:00.052598", "end": "2016-03-15 11:46:11.318694", "rc": 0, "start": "2016-03-15 11:46:11.266096", "stderr": "", "stdout": "1", "warnings": []}
2016-03-15 11:46:11,349 p=8050 u=bpaskinc |  TASK: [Collect IP addresses of the VMs] ***************************************
2016-03-15 11:46:11,541 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-master-d780a) => {"changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | awk '$6 == \"metrics4-master-d780a\" {gsub(/\\/.*/, \"\", $5); print $5}'", "delta": "0:00:00.047118", "end": "2016-03-15 11:46:11.527920", "item": "metrics4-master-d780a", "rc": 0, "start": "2016-03-15 11:46:11.480802", "stderr": "", "stdout": "192.168.55.98", "warnings": []}
2016-03-15 11:46:11,542 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:11,555 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"ips": ["192.168.55.98"]}}
2016-03-15 11:46:11,556 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:11,572 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:11,573 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:11,584 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"node_label": {"type": "master"}}}
2016-03-15 11:46:11,584 p=8050 u=bpaskinc |  TASK: [Add new instances] *****************************************************
2016-03-15 11:46:11,681 p=8050 u=bpaskinc |  ok: [localhost] => (item=[u'metrics4-master-d780a', u'192.168.55.98']) => {"item": ["metrics4-master-d780a", "192.168.55.98"], "new_groups": ["tag_environment-dev", " tag_host-type-master", " tag_sub-host-type-default", " tag_clusterid-metrics4"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:46:11,682 p=8050 u=bpaskinc |  TASK: [Wait for ssh] **********************************************************
2016-03-15 11:46:11,888 p=8050 u=bpaskinc |  ok: [localhost] => (item=192.168.55.98) => {"changed": false, "elapsed": 0, "item": "192.168.55.98", "path": null, "port": 22, "search_regex": null, "state": "started"}
2016-03-15 11:46:11,888 p=8050 u=bpaskinc |  TASK: [Wait for openshift user setup] *****************************************
2016-03-15 11:46:12,548 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-master-d780a', u'192.168.55.98']) => {"attempts": 0, "changed": true, "cmd": ["ssh", "-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-o", "ConnectTimeout=10", "-o", "UserKnownHostsFile=/dev/null", "[email protected]", "echo", "openshift", "user", "is", "setup"], "delta": "0:00:00.513961", "end": "2016-03-15 11:46:12.531930", "item": ["metrics4-master-d780a", "192.168.55.98"], "rc": 0, "start": "2016-03-15 11:46:12.017969", "stderr": "Warning: Permanently added '192.168.55.98' (ECDSA) to the list of known hosts.", "stdout": "openshift user is setup", "warnings": []}
2016-03-15 11:46:12,548 p=8050 u=bpaskinc |  TASK: [set_fact k8s_type=node] ************************************************
2016-03-15 11:46:12,552 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"k8s_type": "node"}}
2016-03-15 11:46:12,553 p=8050 u=bpaskinc |  TASK: [set_fact sub_host_type="compute"] **************************************
2016-03-15 11:46:12,556 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"sub_host_type": "compute"}}
2016-03-15 11:46:12,559 p=8050 u=bpaskinc |  TASK: [set_fact number_nodes="{{ num_nodes }}"] *******************************
2016-03-15 11:46:12,568 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"number_nodes": "2"}}
2016-03-15 11:46:12,569 p=8050 u=bpaskinc |  TASK: [Generate node instance names(s)] ***************************************
2016-03-15 11:46:12,581 p=8050 u=bpaskinc |  ok: [localhost] => (item=1) => {"ansible_facts": {"scratch_name": "metrics4-node-compute-266fe"}, "item": "1"}
2016-03-15 11:46:12,585 p=8050 u=bpaskinc |  ok: [localhost] => (item=2) => {"ansible_facts": {"scratch_name": "metrics4-node-compute-0e7b2"}, "item": "2"}
2016-03-15 11:46:12,586 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:12,592 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"node_names": ["metrics4-node-compute-266fe", "metrics4-node-compute-0e7b2"]}}
2016-03-15 11:46:12,592 p=8050 u=bpaskinc |  TASK: [Download Base Cloud image] *********************************************
2016-03-15 11:46:12,883 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/CentOS-7-x86_64-GenericCloud.qcow2.xz", "gid": 1000, "group": "bpaskinc", "mode": "0664", "msg": "file already exists", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 265028736, "state": "file", "uid": 1000, "url": "http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1602.qcow2.xz"}
2016-03-15 11:46:12,884 p=8050 u=bpaskinc |  TASK: [Uncompress xz compressed base cloud image] *****************************
2016-03-15 11:46:12,937 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:12,937 p=8050 u=bpaskinc |  TASK: [Uncompress tgz compressed base cloud image] ****************************
2016-03-15 11:46:12,991 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:12,992 p=8050 u=bpaskinc |  TASK: [Uncompress gzip compressed base cloud image] ***************************
2016-03-15 11:46:13,040 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:13,040 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive path] *******************************
2016-03-15 11:46:13,206 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-266fe) => {"changed": true, "gid": 1000, "group": "bpaskinc", "item": "metrics4-node-compute-266fe", "mode": "0775", "owner": "bpaskinc", "path": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-266fe_configdrive/", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 4096, "state": "directory", "uid": 1000}
2016-03-15 11:46:13,340 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-0e7b2) => {"changed": true, "gid": 1000, "group": "bpaskinc", "item": "metrics4-node-compute-0e7b2", "mode": "0775", "owner": "bpaskinc", "path": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-0e7b2_configdrive/", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 4096, "state": "directory", "uid": 1000}
2016-03-15 11:46:13,341 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive files] ******************************
2016-03-15 11:46:13,497 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-compute-266fe', 'user-data']) => {"changed": true, "checksum": "db5153ae04da91acdd60ba260f2058ab97af2d0e", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-266fe_configdrive/user-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-node-compute-266fe", "user-data"], "md5sum": "05cf8594b163f0c8ec141995aab5c4fa", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 2218, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035173.36-223341752078684/source", "state": "file", "uid": 1000}
2016-03-15 11:46:13,654 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-compute-266fe', 'meta-data']) => {"changed": true, "checksum": "cabcd224333a31fb5a73febe22c5b320cb5c8a4a", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-266fe_configdrive/meta-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-node-compute-266fe", "meta-data"], "md5sum": "a17d48c4cfa0371293cb6edeae688122", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 135, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035173.5-225156786216843/source", "state": "file", "uid": 1000}
2016-03-15 11:46:13,808 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-compute-0e7b2', 'user-data']) => {"changed": true, "checksum": "dbfa9356fb4d7d54c72493903b793b7572cbf3e4", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-0e7b2_configdrive/user-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-node-compute-0e7b2", "user-data"], "md5sum": "785e8e25b64613361823a7935cf63476", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 2218, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035173.65-269991637645962/source", "state": "file", "uid": 1000}
2016-03-15 11:46:13,956 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-compute-0e7b2', 'meta-data']) => {"changed": true, "checksum": "7668bfa024b781d5a16e101af2e2de6df2203ff2", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-0e7b2_configdrive/meta-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-node-compute-0e7b2", "meta-data"], "md5sum": "8681e10f142904b81515a3507bcdd208", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 135, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035173.81-162089537137003/source", "state": "file", "uid": 1000}
2016-03-15 11:46:13,957 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive] ************************************
2016-03-15 11:46:14,112 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-266fe) => {"changed": true, "cmd": ["genisoimage", "-output", "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-266fe_cloud-init.iso", "-volid", "cidata", "-joliet", "-rock", "user-data", "meta-data"], "delta": "0:00:00.008503", "end": "2016-03-15 11:46:14.092731", "item": "metrics4-node-compute-266fe", "rc": 0, "start": "2016-03-15 11:46:14.084228", "stderr": "I: -input-charset not specified, using utf-8 (detected in locale settings)\nTotal translation table size: 0\nTotal rockridge attributes bytes: 331\nTotal directory bytes: 0\nPath table size(bytes): 10\nMax brk space used 0\n184 extents written (0 MB)", "stdout": "", "warnings": []}
2016-03-15 11:46:14,240 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-0e7b2) => {"changed": true, "cmd": ["genisoimage", "-output", "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-compute-0e7b2_cloud-init.iso", "-volid", "cidata", "-joliet", "-rock", "user-data", "meta-data"], "delta": "0:00:00.008752", "end": "2016-03-15 11:46:14.220656", "item": "metrics4-node-compute-0e7b2", "rc": 0, "start": "2016-03-15 11:46:14.211904", "stderr": "I: -input-charset not specified, using utf-8 (detected in locale settings)\nTotal translation table size: 0\nTotal rockridge attributes bytes: 331\nTotal directory bytes: 0\nPath table size(bytes): 10\nMax brk space used 0\n184 extents written (0 MB)", "stdout": "", "warnings": []}
2016-03-15 11:46:14,241 p=8050 u=bpaskinc |  TASK: [Refresh the libvirt storage pool for openshift] ************************
2016-03-15 11:46:14,438 p=8050 u=bpaskinc |  changed: [localhost] => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "pool-refresh", "openshift-ansible"], "delta": "0:00:00.050690", "end": "2016-03-15 11:46:14.427849", "rc": 0, "start": "2016-03-15 11:46:14.377159", "stderr": "", "stdout": "Pool openshift-ansible refreshed", "warnings": []}
2016-03-15 11:46:14,438 p=8050 u=bpaskinc |  TASK: [Create VMs drives] *****************************************************
2016-03-15 11:46:14,879 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-266fe) => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "vol-create-as", "openshift-ansible", "metrics4-node-compute-266fe.qcow2", "10G", "--format", "qcow2", "--backing-vol", "CentOS-7-x86_64-GenericCloud.qcow2", "--backing-vol-format", "qcow2"], "delta": "0:00:00.280984", "end": "2016-03-15 11:46:14.867510", "item": "metrics4-node-compute-266fe", "rc": 0, "start": "2016-03-15 11:46:14.586526", "stderr": "", "stdout": "Vol metrics4-node-compute-266fe.qcow2 created", "warnings": []}
2016-03-15 11:46:15,278 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-0e7b2) => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "vol-create-as", "openshift-ansible", "metrics4-node-compute-0e7b2.qcow2", "10G", "--format", "qcow2", "--backing-vol", "CentOS-7-x86_64-GenericCloud.qcow2", "--backing-vol-format", "qcow2"], "delta": "0:00:00.260618", "end": "2016-03-15 11:46:15.269910", "item": "metrics4-node-compute-0e7b2", "rc": 0, "start": "2016-03-15 11:46:15.009292", "stderr": "", "stdout": "Vol metrics4-node-compute-0e7b2.qcow2 created", "warnings": []}
2016-03-15 11:46:15,279 p=8050 u=bpaskinc |  TASK: [Create VMs] ************************************************************
2016-03-15 11:46:16,507 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-266fe) => {"changed": true, "created": "metrics4-node-compute-266fe", "item": "metrics4-node-compute-266fe"}
2016-03-15 11:46:16,767 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-0e7b2) => {"changed": true, "created": "metrics4-node-compute-0e7b2", "item": "metrics4-node-compute-0e7b2"}
2016-03-15 11:46:16,768 p=8050 u=bpaskinc |  TASK: [Start VMs] *************************************************************
2016-03-15 11:46:17,529 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-266fe) => {"changed": true, "item": "metrics4-node-compute-266fe", "msg": 0}
2016-03-15 11:46:18,452 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-0e7b2) => {"changed": true, "item": "metrics4-node-compute-0e7b2", "msg": 0}
2016-03-15 11:46:18,453 p=8050 u=bpaskinc |  TASK: [Wait for the VMs to get an IP] *****************************************
2016-03-15 11:46:44,368 p=8050 u=bpaskinc |  changed: [localhost] => {"attempts": 8, "changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | egrep -c 'metrics4-node-compute-266fe|metrics4-node-compute-0e7b2'", "delta": "0:00:00.073105", "end": "2016-03-15 11:46:44.314974", "rc": 0, "start": "2016-03-15 11:46:44.241869", "stderr": "", "stdout": "2", "warnings": []}
2016-03-15 11:46:44,369 p=8050 u=bpaskinc |  TASK: [Collect IP addresses of the VMs] ***************************************
2016-03-15 11:46:44,627 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-266fe) => {"changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | awk '$6 == \"metrics4-node-compute-266fe\" {gsub(/\\/.*/, \"\", $5); print $5}'", "delta": "0:00:00.050503", "end": "2016-03-15 11:46:44.608450", "item": "metrics4-node-compute-266fe", "rc": 0, "start": "2016-03-15 11:46:44.557947", "stderr": "", "stdout": "192.168.55.214", "warnings": []}
2016-03-15 11:46:44,811 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-compute-0e7b2) => {"changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | awk '$6 == \"metrics4-node-compute-0e7b2\" {gsub(/\\/.*/, \"\", $5); print $5}'", "delta": "0:00:00.041947", "end": "2016-03-15 11:46:44.795017", "item": "metrics4-node-compute-0e7b2", "rc": 0, "start": "2016-03-15 11:46:44.753070", "stderr": "", "stdout": "192.168.55.136", "warnings": []}
2016-03-15 11:46:44,812 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:44,851 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"ips": ["192.168.55.214", "192.168.55.136"]}}
2016-03-15 11:46:44,852 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:44,879 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"node_label": {"type": "compute"}}}
2016-03-15 11:46:44,882 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:44,894 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:44,894 p=8050 u=bpaskinc |  TASK: [Add new instances] *****************************************************
2016-03-15 11:46:44,979 p=8050 u=bpaskinc |  ok: [localhost] => (item=[u'metrics4-node-compute-266fe', u'192.168.55.214']) => {"item": ["metrics4-node-compute-266fe", "192.168.55.214"], "new_groups": ["tag_environment-dev", " tag_host-type-node", " tag_sub-host-type-compute", " tag_clusterid-metrics4"], "new_host": "metrics4-node-compute-266fe"}
2016-03-15 11:46:45,067 p=8050 u=bpaskinc |  ok: [localhost] => (item=[u'metrics4-node-compute-0e7b2', u'192.168.55.136']) => {"item": ["metrics4-node-compute-0e7b2", "192.168.55.136"], "new_groups": ["tag_environment-dev", " tag_host-type-node", " tag_sub-host-type-compute", " tag_clusterid-metrics4"], "new_host": "metrics4-node-compute-0e7b2"}
2016-03-15 11:46:45,067 p=8050 u=bpaskinc |  TASK: [Wait for ssh] **********************************************************
2016-03-15 11:46:45,212 p=8050 u=bpaskinc |  ok: [localhost] => (item=192.168.55.214) => {"changed": false, "elapsed": 0, "item": "192.168.55.214", "path": null, "port": 22, "search_regex": null, "state": "started"}
2016-03-15 11:46:45,354 p=8050 u=bpaskinc |  ok: [localhost] => (item=192.168.55.136) => {"changed": false, "elapsed": 0, "item": "192.168.55.136", "path": null, "port": 22, "search_regex": null, "state": "started"}
2016-03-15 11:46:45,355 p=8050 u=bpaskinc |  TASK: [Wait for openshift user setup] *****************************************
2016-03-15 11:46:45,984 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-compute-266fe', u'192.168.55.214']) => {"attempts": 0, "changed": true, "cmd": ["ssh", "-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-o", "ConnectTimeout=10", "-o", "UserKnownHostsFile=/dev/null", "[email protected]", "echo", "openshift", "user", "is", "setup"], "delta": "0:00:00.469051", "end": "2016-03-15 11:46:45.937742", "item": ["metrics4-node-compute-266fe", "192.168.55.214"], "rc": 0, "start": "2016-03-15 11:46:45.468691", "stderr": "Warning: Permanently added '192.168.55.214' (ECDSA) to the list of known hosts.", "stdout": "openshift user is setup", "warnings": []}
2016-03-15 11:46:46,698 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-compute-0e7b2', u'192.168.55.136']) => {"attempts": 0, "changed": true, "cmd": ["ssh", "-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-o", "ConnectTimeout=10", "-o", "UserKnownHostsFile=/dev/null", "[email protected]", "echo", "openshift", "user", "is", "setup"], "delta": "0:00:00.529824", "end": "2016-03-15 11:46:46.670214", "item": ["metrics4-node-compute-0e7b2", "192.168.55.136"], "rc": 0, "start": "2016-03-15 11:46:46.140390", "stderr": "Warning: Permanently added '192.168.55.136' (ECDSA) to the list of known hosts.", "stdout": "openshift user is setup", "warnings": []}
2016-03-15 11:46:46,698 p=8050 u=bpaskinc |  TASK: [set_fact k8s_type=node] ************************************************
2016-03-15 11:46:46,702 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"k8s_type": "node"}}
2016-03-15 11:46:46,705 p=8050 u=bpaskinc |  TASK: [set_fact sub_host_type="infra"] ****************************************
2016-03-15 11:46:46,731 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"sub_host_type": "infra"}}
2016-03-15 11:46:46,734 p=8050 u=bpaskinc |  TASK: [set_fact number_nodes="{{ num_infra }}"] *******************************
2016-03-15 11:46:46,741 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"number_nodes": "1"}}
2016-03-15 11:46:46,741 p=8050 u=bpaskinc |  TASK: [Generate node instance names(s)] ***************************************
2016-03-15 11:46:46,752 p=8050 u=bpaskinc |  ok: [localhost] => (item=1) => {"ansible_facts": {"scratch_name": "metrics4-node-infra-48f49"}, "item": "1"}
2016-03-15 11:46:46,752 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:46:46,759 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"node_names": ["metrics4-node-infra-48f49"]}}
2016-03-15 11:46:46,760 p=8050 u=bpaskinc |  TASK: [Download Base Cloud image] *********************************************
2016-03-15 11:46:47,074 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/CentOS-7-x86_64-GenericCloud.qcow2.xz", "gid": 1000, "group": "bpaskinc", "mode": "0664", "msg": "file already exists", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 265028736, "state": "file", "uid": 1000, "url": "http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1602.qcow2.xz"}
2016-03-15 11:46:47,075 p=8050 u=bpaskinc |  TASK: [Uncompress xz compressed base cloud image] *****************************
2016-03-15 11:46:47,125 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:47,126 p=8050 u=bpaskinc |  TASK: [Uncompress tgz compressed base cloud image] ****************************
2016-03-15 11:46:47,175 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:47,175 p=8050 u=bpaskinc |  TASK: [Uncompress gzip compressed base cloud image] ***************************
2016-03-15 11:46:47,239 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:46:47,239 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive path] *******************************
2016-03-15 11:46:47,479 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-infra-48f49) => {"changed": true, "gid": 1000, "group": "bpaskinc", "item": "metrics4-node-infra-48f49", "mode": "0775", "owner": "bpaskinc", "path": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-infra-48f49_configdrive/", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 4096, "state": "directory", "uid": 1000}
2016-03-15 11:46:47,480 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive files] ******************************
2016-03-15 11:46:47,663 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-infra-48f49', 'user-data']) => {"changed": true, "checksum": "0a8d156a16c7aacacea1eba97b582bf08dedca6c", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-infra-48f49_configdrive/user-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-node-infra-48f49", "user-data"], "md5sum": "6ec9a123bdd155c098d0c261a741423a", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 2212, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035207.49-120411721806071/source", "state": "file", "uid": 1000}
2016-03-15 11:46:47,827 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-infra-48f49', 'meta-data']) => {"changed": true, "checksum": "fb99743ee18051b916dd1edf768c591447873b75", "dest": "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-infra-48f49_configdrive/meta-data", "gid": 1000, "group": "bpaskinc", "item": ["metrics4-node-infra-48f49", "meta-data"], "md5sum": "d7011ee1f276b467646814f1a61a4f78", "mode": "0644", "owner": "bpaskinc", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 129, "src": "/home/bpaskinc/.ansible/tmp/ansible-tmp-1458035207.66-146466900335302/source", "state": "file", "uid": 1000}
2016-03-15 11:46:47,828 p=8050 u=bpaskinc |  TASK: [Create the cloud-init config drive] ************************************
2016-03-15 11:46:47,991 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-infra-48f49) => {"changed": true, "cmd": ["genisoimage", "-output", "/home/bpaskinc/libvirt-storage-pool-openshift-ansible/metrics4-node-infra-48f49_cloud-init.iso", "-volid", "cidata", "-joliet", "-rock", "user-data", "meta-data"], "delta": "0:00:00.009669", "end": "2016-03-15 11:46:47.975193", "item": "metrics4-node-infra-48f49", "rc": 0, "start": "2016-03-15 11:46:47.965524", "stderr": "I: -input-charset not specified, using utf-8 (detected in locale settings)\nTotal translation table size: 0\nTotal rockridge attributes bytes: 331\nTotal directory bytes: 0\nPath table size(bytes): 10\nMax brk space used 0\n184 extents written (0 MB)", "stdout": "", "warnings": []}
2016-03-15 11:46:47,991 p=8050 u=bpaskinc |  TASK: [Refresh the libvirt storage pool for openshift] ************************
2016-03-15 11:46:48,193 p=8050 u=bpaskinc |  changed: [localhost] => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "pool-refresh", "openshift-ansible"], "delta": "0:00:00.071117", "end": "2016-03-15 11:46:48.180114", "rc": 0, "start": "2016-03-15 11:46:48.108997", "stderr": "", "stdout": "Pool openshift-ansible refreshed", "warnings": []}
2016-03-15 11:46:48,194 p=8050 u=bpaskinc |  TASK: [Create VMs drives] *****************************************************
2016-03-15 11:46:48,642 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-infra-48f49) => {"changed": true, "cmd": ["virsh", "-c", "qemu:///system", "vol-create-as", "openshift-ansible", "metrics4-node-infra-48f49.qcow2", "10G", "--format", "qcow2", "--backing-vol", "CentOS-7-x86_64-GenericCloud.qcow2", "--backing-vol-format", "qcow2"], "delta": "0:00:00.289190", "end": "2016-03-15 11:46:48.630074", "item": "metrics4-node-infra-48f49", "rc": 0, "start": "2016-03-15 11:46:48.340884", "stderr": "", "stdout": "Vol metrics4-node-infra-48f49.qcow2 created", "warnings": []}
2016-03-15 11:46:48,643 p=8050 u=bpaskinc |  TASK: [Create VMs] ************************************************************
2016-03-15 11:46:48,890 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-infra-48f49) => {"changed": true, "created": "metrics4-node-infra-48f49", "item": "metrics4-node-infra-48f49"}
2016-03-15 11:46:48,891 p=8050 u=bpaskinc |  TASK: [Start VMs] *************************************************************
2016-03-15 11:46:50,206 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-infra-48f49) => {"changed": true, "item": "metrics4-node-infra-48f49", "msg": 0}
2016-03-15 11:46:50,207 p=8050 u=bpaskinc |  TASK: [Wait for the VMs to get an IP] *****************************************
2016-03-15 11:47:13,036 p=8050 u=bpaskinc |  changed: [localhost] => {"attempts": 7, "changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | egrep -c 'metrics4-node-infra-48f49'", "delta": "0:00:00.075587", "end": "2016-03-15 11:47:13.018130", "rc": 0, "start": "2016-03-15 11:47:12.942543", "stderr": "", "stdout": "1", "warnings": []}
2016-03-15 11:47:13,037 p=8050 u=bpaskinc |  TASK: [Collect IP addresses of the VMs] ***************************************
2016-03-15 11:47:13,352 p=8050 u=bpaskinc |  changed: [localhost] => (item=metrics4-node-infra-48f49) => {"changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | awk '$6 == \"metrics4-node-infra-48f49\" {gsub(/\\/.*/, \"\", $5); print $5}'", "delta": "0:00:00.060194", "end": "2016-03-15 11:47:13.339264", "item": "metrics4-node-infra-48f49", "rc": 0, "start": "2016-03-15 11:47:13.279070", "stderr": "", "stdout": "192.168.55.171", "warnings": []}
2016-03-15 11:47:13,352 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:47:13,384 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"ips": ["192.168.55.171"]}}
2016-03-15 11:47:13,385 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:47:13,403 p=8050 u=bpaskinc |  ok: [localhost] => {"ansible_facts": {"node_label": {"type": "infra"}}}
2016-03-15 11:47:13,403 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:47:13,417 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:47:13,418 p=8050 u=bpaskinc |  TASK: [Add new instances] *****************************************************
2016-03-15 11:47:13,575 p=8050 u=bpaskinc |  ok: [localhost] => (item=[u'metrics4-node-infra-48f49', u'192.168.55.171']) => {"item": ["metrics4-node-infra-48f49", "192.168.55.171"], "new_groups": ["tag_environment-dev", " tag_host-type-node", " tag_sub-host-type-infra", " tag_clusterid-metrics4"], "new_host": "metrics4-node-infra-48f49"}
2016-03-15 11:47:13,576 p=8050 u=bpaskinc |  TASK: [Wait for ssh] **********************************************************
2016-03-15 11:47:13,831 p=8050 u=bpaskinc |  ok: [localhost] => (item=192.168.55.171) => {"changed": false, "elapsed": 0, "item": "192.168.55.171", "path": null, "port": 22, "search_regex": null, "state": "started"}
2016-03-15 11:47:13,831 p=8050 u=bpaskinc |  TASK: [Wait for openshift user setup] *****************************************
2016-03-15 11:47:14,646 p=8050 u=bpaskinc |  changed: [localhost] => (item=[u'metrics4-node-infra-48f49', u'192.168.55.171']) => {"attempts": 0, "changed": true, "cmd": ["ssh", "-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-o", "ConnectTimeout=10", "-o", "UserKnownHostsFile=/dev/null", "[email protected]", "echo", "openshift", "user", "is", "setup"], "delta": "0:00:00.643462", "end": "2016-03-15 11:47:14.631922", "item": ["metrics4-node-infra-48f49", "192.168.55.171"], "rc": 0, "start": "2016-03-15 11:47:13.988460", "stderr": "Warning: Permanently added '192.168.55.171' (ECDSA) to the list of known hosts.", "stdout": "openshift user is setup", "warnings": []}
2016-03-15 11:47:14,647 p=8050 u=bpaskinc |  PLAY [Populate oo_hosts_to_update group] **************************************
2016-03-15 11:47:14,649 p=8050 u=bpaskinc |  TASK: [Evaluate oo_hosts_to_update] *******************************************
2016-03-15 11:47:14,819 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-master-d780a) => {"item": "metrics4-master-d780a", "new_groups": ["oo_hosts_to_update"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:47:14,914 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-compute-266fe) => {"item": "metrics4-node-compute-266fe", "new_groups": ["oo_hosts_to_update"], "new_host": "metrics4-node-compute-266fe"}
2016-03-15 11:47:15,001 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-compute-0e7b2) => {"item": "metrics4-node-compute-0e7b2", "new_groups": ["oo_hosts_to_update"], "new_host": "metrics4-node-compute-0e7b2"}
2016-03-15 11:47:15,092 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-infra-48f49) => {"item": "metrics4-node-infra-48f49", "new_groups": ["oo_hosts_to_update"], "new_host": "metrics4-node-infra-48f49"}
2016-03-15 11:47:15,093 p=8050 u=bpaskinc |  PLAY [oo_hosts_to_update] *****************************************************
2016-03-15 11:47:15,095 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:47:17,867 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:47:17,900 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe]
2016-03-15 11:47:18,000 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49]
2016-03-15 11:47:18,109 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:18,132 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:47:18,314 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:18,316 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:18,317 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:18,341 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:18,399 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:47:18,556 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:18,564 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:18,590 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:18,592 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:18,633 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:47:18,712 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:18,726 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:18,744 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:18,756 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:18,783 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:47:18,921 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:18,946 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:18,955 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:18,955 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:18,993 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:47:19,101 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:19,114 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:19,135 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:19,135 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:19,217 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:47:19,300 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:19,314 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:19,324 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:19,340 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:19,365 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | set_fact ] ********************************************
2016-03-15 11:47:19,492 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:19,506 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:19,506 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:19,508 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:19,549 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | fail ] ************************************************
2016-03-15 11:47:19,660 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:19,694 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:19,699 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:19,699 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:19,787 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | fail ] ************************************************
2016-03-15 11:47:19,900 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:19,932 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:19,943 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:19,952 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:19,998 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | fail ] ************************************************
2016-03-15 11:47:20,099 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:20,120 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:20,129 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:20,148 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:20,193 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | Satellite preparation] ********************************
2016-03-15 11:47:20,350 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:20,366 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:20,395 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:20,414 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:20,455 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | RedHat subscriptions] *********************************
2016-03-15 11:47:20,559 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:20,560 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:20,580 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:20,581 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:20,609 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | Retrieve the OpenShift Pool ID] ***********************
2016-03-15 11:47:20,678 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:20,698 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:20,699 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:20,711 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:20,774 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | Attach to OpenShift Pool] *****************************
2016-03-15 11:47:20,866 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:20,867 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:20,883 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:20,886 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:20,953 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | Disable all repositories] *****************************
2016-03-15 11:47:21,053 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:21,082 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:21,089 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:21,108 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:21,178 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | set_fact ] ********************************************
2016-03-15 11:47:21,320 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:21,334 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:21,346 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:21,349 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:21,519 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | set_fact ] ********************************************
2016-03-15 11:47:21,614 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:21,651 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:21,688 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:21,689 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:21,736 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | set_fact ] ********************************************
2016-03-15 11:47:21,857 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:21,891 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:21,912 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:21,922 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:21,997 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | fail ] ************************************************
2016-03-15 11:47:22,143 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:22,152 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:22,160 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:22,169 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:22,247 p=8050 u=bpaskinc |  TASK: [rhel_subscribe | Enable RHEL repositories] *****************************
2016-03-15 11:47:22,390 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:22,405 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:22,413 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:22,422 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:22,491 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:47:22,574 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:22,583 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:22,599 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:22,607 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:22,682 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:47:23,363 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.034101", "end": "2016-03-15 09:47:23.307312", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:47:23.273211", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:47:23,586 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.022934", "end": "2016-03-15 09:47:23.546375", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:47:23.523441", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:47:23,601 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.006173", "end": "2016-03-15 09:47:23.592979", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:47:23.586806", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:47:23,939 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.020664", "end": "2016-03-15 09:47:22.713967", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:47:22.693303", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:47:23,960 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:47:24,091 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:47:24,108 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:47:24,124 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:47:24,125 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:47:24,218 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:47:24,332 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:47:24,348 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:47:24,348 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:47:24,355 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:47:24,411 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:47:26,903 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:47:27,041 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:47:27,315 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:47:27,345 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:47:27,365 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:47:29,882 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:47:29,984 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:47:30,031 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:47:30,189 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-master-d780a.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:47:30,203 p=8050 u=bpaskinc |  TASK: [openshift_repos | assert ] *********************************************
2016-03-15 11:47:30,265 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"msg": "all assertions passed"}
2016-03-15 11:47:30,275 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"msg": "all assertions passed"}
2016-03-15 11:47:30,285 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"msg": "all assertions passed"}
2016-03-15 11:47:30,285 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"msg": "all assertions passed"}
2016-03-15 11:47:30,307 p=8050 u=bpaskinc |  TASK: [openshift_repos | Ensure libselinux-python is installed] ***************
2016-03-15 11:47:31,389 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:47:31,491 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:47:31,656 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:47:31,757 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:47:31,767 p=8050 u=bpaskinc |  TASK: [openshift_repos | Create any additional repos that are defined] ********
2016-03-15 11:47:31,820 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:31,826 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:31,838 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:31,842 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:31,860 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove the additional repos if no longer defined] ****
2016-03-15 11:47:32,363 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:47:32,387 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:47:32,411 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:47:32,525 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:47:32,547 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types RHEL/CentOS] ***
2016-03-15 11:47:33,132 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:47:33,253 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:47:33,275 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:47:33,329 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:47:33,544 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:47:33,642 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:47:33,687 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:47:33,960 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:47:33,998 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:47:34,005 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:34,168 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:47:34,183 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:34,265 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:47:34,272 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:34,459 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:47:34,470 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:47:34,483 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:34,658 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:47:34,728 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:47:34,924 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:47:35,007 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:47:35,126 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:47:35,211 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:47:35,433 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:47:35,508 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:47:35,540 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:47:35,749 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:47:35,790 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:47:35,805 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types Fedora] ***
2016-03-15 11:47:35,860 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:47:35,878 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:47:35,882 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:47:35,891 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:47:35,892 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:47:35,899 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:47:35,899 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:35,900 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:47:35,902 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:47:35,906 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:35,915 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:35,919 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:35,923 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:47:35,923 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:35,934 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:47:35,934 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:35,941 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:35,941 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:47:35,947 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:47:35,948 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:47:35,951 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:47:35,953 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:47:35,956 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:47:35,963 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:47:35,964 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:47:35,969 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:47:35,977 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:47:35,977 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:47:35,986 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure gpg keys if needed] ************************
2016-03-15 11:47:36,037 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:47:36,041 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:47:36,045 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:47:36,055 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:47:36,078 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories RHEL/CentOS] **************
2016-03-15 11:47:36,582 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": true, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "md5sum": "6bb613a6efa0f23163e5fb405985043b", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035256.28-189396828891222/source", "state": "file", "uid": 0}
2016-03-15 11:47:36,681 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": true, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "md5sum": "6bb613a6efa0f23163e5fb405985043b", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035256.26-272901992787929/source", "state": "file", "uid": 0}
2016-03-15 11:47:36,836 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": true, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "md5sum": "6bb613a6efa0f23163e5fb405985043b", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035256.29-77765346899675/source", "state": "file", "uid": 0}
2016-03-15 11:47:36,911 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": true, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "md5sum": "6bb613a6efa0f23163e5fb405985043b", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035256.38-88559351210894/source", "state": "file", "uid": 0}
2016-03-15 11:47:36,935 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories Fedora] *******************
2016-03-15 11:47:36,981 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:37,006 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:37,021 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:37,022 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:47:37,040 p=8050 u=bpaskinc |  TASK: [os_update_latest | Update all packages] ********************************
2016-03-15 11:52:42,867 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/updates/packages/bind-libs-lite-9.9.4-29.el7_2.2.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY\nImporting GPG key 0xF4A80EB5:\n Userid     : \"CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>\"\n Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5\n Package    : centos-release-7-2.1511.el7.centos.2.10.x86_64 (installed)\n From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7 will be updated\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2 will be an update\n---> Package bind-license.noarch 32:9.9.4-29.el7 will be updated\n---> Package bind-license.noarch 32:9.9.4-29.el7_2.2 will be an update\n---> Package ca-certificates.noarch 0:2015.2.4-71.el7 will be updated\n---> Package ca-certificates.noarch 0:2015.2.6-70.1.el7_2 will be an update\n---> Package coreutils.x86_64 0:8.22-15.el7 will be updated\n---> Package coreutils.x86_64 0:8.22-15.el7_2.1 will be an update\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-19.2.el7 will be updated\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2 will be an update\n---> Package device-mapper.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package dracut.x86_64 0:033-359.el7 will be updated\n---> Package dracut.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-generic.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-generic.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-rescue.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-rescue.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-network.x86_64 0:033-359.el7 will be updated\n---> Package dracut-network.x86_64 0:033-360.el7_2 will be an update\n---> Package glibc.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc-common.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package gmp.x86_64 1:6.0.0-11.el7 will be updated\n---> Package gmp.x86_64 1:6.0.0-12.el7_1 will be an update\n---> Package gnutls.x86_64 0:3.3.8-12.el7_1.1 will be updated\n---> Package gnutls.x86_64 0:3.3.8-14.el7_2 will be an update\n---> Package grub2.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package grub2-tools.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2-tools.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package kernel.x86_64 0:3.10.0-327.10.1.el7 will be installed\n--> Processing Dependency: linux-firmware >= 20150904-43 for package: kernel-3.10.0-327.10.1.el7.x86_64\n---> Package kernel-tools.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7 will be updated\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7_2.1 will be an update\n---> Package libgudev1.x86_64 0:219-19.el7 will be updated\n---> Package libgudev1.x86_64 0:219-19.el7_2.4 will be an update\n---> Package libssh2.x86_64 0:1.4.3-10.el7 will be updated\n---> Package libssh2.x86_64 0:1.4.3-10.el7_2.1 will be an update\n---> Package libxml2.x86_64 0:2.9.1-5.el7_1.2 will be updated\n---> Package libxml2.x86_64 0:2.9.1-6.el7_2.2 will be an update\n---> Package logrotate.x86_64 0:3.8.6-6.el7 will be updated\n---> Package logrotate.x86_64 0:3.8.6-7.el7_2 will be an update\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7 will be updated\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7_2 will be an update\n---> Package nss.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-sysinit.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-sysinit.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-tools.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-tools.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-util.x86_64 0:3.19.1-4.el7_1 will be updated\n---> Package nss-util.x86_64 0:3.19.1-9.el7_2 will be an update\n---> Package numactl-libs.x86_64 0:2.0.9-5.el7_1 will be updated\n---> Package numactl-libs.x86_64 0:2.0.9-6.el7_2 will be an update\n---> Package openssh.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-clients.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-clients.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-server.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-server.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssl.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package openssl-libs.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl-libs.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package polkit.x86_64 0:0.112-5.el7 will be updated\n---> Package polkit.x86_64 0:0.112-6.el7_2 will be an update\n---> Package procps-ng.x86_64 0:3.3.10-3.el7 will be updated\n---> Package procps-ng.x86_64 0:3.3.10-5.el7_2 will be an update\n---> Package python-perf.x86_64 0:3.10.0-327.el7 will be updated\n---> Package python-perf.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package python-pyudev.noarch 0:0.15-7.el7 will be updated\n---> Package python-pyudev.noarch 0:0.15-7.el7_2.1 will be an update\n---> Package rdma.noarch 0:7.2_4.1_rc6-1.el7 will be updated\n---> Package rdma.noarch 0:7.2_4.1_rc6-2.el7 will be an update\n---> Package rpcbind.x86_64 0:0.2.0-32.el7 will be updated\n---> Package rpcbind.x86_64 0:0.2.0-33.el7_2 will be an update\n---> Package selinux-policy.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package systemd.x86_64 0:219-19.el7 will be updated\n---> Package systemd.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-libs.x86_64 0:219-19.el7 will be updated\n---> Package systemd-libs.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-sysv.x86_64 0:219-19.el7 will be updated\n---> Package systemd-sysv.x86_64 0:219-19.el7_2.4 will be an update\n---> Package tuned.noarch 0:2.5.1-4.el7 will be updated\n---> Package tuned.noarch 0:2.5.1-4.el7_2.2 will be an update\n---> Package tzdata.noarch 0:2015g-1.el7 will be updated\n---> Package tzdata.noarch 0:2016a-1.el7 will be an update\n--> Running transaction check\n---> Package linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch    Version                        Repository\n                                                                           Size\n================================================================================\nInstalling:\n kernel                   x86_64  3.10.0-327.10.1.el7            updates   33 M\nUpdating:\n bind-libs-lite           x86_64  32:9.9.4-29.el7_2.2            updates  724 k\n bind-license             noarch  32:9.9.4-29.el7_2.2            updates   82 k\n ca-certificates          noarch  2015.2.6-70.1.el7_2            updates  428 k\n coreutils                x86_64  8.22-15.el7_2.1                updates  3.2 M\n cyrus-sasl-lib           x86_64  2.1.26-20.el7_2                updates  155 k\n device-mapper            x86_64  7:1.02.107-5.el7_2.1           updates  252 k\n device-mapper-libs       x86_64  7:1.02.107-5.el7_2.1           updates  304 k\n dracut                   x86_64  033-360.el7_2                  updates  311 k\n dracut-config-generic    x86_64  033-360.el7_2                  updates   48 k\n dracut-config-rescue     x86_64  033-360.el7_2                  updates   49 k\n dracut-network           x86_64  033-360.el7_2                  updates   90 k\n glibc                    x86_64  2.17-106.el7_2.4               updates  3.6 M\n glibc-common             x86_64  2.17-106.el7_2.4               updates   11 M\n gmp                      x86_64  1:6.0.0-12.el7_1               updates  280 k\n gnutls                   x86_64  3.3.8-14.el7_2                 updates  662 k\n grub2                    x86_64  1:2.02-0.34.el7.centos         updates  1.5 M\n grub2-tools              x86_64  1:2.02-0.34.el7.centos         updates  3.3 M\n kernel-tools             x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n kernel-tools-libs        x86_64  3.10.0-327.10.1.el7            updates  2.3 M\n kexec-tools              x86_64  2.0.7-38.el7_2.1               updates  306 k\n libgudev1                x86_64  219-19.el7_2.4                 updates   65 k\n libssh2                  x86_64  1.4.3-10.el7_2.1               updates  134 k\n libxml2                  x86_64  2.9.1-6.el7_2.2                updates  666 k\n logrotate                x86_64  3.8.6-7.el7_2                  updates   66 k\n nfs-utils                x86_64  1:1.3.0-0.21.el7_2             updates  371 k\n nss                      x86_64  3.19.1-19.el7_2                updates  852 k\n nss-sysinit              x86_64  3.19.1-19.el7_2                updates   54 k\n nss-tools                x86_64  3.19.1-19.el7_2                updates  484 k\n nss-util                 x86_64  3.19.1-9.el7_2                 updates   71 k\n numactl-libs             x86_64  2.0.9-6.el7_2                  updates   29 k\n openssh                  x86_64  6.6.1p1-23.el7_2               updates  435 k\n openssh-clients          x86_64  6.6.1p1-23.el7_2               updates  639 k\n openssh-server           x86_64  6.6.1p1-23.el7_2               updates  436 k\n openssl                  x86_64  1:1.0.1e-51.el7_2.4            updates  711 k\n openssl-libs             x86_64  1:1.0.1e-51.el7_2.4            updates  951 k\n polkit                   x86_64  0.112-6.el7_2                  updates  166 k\n procps-ng                x86_64  3.3.10-5.el7_2                 updates  287 k\n python-perf              x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n python-pyudev            noarch  0.15-7.el7_2.1                 updates   54 k\n rdma                     noarch  7.2_4.1_rc6-2.el7              updates   28 k\n rpcbind                  x86_64  0.2.0-33.el7_2                 updates   57 k\n selinux-policy           noarch  3.13.1-60.el7_2.3              updates  375 k\n selinux-policy-targeted  noarch  3.13.1-60.el7_2.3              updates  3.9 M\n systemd                  x86_64  219-19.el7_2.4                 updates  5.1 M\n systemd-libs             x86_64  219-19.el7_2.4                 updates  357 k\n systemd-sysv             x86_64  219-19.el7_2.4                 updates   52 k\n tuned                    noarch  2.5.1-4.el7_2.2                updates  193 k\n tzdata                   noarch  2016a-1.el7                    updates  431 k\nInstalling for dependencies:\n linux-firmware           noarch  20150904-43.git6ebf5d5.el7     base      24 M\n\nTransaction Summary\n================================================================================\nInstall   1 Package  (+1 Dependent package)\nUpgrade  48 Packages\n\nTotal download size: 108 M\nDownloading packages:\nDelta RPMs disabled because /usr/bin/applydeltarpm not installed.\nPublic key for bind-libs-lite-9.9.4-29.el7_2.2.x86_64.rpm is not installed\nPublic key for linux-firmware-20150904-43.git6ebf5d5.el7.noarch.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              6.6 MB/s | 108 MB  00:16     \nRetrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Updating   : tzdata-2016a-1.el7.noarch                                   1/98 \n  Updating   : glibc-2.17-106.el7_2.4.x86_64                               2/98 \n  Updating   : glibc-common-2.17-106.el7_2.4.x86_64                        3/98 \n  Updating   : systemd-libs-219-19.el7_2.4.x86_64                          4/98 \n  Updating   : nss-util-3.19.1-9.el7_2.x86_64                              5/98 \n  Updating   : 1:gmp-6.0.0-12.el7_1.x86_64                                 6/98 \n  Updating   : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                     7/98 \n  Updating   : coreutils-8.22-15.el7_2.1.x86_64                            8/98 \n  Updating   : ca-certificates-2015.2.6-70.1.el7_2.noarch                  9/98 \n  Updating   : systemd-219-19.el7_2.4.x86_64                              10/98 \nwarning: /etc/systemd/logind.conf created as /etc/systemd/logind.conf.rpmnew\n  Updating   : openssh-6.6.1p1-23.el7_2.x86_64                            11/98 \n  Updating   : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             12/98 \n  Updating   : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  13/98 \n  Updating   : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  14/98 \n  Updating   : systemd-sysv-219-19.el7_2.4.x86_64                         15/98 \n  Updating   : rpcbind-0.2.0-33.el7_2.x86_64                              16/98 \n  Updating   : selinux-policy-3.13.1-60.el7_2.3.noarch                    17/98 \n  Updating   : nss-3.19.1-19.el7_2.x86_64                                 18/98 \n  Updating   : nss-sysinit-3.19.1-19.el7_2.x86_64                         19/98 \n  Updating   : procps-ng-3.3.10-5.el7_2.x86_64                            20/98 \n  Updating   : dracut-033-360.el7_2.x86_64                                21/98 \n  Updating   : dracut-network-033-360.el7_2.x86_64                        22/98 \n  Updating   : python-pyudev-0.15-7.el7_2.1.noarch                        23/98 \n  Updating   : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               24/98 \n  Updating   : python-perf-3.10.0-327.10.1.el7.x86_64                     25/98 \n  Updating   : libxml2-2.9.1-6.el7_2.2.x86_64                             26/98 \n  Installing : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           27/98 \n  Updating   : 32:bind-license-9.9.4-29.el7_2.2.noarch                    28/98 \n  Updating   : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  29/98 \n  Installing : kernel-3.10.0-327.10.1.el7.x86_64                          30/98 \n  Updating   : tuned-2.5.1-4.el7_2.2.noarch                               31/98 \n  Updating   : kernel-tools-3.10.0-327.10.1.el7.x86_64                    32/98 \n  Updating   : kexec-tools-2.0.7-38.el7_2.1.x86_64                        33/98 \n  Updating   : dracut-config-rescue-033-360.el7_2.x86_64                  34/98 \n  Updating   : 1:grub2-2.02-0.34.el7.centos.x86_64                        35/98 \n  Updating   : dracut-config-generic-033-360.el7_2.x86_64                 36/98 \n  Updating   : rdma-7.2_4.1_rc6-2.el7.noarch                              37/98 \n  Updating   : nss-tools-3.19.1-19.el7_2.x86_64                           38/98 \n  Updating   : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           39/98 \n  Updating   : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        40/98 \n  Updating   : openssh-clients-6.6.1p1-23.el7_2.x86_64                    41/98 \n  Updating   : openssh-server-6.6.1p1-23.el7_2.x86_64                     42/98 \n  Updating   : polkit-0.112-6.el7_2.x86_64                                43/98 \n  Updating   : logrotate-3.8.6-7.el7_2.x86_64                             44/98 \n  Updating   : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         45/98 \n  Updating   : libssh2-1.4.3-10.el7_2.1.x86_64                            46/98 \n  Updating   : gnutls-3.3.8-14.el7_2.x86_64                               47/98 \n  Updating   : libgudev1-219-19.el7_2.4.x86_64                            48/98 \n  Updating   : numactl-libs-2.0.9-6.el7_2.x86_64                          49/98 \n  Updating   : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      50/98 \n  Cleanup    : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          51/98 \n  Cleanup    : rpcbind-0.2.0-32.el7.x86_64                                52/98 \n  Cleanup    : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      53/98 \n  Cleanup    : nss-tools-3.19.1-18.el7.x86_64                             54/98 \n  Cleanup    : nss-sysinit-3.19.1-18.el7.x86_64                           55/98 \n  Cleanup    : nss-3.19.1-18.el7.x86_64                                   56/98 \n  Cleanup    : 1:openssl-1.0.1e-42.el7.9.x86_64                           57/98 \n  Cleanup    : openssh-server-6.6.1p1-22.el7.x86_64                       58/98 \n  Cleanup    : kexec-tools-2.0.7-38.el7.x86_64                            59/98 \n  Cleanup    : openssh-clients-6.6.1p1-22.el7.x86_64                      60/98 \n  Cleanup    : polkit-0.112-5.el7.x86_64                                  61/98 \n  Cleanup    : kernel-tools-3.10.0-327.el7.x86_64                         62/98 \n  Cleanup    : libgudev1-219-19.el7.x86_64                                63/98 \n  Cleanup    : tuned-2.5.1-4.el7.noarch                                   64/98 \n  Cleanup    : openssh-6.6.1p1-22.el7.x86_64                              65/98 \n  Cleanup    : libssh2-1.4.3-10.el7.x86_64                                66/98 \n  Cleanup    : gnutls-3.3.8-12.el7_1.1.x86_64                             67/98 \n  Cleanup    : rdma-7.2_4.1_rc6-1.el7.noarch                              68/98 \n  Cleanup    : selinux-policy-targeted-3.13.1-60.el7.noarch               69/98 \n  Cleanup    : 1:grub2-2.02-0.29.el7.centos.x86_64                        70/98 \n  Cleanup    : selinux-policy-3.13.1-60.el7.noarch                        71/98 \n  Cleanup    : dracut-network-033-359.el7.x86_64                          72/98 \n  Cleanup    : systemd-sysv-219-19.el7.x86_64                             73/98 \n  Cleanup    : dracut-config-generic-033-359.el7.x86_64                   74/98 \n  Cleanup    : dracut-config-rescue-033-359.el7.x86_64                    75/98 \n  Cleanup    : dracut-033-359.el7.x86_64                                  76/98 \n  Cleanup    : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  77/98 \n  Cleanup    : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 78/98 \n  Cleanup    : 7:device-mapper-1.02.107-5.el7.x86_64                      79/98 \n  Cleanup    : systemd-219-19.el7.x86_64                                  80/98 \n  Cleanup    : procps-ng-3.3.10-3.el7.x86_64                              81/98 \n  Cleanup    : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Cleanup    : ca-certificates-2015.2.4-71.el7.noarch                     83/98 \n  Cleanup    : coreutils-8.22-15.el7.x86_64                               84/98 \n  Cleanup    : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Cleanup    : 1:gmp-6.0.0-11.el7.x86_64                                  86/98 \n  Cleanup    : systemd-libs-219-19.el7.x86_64                             87/98 \n  Cleanup    : python-perf-3.10.0-327.el7.x86_64                          88/98 \n  Cleanup    : kernel-tools-libs-3.10.0-327.el7.x86_64                    89/98 \n  Cleanup    : nss-util-3.19.1-4.el7_1.x86_64                             90/98 \n  Cleanup    : libxml2-2.9.1-5.el7_1.2.x86_64                             91/98 \n  Cleanup    : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      92/98 \n  Cleanup    : numactl-libs-2.0.9-5.el7_1.x86_64                          93/98 \n  Cleanup    : python-pyudev-0.15-7.el7.noarch                            94/98 \n  Cleanup    : 32:bind-license-9.9.4-29.el7.noarch                        95/98 \n  Cleanup    : glibc-2.17-105.el7.x86_64                                  96/98 \n  Cleanup    : glibc-common-2.17-105.el7.x86_64                           97/98 \n  Cleanup    : tzdata-2015g-1.el7.noarch                                  98/98 \n  Verifying  : glibc-common-2.17-106.el7_2.4.x86_64                        1/98 \n  Verifying  : systemd-libs-219-19.el7_2.4.x86_64                          2/98 \n  Verifying  : nss-3.19.1-19.el7_2.x86_64                                  3/98 \n  Verifying  : openssh-clients-6.6.1p1-23.el7_2.x86_64                     4/98 \n  Verifying  : gnutls-3.3.8-14.el7_2.x86_64                                5/98 \n  Verifying  : ca-certificates-2015.2.6-70.1.el7_2.noarch                  6/98 \n  Verifying  : 1:gmp-6.0.0-12.el7_1.x86_64                                 7/98 \n  Verifying  : libgudev1-219-19.el7_2.4.x86_64                             8/98 \n  Verifying  : selinux-policy-3.13.1-60.el7_2.3.noarch                     9/98 \n  Verifying  : numactl-libs-2.0.9-6.el7_2.x86_64                          10/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  11/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               12/98 \n  Verifying  : kernel-3.10.0-327.10.1.el7.x86_64                          13/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7_2.2.noarch                    14/98 \n  Verifying  : coreutils-8.22-15.el7_2.1.x86_64                           15/98 \n  Verifying  : kernel-tools-3.10.0-327.10.1.el7.x86_64                    16/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             17/98 \n  Verifying  : dracut-config-rescue-033-360.el7_2.x86_64                  18/98 \n  Verifying  : dracut-network-033-360.el7_2.x86_64                        19/98 \n  Verifying  : libssh2-1.4.3-10.el7_2.1.x86_64                            20/98 \n  Verifying  : tuned-2.5.1-4.el7_2.2.noarch                               21/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      22/98 \n  Verifying  : rpcbind-0.2.0-33.el7_2.x86_64                              23/98 \n  Verifying  : procps-ng-3.3.10-5.el7_2.x86_64                            24/98 \n  Verifying  : 1:grub2-2.02-0.34.el7.centos.x86_64                        25/98 \n  Verifying  : openssh-server-6.6.1p1-23.el7_2.x86_64                     26/98 \n  Verifying  : dracut-config-generic-033-360.el7_2.x86_64                 27/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        28/98 \n  Verifying  : python-perf-3.10.0-327.10.1.el7.x86_64                     29/98 \n  Verifying  : kexec-tools-2.0.7-38.el7_2.1.x86_64                        30/98 \n  Verifying  : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                    31/98 \n  Verifying  : logrotate-3.8.6-7.el7_2.x86_64                             32/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           33/98 \n  Verifying  : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  34/98 \n  Verifying  : libxml2-2.9.1-6.el7_2.2.x86_64                             35/98 \n  Verifying  : openssh-6.6.1p1-23.el7_2.x86_64                            36/98 \n  Verifying  : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           37/98 \n  Verifying  : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         38/98 \n  Verifying  : nss-sysinit-3.19.1-19.el7_2.x86_64                         39/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  40/98 \n  Verifying  : python-pyudev-0.15-7.el7_2.1.noarch                        41/98 \n  Verifying  : tzdata-2016a-1.el7.noarch                                  42/98 \n  Verifying  : systemd-sysv-219-19.el7_2.4.x86_64                         43/98 \n  Verifying  : nss-tools-3.19.1-19.el7_2.x86_64                           44/98 \n  Verifying  : rdma-7.2_4.1_rc6-2.el7.noarch                              45/98 \n  Verifying  : nss-util-3.19.1-9.el7_2.x86_64                             46/98 \n  Verifying  : dracut-033-360.el7_2.x86_64                                47/98 \n  Verifying  : polkit-0.112-6.el7_2.x86_64                                48/98 \n  Verifying  : systemd-219-19.el7_2.4.x86_64                              49/98 \n  Verifying  : glibc-2.17-106.el7_2.4.x86_64                              50/98 \n  Verifying  : dracut-config-rescue-033-359.el7.x86_64                    51/98 \n  Verifying  : gnutls-3.3.8-12.el7_1.1.x86_64                             52/98 \n  Verifying  : openssh-6.6.1p1-22.el7.x86_64                              53/98 \n  Verifying  : glibc-common-2.17-105.el7.x86_64                           54/98 \n  Verifying  : dracut-network-033-359.el7.x86_64                          55/98 \n  Verifying  : selinux-policy-3.13.1-60.el7.noarch                        56/98 \n  Verifying  : systemd-libs-219-19.el7.x86_64                             57/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          58/98 \n  Verifying  : python-pyudev-0.15-7.el7.noarch                            59/98 \n  Verifying  : nss-util-3.19.1-4.el7_1.x86_64                             60/98 \n  Verifying  : rdma-7.2_4.1_rc6-1.el7.noarch                              61/98 \n  Verifying  : kexec-tools-2.0.7-38.el7.x86_64                            62/98 \n  Verifying  : rpcbind-0.2.0-32.el7.x86_64                                63/98 \n  Verifying  : kernel-tools-3.10.0-327.el7.x86_64                         64/98 \n  Verifying  : procps-ng-3.3.10-3.el7.x86_64                              65/98 \n  Verifying  : dracut-config-generic-033-359.el7.x86_64                   66/98 \n  Verifying  : tzdata-2015g-1.el7.noarch                                  67/98 \n  Verifying  : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  68/98 \n  Verifying  : systemd-sysv-219-19.el7.x86_64                             69/98 \n  Verifying  : libgudev1-219-19.el7.x86_64                                70/98 \n  Verifying  : nss-sysinit-3.19.1-18.el7.x86_64                           71/98 \n  Verifying  : 1:gmp-6.0.0-11.el7.x86_64                                  72/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.el7.x86_64                    73/98 \n  Verifying  : glibc-2.17-105.el7.x86_64                                  74/98 \n  Verifying  : 1:grub2-2.02-0.29.el7.centos.x86_64                        75/98 \n  Verifying  : ca-certificates-2015.2.4-71.el7.noarch                     76/98 \n  Verifying  : 1:openssl-1.0.1e-42.el7.9.x86_64                           77/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7.noarch                        78/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7.noarch               79/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      80/98 \n  Verifying  : nss-tools-3.19.1-18.el7.x86_64                             81/98 \n  Verifying  : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Verifying  : polkit-0.112-5.el7.x86_64                                  83/98 \n  Verifying  : numactl-libs-2.0.9-5.el7_1.x86_64                          84/98 \n  Verifying  : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      86/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7.x86_64                      87/98 \n  Verifying  : coreutils-8.22-15.el7.x86_64                               88/98 \n  Verifying  : tuned-2.5.1-4.el7.noarch                                   89/98 \n  Verifying  : nss-3.19.1-18.el7.x86_64                                   90/98 \n  Verifying  : openssh-clients-6.6.1p1-22.el7.x86_64                      91/98 \n  Verifying  : systemd-219-19.el7.x86_64                                  92/98 \n  Verifying  : dracut-033-359.el7.x86_64                                  93/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 94/98 \n  Verifying  : openssh-server-6.6.1p1-22.el7.x86_64                       95/98 \n  Verifying  : libssh2-1.4.3-10.el7.x86_64                                96/98 \n  Verifying  : libxml2-2.9.1-5.el7_1.2.x86_64                             97/98 \n  Verifying  : python-perf-3.10.0-327.el7.x86_64                          98/98 \n\nInstalled:\n  kernel.x86_64 0:3.10.0-327.10.1.el7                                           \n\nDependency Installed:\n  linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7                            \n\nUpdated:\n  bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2                                     \n  bind-license.noarch 32:9.9.4-29.el7_2.2                                       \n  ca-certificates.noarch 0:2015.2.6-70.1.el7_2                                  \n  coreutils.x86_64 0:8.22-15.el7_2.1                                            \n  cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2                                       \n  device-mapper.x86_64 7:1.02.107-5.el7_2.1                                     \n  device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1                                \n  dracut.x86_64 0:033-360.el7_2                                                 \n  dracut-config-generic.x86_64 0:033-360.el7_2                                  \n  dracut-config-rescue.x86_64 0:033-360.el7_2                                   \n  dracut-network.x86_64 0:033-360.el7_2                                         \n  glibc.x86_64 0:2.17-106.el7_2.4                                               \n  glibc-common.x86_64 0:2.17-106.el7_2.4                                        \n  gmp.x86_64 1:6.0.0-12.el7_1                                                   \n  gnutls.x86_64 0:3.3.8-14.el7_2                                                \n  grub2.x86_64 1:2.02-0.34.el7.centos                                           \n  grub2-tools.x86_64 1:2.02-0.34.el7.centos                                     \n  kernel-tools.x86_64 0:3.10.0-327.10.1.el7                                     \n  kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7                                \n  kexec-tools.x86_64 0:2.0.7-38.el7_2.1                                         \n  libgudev1.x86_64 0:219-19.el7_2.4                                             \n  libssh2.x86_64 0:1.4.3-10.el7_2.1                                             \n  libxml2.x86_64 0:2.9.1-6.el7_2.2                                              \n  logrotate.x86_64 0:3.8.6-7.el7_2                                              \n  nfs-utils.x86_64 1:1.3.0-0.21.el7_2                                           \n  nss.x86_64 0:3.19.1-19.el7_2                                                  \n  nss-sysinit.x86_64 0:3.19.1-19.el7_2                                          \n  nss-tools.x86_64 0:3.19.1-19.el7_2                                            \n  nss-util.x86_64 0:3.19.1-9.el7_2                                              \n  numactl-libs.x86_64 0:2.0.9-6.el7_2                                           \n  openssh.x86_64 0:6.6.1p1-23.el7_2                                             \n  openssh-clients.x86_64 0:6.6.1p1-23.el7_2                                     \n  openssh-server.x86_64 0:6.6.1p1-23.el7_2                                      \n  openssl.x86_64 1:1.0.1e-51.el7_2.4                                            \n  openssl-libs.x86_64 1:1.0.1e-51.el7_2.4                                       \n  polkit.x86_64 0:0.112-6.el7_2                                                 \n  procps-ng.x86_64 0:3.3.10-5.el7_2                                             \n  python-perf.x86_64 0:3.10.0-327.10.1.el7                                      \n  python-pyudev.noarch 0:0.15-7.el7_2.1                                         \n  rdma.noarch 0:7.2_4.1_rc6-2.el7                                               \n  rpcbind.x86_64 0:0.2.0-33.el7_2                                               \n  selinux-policy.noarch 0:3.13.1-60.el7_2.3                                     \n  selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3                            \n  systemd.x86_64 0:219-19.el7_2.4                                               \n  systemd-libs.x86_64 0:219-19.el7_2.4                                          \n  systemd-sysv.x86_64 0:219-19.el7_2.4                                          \n  tuned.noarch 0:2.5.1-4.el7_2.2                                                \n  tzdata.noarch 0:2016a-1.el7                                                   \n\nComplete!\n"]}
2016-03-15 11:52:49,409 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/updates/packages/bind-license-9.9.4-29.el7_2.2.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY\nImporting GPG key 0xF4A80EB5:\n Userid     : \"CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>\"\n Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5\n Package    : centos-release-7-2.1511.el7.centos.2.10.x86_64 (installed)\n From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7 will be updated\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2 will be an update\n---> Package bind-license.noarch 32:9.9.4-29.el7 will be updated\n---> Package bind-license.noarch 32:9.9.4-29.el7_2.2 will be an update\n---> Package ca-certificates.noarch 0:2015.2.4-71.el7 will be updated\n---> Package ca-certificates.noarch 0:2015.2.6-70.1.el7_2 will be an update\n---> Package coreutils.x86_64 0:8.22-15.el7 will be updated\n---> Package coreutils.x86_64 0:8.22-15.el7_2.1 will be an update\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-19.2.el7 will be updated\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2 will be an update\n---> Package device-mapper.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package dracut.x86_64 0:033-359.el7 will be updated\n---> Package dracut.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-generic.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-generic.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-rescue.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-rescue.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-network.x86_64 0:033-359.el7 will be updated\n---> Package dracut-network.x86_64 0:033-360.el7_2 will be an update\n---> Package glibc.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc-common.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package gmp.x86_64 1:6.0.0-11.el7 will be updated\n---> Package gmp.x86_64 1:6.0.0-12.el7_1 will be an update\n---> Package gnutls.x86_64 0:3.3.8-12.el7_1.1 will be updated\n---> Package gnutls.x86_64 0:3.3.8-14.el7_2 will be an update\n---> Package grub2.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package grub2-tools.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2-tools.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package kernel.x86_64 0:3.10.0-327.10.1.el7 will be installed\n--> Processing Dependency: linux-firmware >= 20150904-43 for package: kernel-3.10.0-327.10.1.el7.x86_64\n---> Package kernel-tools.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7 will be updated\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7_2.1 will be an update\n---> Package libgudev1.x86_64 0:219-19.el7 will be updated\n---> Package libgudev1.x86_64 0:219-19.el7_2.4 will be an update\n---> Package libssh2.x86_64 0:1.4.3-10.el7 will be updated\n---> Package libssh2.x86_64 0:1.4.3-10.el7_2.1 will be an update\n---> Package libxml2.x86_64 0:2.9.1-5.el7_1.2 will be updated\n---> Package libxml2.x86_64 0:2.9.1-6.el7_2.2 will be an update\n---> Package logrotate.x86_64 0:3.8.6-6.el7 will be updated\n---> Package logrotate.x86_64 0:3.8.6-7.el7_2 will be an update\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7 will be updated\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7_2 will be an update\n---> Package nss.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-sysinit.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-sysinit.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-tools.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-tools.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-util.x86_64 0:3.19.1-4.el7_1 will be updated\n---> Package nss-util.x86_64 0:3.19.1-9.el7_2 will be an update\n---> Package numactl-libs.x86_64 0:2.0.9-5.el7_1 will be updated\n---> Package numactl-libs.x86_64 0:2.0.9-6.el7_2 will be an update\n---> Package openssh.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-clients.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-clients.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-server.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-server.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssl.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package openssl-libs.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl-libs.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package polkit.x86_64 0:0.112-5.el7 will be updated\n---> Package polkit.x86_64 0:0.112-6.el7_2 will be an update\n---> Package procps-ng.x86_64 0:3.3.10-3.el7 will be updated\n---> Package procps-ng.x86_64 0:3.3.10-5.el7_2 will be an update\n---> Package python-perf.x86_64 0:3.10.0-327.el7 will be updated\n---> Package python-perf.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package python-pyudev.noarch 0:0.15-7.el7 will be updated\n---> Package python-pyudev.noarch 0:0.15-7.el7_2.1 will be an update\n---> Package rdma.noarch 0:7.2_4.1_rc6-1.el7 will be updated\n---> Package rdma.noarch 0:7.2_4.1_rc6-2.el7 will be an update\n---> Package rpcbind.x86_64 0:0.2.0-32.el7 will be updated\n---> Package rpcbind.x86_64 0:0.2.0-33.el7_2 will be an update\n---> Package selinux-policy.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package systemd.x86_64 0:219-19.el7 will be updated\n---> Package systemd.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-libs.x86_64 0:219-19.el7 will be updated\n---> Package systemd-libs.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-sysv.x86_64 0:219-19.el7 will be updated\n---> Package systemd-sysv.x86_64 0:219-19.el7_2.4 will be an update\n---> Package tuned.noarch 0:2.5.1-4.el7 will be updated\n---> Package tuned.noarch 0:2.5.1-4.el7_2.2 will be an update\n---> Package tzdata.noarch 0:2015g-1.el7 will be updated\n---> Package tzdata.noarch 0:2016a-1.el7 will be an update\n--> Running transaction check\n---> Package linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch    Version                        Repository\n                                                                           Size\n================================================================================\nInstalling:\n kernel                   x86_64  3.10.0-327.10.1.el7            updates   33 M\nUpdating:\n bind-libs-lite           x86_64  32:9.9.4-29.el7_2.2            updates  724 k\n bind-license             noarch  32:9.9.4-29.el7_2.2            updates   82 k\n ca-certificates          noarch  2015.2.6-70.1.el7_2            updates  428 k\n coreutils                x86_64  8.22-15.el7_2.1                updates  3.2 M\n cyrus-sasl-lib           x86_64  2.1.26-20.el7_2                updates  155 k\n device-mapper            x86_64  7:1.02.107-5.el7_2.1           updates  252 k\n device-mapper-libs       x86_64  7:1.02.107-5.el7_2.1           updates  304 k\n dracut                   x86_64  033-360.el7_2                  updates  311 k\n dracut-config-generic    x86_64  033-360.el7_2                  updates   48 k\n dracut-config-rescue     x86_64  033-360.el7_2                  updates   49 k\n dracut-network           x86_64  033-360.el7_2                  updates   90 k\n glibc                    x86_64  2.17-106.el7_2.4               updates  3.6 M\n glibc-common             x86_64  2.17-106.el7_2.4               updates   11 M\n gmp                      x86_64  1:6.0.0-12.el7_1               updates  280 k\n gnutls                   x86_64  3.3.8-14.el7_2                 updates  662 k\n grub2                    x86_64  1:2.02-0.34.el7.centos         updates  1.5 M\n grub2-tools              x86_64  1:2.02-0.34.el7.centos         updates  3.3 M\n kernel-tools             x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n kernel-tools-libs        x86_64  3.10.0-327.10.1.el7            updates  2.3 M\n kexec-tools              x86_64  2.0.7-38.el7_2.1               updates  306 k\n libgudev1                x86_64  219-19.el7_2.4                 updates   65 k\n libssh2                  x86_64  1.4.3-10.el7_2.1               updates  134 k\n libxml2                  x86_64  2.9.1-6.el7_2.2                updates  666 k\n logrotate                x86_64  3.8.6-7.el7_2                  updates   66 k\n nfs-utils                x86_64  1:1.3.0-0.21.el7_2             updates  371 k\n nss                      x86_64  3.19.1-19.el7_2                updates  852 k\n nss-sysinit              x86_64  3.19.1-19.el7_2                updates   54 k\n nss-tools                x86_64  3.19.1-19.el7_2                updates  484 k\n nss-util                 x86_64  3.19.1-9.el7_2                 updates   71 k\n numactl-libs             x86_64  2.0.9-6.el7_2                  updates   29 k\n openssh                  x86_64  6.6.1p1-23.el7_2               updates  435 k\n openssh-clients          x86_64  6.6.1p1-23.el7_2               updates  639 k\n openssh-server           x86_64  6.6.1p1-23.el7_2               updates  436 k\n openssl                  x86_64  1:1.0.1e-51.el7_2.4            updates  711 k\n openssl-libs             x86_64  1:1.0.1e-51.el7_2.4            updates  951 k\n polkit                   x86_64  0.112-6.el7_2                  updates  166 k\n procps-ng                x86_64  3.3.10-5.el7_2                 updates  287 k\n python-perf              x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n python-pyudev            noarch  0.15-7.el7_2.1                 updates   54 k\n rdma                     noarch  7.2_4.1_rc6-2.el7              updates   28 k\n rpcbind                  x86_64  0.2.0-33.el7_2                 updates   57 k\n selinux-policy           noarch  3.13.1-60.el7_2.3              updates  375 k\n selinux-policy-targeted  noarch  3.13.1-60.el7_2.3              updates  3.9 M\n systemd                  x86_64  219-19.el7_2.4                 updates  5.1 M\n systemd-libs             x86_64  219-19.el7_2.4                 updates  357 k\n systemd-sysv             x86_64  219-19.el7_2.4                 updates   52 k\n tuned                    noarch  2.5.1-4.el7_2.2                updates  193 k\n tzdata                   noarch  2016a-1.el7                    updates  431 k\nInstalling for dependencies:\n linux-firmware           noarch  20150904-43.git6ebf5d5.el7     base      24 M\n\nTransaction Summary\n================================================================================\nInstall   1 Package  (+1 Dependent package)\nUpgrade  48 Packages\n\nTotal download size: 108 M\nDownloading packages:\nDelta RPMs disabled because /usr/bin/applydeltarpm not installed.\nPublic key for bind-license-9.9.4-29.el7_2.2.noarch.rpm is not installed\nPublic key for linux-firmware-20150904-43.git6ebf5d5.el7.noarch.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              5.4 MB/s | 108 MB  00:19     \nRetrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Updating   : tzdata-2016a-1.el7.noarch                                   1/98 \n  Updating   : glibc-2.17-106.el7_2.4.x86_64                               2/98 \n  Updating   : glibc-common-2.17-106.el7_2.4.x86_64                        3/98 \n  Updating   : systemd-libs-219-19.el7_2.4.x86_64                          4/98 \n  Updating   : nss-util-3.19.1-9.el7_2.x86_64                              5/98 \n  Updating   : 1:gmp-6.0.0-12.el7_1.x86_64                                 6/98 \n  Updating   : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                     7/98 \n  Updating   : coreutils-8.22-15.el7_2.1.x86_64                            8/98 \n  Updating   : ca-certificates-2015.2.6-70.1.el7_2.noarch                  9/98 \n  Updating   : systemd-219-19.el7_2.4.x86_64                              10/98 \nwarning: /etc/systemd/logind.conf created as /etc/systemd/logind.conf.rpmnew\n  Updating   : openssh-6.6.1p1-23.el7_2.x86_64                            11/98 \n  Updating   : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             12/98 \n  Updating   : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  13/98 \n  Updating   : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  14/98 \n  Updating   : systemd-sysv-219-19.el7_2.4.x86_64                         15/98 \n  Updating   : rpcbind-0.2.0-33.el7_2.x86_64                              16/98 \n  Updating   : selinux-policy-3.13.1-60.el7_2.3.noarch                    17/98 \n  Updating   : nss-3.19.1-19.el7_2.x86_64                                 18/98 \n  Updating   : nss-sysinit-3.19.1-19.el7_2.x86_64                         19/98 \n  Updating   : procps-ng-3.3.10-5.el7_2.x86_64                            20/98 \n  Updating   : dracut-033-360.el7_2.x86_64                                21/98 \n  Updating   : dracut-network-033-360.el7_2.x86_64                        22/98 \n  Updating   : python-pyudev-0.15-7.el7_2.1.noarch                        23/98 \n  Updating   : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               24/98 \n  Updating   : python-perf-3.10.0-327.10.1.el7.x86_64                     25/98 \n  Updating   : libxml2-2.9.1-6.el7_2.2.x86_64                             26/98 \n  Installing : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           27/98 \n  Updating   : 32:bind-license-9.9.4-29.el7_2.2.noarch                    28/98 \n  Updating   : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  29/98 \n  Installing : kernel-3.10.0-327.10.1.el7.x86_64                          30/98 \n  Updating   : tuned-2.5.1-4.el7_2.2.noarch                               31/98 \n  Updating   : kernel-tools-3.10.0-327.10.1.el7.x86_64                    32/98 \n  Updating   : kexec-tools-2.0.7-38.el7_2.1.x86_64                        33/98 \n  Updating   : dracut-config-rescue-033-360.el7_2.x86_64                  34/98 \n  Updating   : 1:grub2-2.02-0.34.el7.centos.x86_64                        35/98 \n  Updating   : dracut-config-generic-033-360.el7_2.x86_64                 36/98 \n  Updating   : rdma-7.2_4.1_rc6-2.el7.noarch                              37/98 \n  Updating   : nss-tools-3.19.1-19.el7_2.x86_64                           38/98 \n  Updating   : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           39/98 \n  Updating   : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        40/98 \n  Updating   : openssh-clients-6.6.1p1-23.el7_2.x86_64                    41/98 \n  Updating   : openssh-server-6.6.1p1-23.el7_2.x86_64                     42/98 \n  Updating   : polkit-0.112-6.el7_2.x86_64                                43/98 \n  Updating   : logrotate-3.8.6-7.el7_2.x86_64                             44/98 \n  Updating   : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         45/98 \n  Updating   : libssh2-1.4.3-10.el7_2.1.x86_64                            46/98 \n  Updating   : gnutls-3.3.8-14.el7_2.x86_64                               47/98 \n  Updating   : libgudev1-219-19.el7_2.4.x86_64                            48/98 \n  Updating   : numactl-libs-2.0.9-6.el7_2.x86_64                          49/98 \n  Updating   : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      50/98 \n  Cleanup    : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          51/98 \n  Cleanup    : rpcbind-0.2.0-32.el7.x86_64                                52/98 \n  Cleanup    : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      53/98 \n  Cleanup    : nss-tools-3.19.1-18.el7.x86_64                             54/98 \n  Cleanup    : nss-sysinit-3.19.1-18.el7.x86_64                           55/98 \n  Cleanup    : nss-3.19.1-18.el7.x86_64                                   56/98 \n  Cleanup    : 1:openssl-1.0.1e-42.el7.9.x86_64                           57/98 \n  Cleanup    : openssh-server-6.6.1p1-22.el7.x86_64                       58/98 \n  Cleanup    : kexec-tools-2.0.7-38.el7.x86_64                            59/98 \n  Cleanup    : openssh-clients-6.6.1p1-22.el7.x86_64                      60/98 \n  Cleanup    : polkit-0.112-5.el7.x86_64                                  61/98 \n  Cleanup    : kernel-tools-3.10.0-327.el7.x86_64                         62/98 \n  Cleanup    : libgudev1-219-19.el7.x86_64                                63/98 \n  Cleanup    : tuned-2.5.1-4.el7.noarch                                   64/98 \n  Cleanup    : openssh-6.6.1p1-22.el7.x86_64                              65/98 \n  Cleanup    : libssh2-1.4.3-10.el7.x86_64                                66/98 \n  Cleanup    : gnutls-3.3.8-12.el7_1.1.x86_64                             67/98 \n  Cleanup    : rdma-7.2_4.1_rc6-1.el7.noarch                              68/98 \n  Cleanup    : selinux-policy-targeted-3.13.1-60.el7.noarch               69/98 \n  Cleanup    : 1:grub2-2.02-0.29.el7.centos.x86_64                        70/98 \n  Cleanup    : selinux-policy-3.13.1-60.el7.noarch                        71/98 \n  Cleanup    : dracut-network-033-359.el7.x86_64                          72/98 \n  Cleanup    : systemd-sysv-219-19.el7.x86_64                             73/98 \n  Cleanup    : dracut-config-generic-033-359.el7.x86_64                   74/98 \n  Cleanup    : dracut-config-rescue-033-359.el7.x86_64                    75/98 \n  Cleanup    : dracut-033-359.el7.x86_64                                  76/98 \n  Cleanup    : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  77/98 \n  Cleanup    : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 78/98 \n  Cleanup    : 7:device-mapper-1.02.107-5.el7.x86_64                      79/98 \n  Cleanup    : systemd-219-19.el7.x86_64                                  80/98 \n  Cleanup    : procps-ng-3.3.10-3.el7.x86_64                              81/98 \n  Cleanup    : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Cleanup    : ca-certificates-2015.2.4-71.el7.noarch                     83/98 \n  Cleanup    : coreutils-8.22-15.el7.x86_64                               84/98 \n  Cleanup    : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Cleanup    : 1:gmp-6.0.0-11.el7.x86_64                                  86/98 \n  Cleanup    : systemd-libs-219-19.el7.x86_64                             87/98 \n  Cleanup    : python-perf-3.10.0-327.el7.x86_64                          88/98 \n  Cleanup    : kernel-tools-libs-3.10.0-327.el7.x86_64                    89/98 \n  Cleanup    : nss-util-3.19.1-4.el7_1.x86_64                             90/98 \n  Cleanup    : libxml2-2.9.1-5.el7_1.2.x86_64                             91/98 \n  Cleanup    : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      92/98 \n  Cleanup    : numactl-libs-2.0.9-5.el7_1.x86_64                          93/98 \n  Cleanup    : python-pyudev-0.15-7.el7.noarch                            94/98 \n  Cleanup    : 32:bind-license-9.9.4-29.el7.noarch                        95/98 \n  Cleanup    : glibc-2.17-105.el7.x86_64                                  96/98 \n  Cleanup    : glibc-common-2.17-105.el7.x86_64                           97/98 \n  Cleanup    : tzdata-2015g-1.el7.noarch                                  98/98 \n  Verifying  : glibc-common-2.17-106.el7_2.4.x86_64                        1/98 \n  Verifying  : systemd-libs-219-19.el7_2.4.x86_64                          2/98 \n  Verifying  : nss-3.19.1-19.el7_2.x86_64                                  3/98 \n  Verifying  : openssh-clients-6.6.1p1-23.el7_2.x86_64                     4/98 \n  Verifying  : gnutls-3.3.8-14.el7_2.x86_64                                5/98 \n  Verifying  : ca-certificates-2015.2.6-70.1.el7_2.noarch                  6/98 \n  Verifying  : 1:gmp-6.0.0-12.el7_1.x86_64                                 7/98 \n  Verifying  : libgudev1-219-19.el7_2.4.x86_64                             8/98 \n  Verifying  : selinux-policy-3.13.1-60.el7_2.3.noarch                     9/98 \n  Verifying  : numactl-libs-2.0.9-6.el7_2.x86_64                          10/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  11/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               12/98 \n  Verifying  : kernel-3.10.0-327.10.1.el7.x86_64                          13/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7_2.2.noarch                    14/98 \n  Verifying  : coreutils-8.22-15.el7_2.1.x86_64                           15/98 \n  Verifying  : kernel-tools-3.10.0-327.10.1.el7.x86_64                    16/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             17/98 \n  Verifying  : dracut-config-rescue-033-360.el7_2.x86_64                  18/98 \n  Verifying  : dracut-network-033-360.el7_2.x86_64                        19/98 \n  Verifying  : libssh2-1.4.3-10.el7_2.1.x86_64                            20/98 \n  Verifying  : tuned-2.5.1-4.el7_2.2.noarch                               21/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      22/98 \n  Verifying  : rpcbind-0.2.0-33.el7_2.x86_64                              23/98 \n  Verifying  : procps-ng-3.3.10-5.el7_2.x86_64                            24/98 \n  Verifying  : 1:grub2-2.02-0.34.el7.centos.x86_64                        25/98 \n  Verifying  : openssh-server-6.6.1p1-23.el7_2.x86_64                     26/98 \n  Verifying  : dracut-config-generic-033-360.el7_2.x86_64                 27/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        28/98 \n  Verifying  : python-perf-3.10.0-327.10.1.el7.x86_64                     29/98 \n  Verifying  : kexec-tools-2.0.7-38.el7_2.1.x86_64                        30/98 \n  Verifying  : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                    31/98 \n  Verifying  : logrotate-3.8.6-7.el7_2.x86_64                             32/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           33/98 \n  Verifying  : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  34/98 \n  Verifying  : libxml2-2.9.1-6.el7_2.2.x86_64                             35/98 \n  Verifying  : openssh-6.6.1p1-23.el7_2.x86_64                            36/98 \n  Verifying  : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           37/98 \n  Verifying  : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         38/98 \n  Verifying  : nss-sysinit-3.19.1-19.el7_2.x86_64                         39/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  40/98 \n  Verifying  : python-pyudev-0.15-7.el7_2.1.noarch                        41/98 \n  Verifying  : tzdata-2016a-1.el7.noarch                                  42/98 \n  Verifying  : systemd-sysv-219-19.el7_2.4.x86_64                         43/98 \n  Verifying  : nss-tools-3.19.1-19.el7_2.x86_64                           44/98 \n  Verifying  : rdma-7.2_4.1_rc6-2.el7.noarch                              45/98 \n  Verifying  : nss-util-3.19.1-9.el7_2.x86_64                             46/98 \n  Verifying  : dracut-033-360.el7_2.x86_64                                47/98 \n  Verifying  : polkit-0.112-6.el7_2.x86_64                                48/98 \n  Verifying  : systemd-219-19.el7_2.4.x86_64                              49/98 \n  Verifying  : glibc-2.17-106.el7_2.4.x86_64                              50/98 \n  Verifying  : dracut-config-rescue-033-359.el7.x86_64                    51/98 \n  Verifying  : gnutls-3.3.8-12.el7_1.1.x86_64                             52/98 \n  Verifying  : openssh-6.6.1p1-22.el7.x86_64                              53/98 \n  Verifying  : glibc-common-2.17-105.el7.x86_64                           54/98 \n  Verifying  : dracut-network-033-359.el7.x86_64                          55/98 \n  Verifying  : selinux-policy-3.13.1-60.el7.noarch                        56/98 \n  Verifying  : systemd-libs-219-19.el7.x86_64                             57/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          58/98 \n  Verifying  : python-pyudev-0.15-7.el7.noarch                            59/98 \n  Verifying  : nss-util-3.19.1-4.el7_1.x86_64                             60/98 \n  Verifying  : rdma-7.2_4.1_rc6-1.el7.noarch                              61/98 \n  Verifying  : kexec-tools-2.0.7-38.el7.x86_64                            62/98 \n  Verifying  : rpcbind-0.2.0-32.el7.x86_64                                63/98 \n  Verifying  : kernel-tools-3.10.0-327.el7.x86_64                         64/98 \n  Verifying  : procps-ng-3.3.10-3.el7.x86_64                              65/98 \n  Verifying  : dracut-config-generic-033-359.el7.x86_64                   66/98 \n  Verifying  : tzdata-2015g-1.el7.noarch                                  67/98 \n  Verifying  : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  68/98 \n  Verifying  : systemd-sysv-219-19.el7.x86_64                             69/98 \n  Verifying  : libgudev1-219-19.el7.x86_64                                70/98 \n  Verifying  : nss-sysinit-3.19.1-18.el7.x86_64                           71/98 \n  Verifying  : 1:gmp-6.0.0-11.el7.x86_64                                  72/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.el7.x86_64                    73/98 \n  Verifying  : glibc-2.17-105.el7.x86_64                                  74/98 \n  Verifying  : 1:grub2-2.02-0.29.el7.centos.x86_64                        75/98 \n  Verifying  : ca-certificates-2015.2.4-71.el7.noarch                     76/98 \n  Verifying  : 1:openssl-1.0.1e-42.el7.9.x86_64                           77/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7.noarch                        78/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7.noarch               79/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      80/98 \n  Verifying  : nss-tools-3.19.1-18.el7.x86_64                             81/98 \n  Verifying  : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Verifying  : polkit-0.112-5.el7.x86_64                                  83/98 \n  Verifying  : numactl-libs-2.0.9-5.el7_1.x86_64                          84/98 \n  Verifying  : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      86/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7.x86_64                      87/98 \n  Verifying  : coreutils-8.22-15.el7.x86_64                               88/98 \n  Verifying  : tuned-2.5.1-4.el7.noarch                                   89/98 \n  Verifying  : nss-3.19.1-18.el7.x86_64                                   90/98 \n  Verifying  : openssh-clients-6.6.1p1-22.el7.x86_64                      91/98 \n  Verifying  : systemd-219-19.el7.x86_64                                  92/98 \n  Verifying  : dracut-033-359.el7.x86_64                                  93/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 94/98 \n  Verifying  : openssh-server-6.6.1p1-22.el7.x86_64                       95/98 \n  Verifying  : libssh2-1.4.3-10.el7.x86_64                                96/98 \n  Verifying  : libxml2-2.9.1-5.el7_1.2.x86_64                             97/98 \n  Verifying  : python-perf-3.10.0-327.el7.x86_64                          98/98 \n\nInstalled:\n  kernel.x86_64 0:3.10.0-327.10.1.el7                                           \n\nDependency Installed:\n  linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7                            \n\nUpdated:\n  bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2                                     \n  bind-license.noarch 32:9.9.4-29.el7_2.2                                       \n  ca-certificates.noarch 0:2015.2.6-70.1.el7_2                                  \n  coreutils.x86_64 0:8.22-15.el7_2.1                                            \n  cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2                                       \n  device-mapper.x86_64 7:1.02.107-5.el7_2.1                                     \n  device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1                                \n  dracut.x86_64 0:033-360.el7_2                                                 \n  dracut-config-generic.x86_64 0:033-360.el7_2                                  \n  dracut-config-rescue.x86_64 0:033-360.el7_2                                   \n  dracut-network.x86_64 0:033-360.el7_2                                         \n  glibc.x86_64 0:2.17-106.el7_2.4                                               \n  glibc-common.x86_64 0:2.17-106.el7_2.4                                        \n  gmp.x86_64 1:6.0.0-12.el7_1                                                   \n  gnutls.x86_64 0:3.3.8-14.el7_2                                                \n  grub2.x86_64 1:2.02-0.34.el7.centos                                           \n  grub2-tools.x86_64 1:2.02-0.34.el7.centos                                     \n  kernel-tools.x86_64 0:3.10.0-327.10.1.el7                                     \n  kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7                                \n  kexec-tools.x86_64 0:2.0.7-38.el7_2.1                                         \n  libgudev1.x86_64 0:219-19.el7_2.4                                             \n  libssh2.x86_64 0:1.4.3-10.el7_2.1                                             \n  libxml2.x86_64 0:2.9.1-6.el7_2.2                                              \n  logrotate.x86_64 0:3.8.6-7.el7_2                                              \n  nfs-utils.x86_64 1:1.3.0-0.21.el7_2                                           \n  nss.x86_64 0:3.19.1-19.el7_2                                                  \n  nss-sysinit.x86_64 0:3.19.1-19.el7_2                                          \n  nss-tools.x86_64 0:3.19.1-19.el7_2                                            \n  nss-util.x86_64 0:3.19.1-9.el7_2                                              \n  numactl-libs.x86_64 0:2.0.9-6.el7_2                                           \n  openssh.x86_64 0:6.6.1p1-23.el7_2                                             \n  openssh-clients.x86_64 0:6.6.1p1-23.el7_2                                     \n  openssh-server.x86_64 0:6.6.1p1-23.el7_2                                      \n  openssl.x86_64 1:1.0.1e-51.el7_2.4                                            \n  openssl-libs.x86_64 1:1.0.1e-51.el7_2.4                                       \n  polkit.x86_64 0:0.112-6.el7_2                                                 \n  procps-ng.x86_64 0:3.3.10-5.el7_2                                             \n  python-perf.x86_64 0:3.10.0-327.10.1.el7                                      \n  python-pyudev.noarch 0:0.15-7.el7_2.1                                         \n  rdma.noarch 0:7.2_4.1_rc6-2.el7                                               \n  rpcbind.x86_64 0:0.2.0-33.el7_2                                               \n  selinux-policy.noarch 0:3.13.1-60.el7_2.3                                     \n  selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3                            \n  systemd.x86_64 0:219-19.el7_2.4                                               \n  systemd-libs.x86_64 0:219-19.el7_2.4                                          \n  systemd-sysv.x86_64 0:219-19.el7_2.4                                          \n  tuned.noarch 0:2.5.1-4.el7_2.2                                                \n  tzdata.noarch 0:2016a-1.el7                                                   \n\nComplete!\n"]}
2016-03-15 11:52:50,199 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/updates/packages/bind-license-9.9.4-29.el7_2.2.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY\nImporting GPG key 0xF4A80EB5:\n Userid     : \"CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>\"\n Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5\n Package    : centos-release-7-2.1511.el7.centos.2.10.x86_64 (installed)\n From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.syn.co.il\n * extras: centos.syn.co.il\n * updates: centos.syn.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7 will be updated\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2 will be an update\n---> Package bind-license.noarch 32:9.9.4-29.el7 will be updated\n---> Package bind-license.noarch 32:9.9.4-29.el7_2.2 will be an update\n---> Package ca-certificates.noarch 0:2015.2.4-71.el7 will be updated\n---> Package ca-certificates.noarch 0:2015.2.6-70.1.el7_2 will be an update\n---> Package coreutils.x86_64 0:8.22-15.el7 will be updated\n---> Package coreutils.x86_64 0:8.22-15.el7_2.1 will be an update\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-19.2.el7 will be updated\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2 will be an update\n---> Package device-mapper.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package dracut.x86_64 0:033-359.el7 will be updated\n---> Package dracut.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-generic.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-generic.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-rescue.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-rescue.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-network.x86_64 0:033-359.el7 will be updated\n---> Package dracut-network.x86_64 0:033-360.el7_2 will be an update\n---> Package glibc.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc-common.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package gmp.x86_64 1:6.0.0-11.el7 will be updated\n---> Package gmp.x86_64 1:6.0.0-12.el7_1 will be an update\n---> Package gnutls.x86_64 0:3.3.8-12.el7_1.1 will be updated\n---> Package gnutls.x86_64 0:3.3.8-14.el7_2 will be an update\n---> Package grub2.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package grub2-tools.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2-tools.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package kernel.x86_64 0:3.10.0-327.10.1.el7 will be installed\n--> Processing Dependency: linux-firmware >= 20150904-43 for package: kernel-3.10.0-327.10.1.el7.x86_64\n---> Package kernel-tools.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7 will be updated\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7_2.1 will be an update\n---> Package libgudev1.x86_64 0:219-19.el7 will be updated\n---> Package libgudev1.x86_64 0:219-19.el7_2.4 will be an update\n---> Package libssh2.x86_64 0:1.4.3-10.el7 will be updated\n---> Package libssh2.x86_64 0:1.4.3-10.el7_2.1 will be an update\n---> Package libxml2.x86_64 0:2.9.1-5.el7_1.2 will be updated\n---> Package libxml2.x86_64 0:2.9.1-6.el7_2.2 will be an update\n---> Package logrotate.x86_64 0:3.8.6-6.el7 will be updated\n---> Package logrotate.x86_64 0:3.8.6-7.el7_2 will be an update\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7 will be updated\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7_2 will be an update\n---> Package nss.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-sysinit.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-sysinit.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-tools.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-tools.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-util.x86_64 0:3.19.1-4.el7_1 will be updated\n---> Package nss-util.x86_64 0:3.19.1-9.el7_2 will be an update\n---> Package numactl-libs.x86_64 0:2.0.9-5.el7_1 will be updated\n---> Package numactl-libs.x86_64 0:2.0.9-6.el7_2 will be an update\n---> Package openssh.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-clients.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-clients.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-server.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-server.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssl.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package openssl-libs.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl-libs.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package polkit.x86_64 0:0.112-5.el7 will be updated\n---> Package polkit.x86_64 0:0.112-6.el7_2 will be an update\n---> Package procps-ng.x86_64 0:3.3.10-3.el7 will be updated\n---> Package procps-ng.x86_64 0:3.3.10-5.el7_2 will be an update\n---> Package python-perf.x86_64 0:3.10.0-327.el7 will be updated\n---> Package python-perf.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package python-pyudev.noarch 0:0.15-7.el7 will be updated\n---> Package python-pyudev.noarch 0:0.15-7.el7_2.1 will be an update\n---> Package rdma.noarch 0:7.2_4.1_rc6-1.el7 will be updated\n---> Package rdma.noarch 0:7.2_4.1_rc6-2.el7 will be an update\n---> Package rpcbind.x86_64 0:0.2.0-32.el7 will be updated\n---> Package rpcbind.x86_64 0:0.2.0-33.el7_2 will be an update\n---> Package selinux-policy.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package systemd.x86_64 0:219-19.el7 will be updated\n---> Package systemd.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-libs.x86_64 0:219-19.el7 will be updated\n---> Package systemd-libs.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-sysv.x86_64 0:219-19.el7 will be updated\n---> Package systemd-sysv.x86_64 0:219-19.el7_2.4 will be an update\n---> Package tuned.noarch 0:2.5.1-4.el7 will be updated\n---> Package tuned.noarch 0:2.5.1-4.el7_2.2 will be an update\n---> Package tzdata.noarch 0:2015g-1.el7 will be updated\n---> Package tzdata.noarch 0:2016a-1.el7 will be an update\n--> Running transaction check\n---> Package linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch    Version                        Repository\n                                                                           Size\n================================================================================\nInstalling:\n kernel                   x86_64  3.10.0-327.10.1.el7            updates   33 M\nUpdating:\n bind-libs-lite           x86_64  32:9.9.4-29.el7_2.2            updates  724 k\n bind-license             noarch  32:9.9.4-29.el7_2.2            updates   82 k\n ca-certificates          noarch  2015.2.6-70.1.el7_2            updates  428 k\n coreutils                x86_64  8.22-15.el7_2.1                updates  3.2 M\n cyrus-sasl-lib           x86_64  2.1.26-20.el7_2                updates  155 k\n device-mapper            x86_64  7:1.02.107-5.el7_2.1           updates  252 k\n device-mapper-libs       x86_64  7:1.02.107-5.el7_2.1           updates  304 k\n dracut                   x86_64  033-360.el7_2                  updates  311 k\n dracut-config-generic    x86_64  033-360.el7_2                  updates   48 k\n dracut-config-rescue     x86_64  033-360.el7_2                  updates   49 k\n dracut-network           x86_64  033-360.el7_2                  updates   90 k\n glibc                    x86_64  2.17-106.el7_2.4               updates  3.6 M\n glibc-common             x86_64  2.17-106.el7_2.4               updates   11 M\n gmp                      x86_64  1:6.0.0-12.el7_1               updates  280 k\n gnutls                   x86_64  3.3.8-14.el7_2                 updates  662 k\n grub2                    x86_64  1:2.02-0.34.el7.centos         updates  1.5 M\n grub2-tools              x86_64  1:2.02-0.34.el7.centos         updates  3.3 M\n kernel-tools             x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n kernel-tools-libs        x86_64  3.10.0-327.10.1.el7            updates  2.3 M\n kexec-tools              x86_64  2.0.7-38.el7_2.1               updates  306 k\n libgudev1                x86_64  219-19.el7_2.4                 updates   65 k\n libssh2                  x86_64  1.4.3-10.el7_2.1               updates  134 k\n libxml2                  x86_64  2.9.1-6.el7_2.2                updates  666 k\n logrotate                x86_64  3.8.6-7.el7_2                  updates   66 k\n nfs-utils                x86_64  1:1.3.0-0.21.el7_2             updates  371 k\n nss                      x86_64  3.19.1-19.el7_2                updates  852 k\n nss-sysinit              x86_64  3.19.1-19.el7_2                updates   54 k\n nss-tools                x86_64  3.19.1-19.el7_2                updates  484 k\n nss-util                 x86_64  3.19.1-9.el7_2                 updates   71 k\n numactl-libs             x86_64  2.0.9-6.el7_2                  updates   29 k\n openssh                  x86_64  6.6.1p1-23.el7_2               updates  435 k\n openssh-clients          x86_64  6.6.1p1-23.el7_2               updates  639 k\n openssh-server           x86_64  6.6.1p1-23.el7_2               updates  436 k\n openssl                  x86_64  1:1.0.1e-51.el7_2.4            updates  711 k\n openssl-libs             x86_64  1:1.0.1e-51.el7_2.4            updates  951 k\n polkit                   x86_64  0.112-6.el7_2                  updates  166 k\n procps-ng                x86_64  3.3.10-5.el7_2                 updates  287 k\n python-perf              x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n python-pyudev            noarch  0.15-7.el7_2.1                 updates   54 k\n rdma                     noarch  7.2_4.1_rc6-2.el7              updates   28 k\n rpcbind                  x86_64  0.2.0-33.el7_2                 updates   57 k\n selinux-policy           noarch  3.13.1-60.el7_2.3              updates  375 k\n selinux-policy-targeted  noarch  3.13.1-60.el7_2.3              updates  3.9 M\n systemd                  x86_64  219-19.el7_2.4                 updates  5.1 M\n systemd-libs             x86_64  219-19.el7_2.4                 updates  357 k\n systemd-sysv             x86_64  219-19.el7_2.4                 updates   52 k\n tuned                    noarch  2.5.1-4.el7_2.2                updates  193 k\n tzdata                   noarch  2016a-1.el7                    updates  431 k\nInstalling for dependencies:\n linux-firmware           noarch  20150904-43.git6ebf5d5.el7     base      24 M\n\nTransaction Summary\n================================================================================\nInstall   1 Package  (+1 Dependent package)\nUpgrade  48 Packages\n\nTotal download size: 108 M\nDownloading packages:\nDelta RPMs disabled because /usr/bin/applydeltarpm not installed.\nPublic key for bind-license-9.9.4-29.el7_2.2.noarch.rpm is not installed\nPublic key for linux-firmware-20150904-43.git6ebf5d5.el7.noarch.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              5.6 MB/s | 108 MB  00:19     \nRetrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Updating   : tzdata-2016a-1.el7.noarch                                   1/98 \n  Updating   : glibc-2.17-106.el7_2.4.x86_64                               2/98 \n  Updating   : glibc-common-2.17-106.el7_2.4.x86_64                        3/98 \n  Updating   : systemd-libs-219-19.el7_2.4.x86_64                          4/98 \n  Updating   : nss-util-3.19.1-9.el7_2.x86_64                              5/98 \n  Updating   : 1:gmp-6.0.0-12.el7_1.x86_64                                 6/98 \n  Updating   : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                     7/98 \n  Updating   : coreutils-8.22-15.el7_2.1.x86_64                            8/98 \n  Updating   : ca-certificates-2015.2.6-70.1.el7_2.noarch                  9/98 \n  Updating   : systemd-219-19.el7_2.4.x86_64                              10/98 \nwarning: /etc/systemd/logind.conf created as /etc/systemd/logind.conf.rpmnew\n  Updating   : openssh-6.6.1p1-23.el7_2.x86_64                            11/98 \n  Updating   : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             12/98 \n  Updating   : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  13/98 \n  Updating   : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  14/98 \n  Updating   : systemd-sysv-219-19.el7_2.4.x86_64                         15/98 \n  Updating   : rpcbind-0.2.0-33.el7_2.x86_64                              16/98 \n  Updating   : selinux-policy-3.13.1-60.el7_2.3.noarch                    17/98 \n  Updating   : nss-3.19.1-19.el7_2.x86_64                                 18/98 \n  Updating   : nss-sysinit-3.19.1-19.el7_2.x86_64                         19/98 \n  Updating   : procps-ng-3.3.10-5.el7_2.x86_64                            20/98 \n  Updating   : dracut-033-360.el7_2.x86_64                                21/98 \n  Updating   : dracut-network-033-360.el7_2.x86_64                        22/98 \n  Updating   : python-pyudev-0.15-7.el7_2.1.noarch                        23/98 \n  Updating   : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               24/98 \n  Updating   : python-perf-3.10.0-327.10.1.el7.x86_64                     25/98 \n  Updating   : libxml2-2.9.1-6.el7_2.2.x86_64                             26/98 \n  Installing : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           27/98 \n  Updating   : 32:bind-license-9.9.4-29.el7_2.2.noarch                    28/98 \n  Updating   : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  29/98 \n  Installing : kernel-3.10.0-327.10.1.el7.x86_64                          30/98 \n  Updating   : tuned-2.5.1-4.el7_2.2.noarch                               31/98 \n  Updating   : kernel-tools-3.10.0-327.10.1.el7.x86_64                    32/98 \n  Updating   : kexec-tools-2.0.7-38.el7_2.1.x86_64                        33/98 \n  Updating   : dracut-config-rescue-033-360.el7_2.x86_64                  34/98 \n  Updating   : 1:grub2-2.02-0.34.el7.centos.x86_64                        35/98 \n  Updating   : dracut-config-generic-033-360.el7_2.x86_64                 36/98 \n  Updating   : rdma-7.2_4.1_rc6-2.el7.noarch                              37/98 \n  Updating   : nss-tools-3.19.1-19.el7_2.x86_64                           38/98 \n  Updating   : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           39/98 \n  Updating   : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        40/98 \n  Updating   : openssh-clients-6.6.1p1-23.el7_2.x86_64                    41/98 \n  Updating   : openssh-server-6.6.1p1-23.el7_2.x86_64                     42/98 \n  Updating   : polkit-0.112-6.el7_2.x86_64                                43/98 \n  Updating   : logrotate-3.8.6-7.el7_2.x86_64                             44/98 \n  Updating   : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         45/98 \n  Updating   : libssh2-1.4.3-10.el7_2.1.x86_64                            46/98 \n  Updating   : gnutls-3.3.8-14.el7_2.x86_64                               47/98 \n  Updating   : libgudev1-219-19.el7_2.4.x86_64                            48/98 \n  Updating   : numactl-libs-2.0.9-6.el7_2.x86_64                          49/98 \n  Updating   : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      50/98 \n  Cleanup    : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          51/98 \n  Cleanup    : rpcbind-0.2.0-32.el7.x86_64                                52/98 \n  Cleanup    : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      53/98 \n  Cleanup    : nss-tools-3.19.1-18.el7.x86_64                             54/98 \n  Cleanup    : nss-sysinit-3.19.1-18.el7.x86_64                           55/98 \n  Cleanup    : nss-3.19.1-18.el7.x86_64                                   56/98 \n  Cleanup    : 1:openssl-1.0.1e-42.el7.9.x86_64                           57/98 \n  Cleanup    : openssh-server-6.6.1p1-22.el7.x86_64                       58/98 \n  Cleanup    : kexec-tools-2.0.7-38.el7.x86_64                            59/98 \n  Cleanup    : openssh-clients-6.6.1p1-22.el7.x86_64                      60/98 \n  Cleanup    : polkit-0.112-5.el7.x86_64                                  61/98 \n  Cleanup    : kernel-tools-3.10.0-327.el7.x86_64                         62/98 \n  Cleanup    : libgudev1-219-19.el7.x86_64                                63/98 \n  Cleanup    : tuned-2.5.1-4.el7.noarch                                   64/98 \n  Cleanup    : openssh-6.6.1p1-22.el7.x86_64                              65/98 \n  Cleanup    : libssh2-1.4.3-10.el7.x86_64                                66/98 \n  Cleanup    : gnutls-3.3.8-12.el7_1.1.x86_64                             67/98 \n  Cleanup    : rdma-7.2_4.1_rc6-1.el7.noarch                              68/98 \n  Cleanup    : selinux-policy-targeted-3.13.1-60.el7.noarch               69/98 \n  Cleanup    : 1:grub2-2.02-0.29.el7.centos.x86_64                        70/98 \n  Cleanup    : selinux-policy-3.13.1-60.el7.noarch                        71/98 \n  Cleanup    : dracut-network-033-359.el7.x86_64                          72/98 \n  Cleanup    : systemd-sysv-219-19.el7.x86_64                             73/98 \n  Cleanup    : dracut-config-generic-033-359.el7.x86_64                   74/98 \n  Cleanup    : dracut-config-rescue-033-359.el7.x86_64                    75/98 \n  Cleanup    : dracut-033-359.el7.x86_64                                  76/98 \n  Cleanup    : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  77/98 \n  Cleanup    : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 78/98 \n  Cleanup    : 7:device-mapper-1.02.107-5.el7.x86_64                      79/98 \n  Cleanup    : systemd-219-19.el7.x86_64                                  80/98 \n  Cleanup    : procps-ng-3.3.10-3.el7.x86_64                              81/98 \n  Cleanup    : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Cleanup    : ca-certificates-2015.2.4-71.el7.noarch                     83/98 \n  Cleanup    : coreutils-8.22-15.el7.x86_64                               84/98 \n  Cleanup    : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Cleanup    : 1:gmp-6.0.0-11.el7.x86_64                                  86/98 \n  Cleanup    : systemd-libs-219-19.el7.x86_64                             87/98 \n  Cleanup    : python-perf-3.10.0-327.el7.x86_64                          88/98 \n  Cleanup    : kernel-tools-libs-3.10.0-327.el7.x86_64                    89/98 \n  Cleanup    : nss-util-3.19.1-4.el7_1.x86_64                             90/98 \n  Cleanup    : libxml2-2.9.1-5.el7_1.2.x86_64                             91/98 \n  Cleanup    : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      92/98 \n  Cleanup    : numactl-libs-2.0.9-5.el7_1.x86_64                          93/98 \n  Cleanup    : python-pyudev-0.15-7.el7.noarch                            94/98 \n  Cleanup    : 32:bind-license-9.9.4-29.el7.noarch                        95/98 \n  Cleanup    : glibc-2.17-105.el7.x86_64                                  96/98 \n  Cleanup    : glibc-common-2.17-105.el7.x86_64                           97/98 \n  Cleanup    : tzdata-2015g-1.el7.noarch                                  98/98 \n  Verifying  : glibc-common-2.17-106.el7_2.4.x86_64                        1/98 \n  Verifying  : systemd-libs-219-19.el7_2.4.x86_64                          2/98 \n  Verifying  : nss-3.19.1-19.el7_2.x86_64                                  3/98 \n  Verifying  : openssh-clients-6.6.1p1-23.el7_2.x86_64                     4/98 \n  Verifying  : gnutls-3.3.8-14.el7_2.x86_64                                5/98 \n  Verifying  : ca-certificates-2015.2.6-70.1.el7_2.noarch                  6/98 \n  Verifying  : 1:gmp-6.0.0-12.el7_1.x86_64                                 7/98 \n  Verifying  : libgudev1-219-19.el7_2.4.x86_64                             8/98 \n  Verifying  : selinux-policy-3.13.1-60.el7_2.3.noarch                     9/98 \n  Verifying  : numactl-libs-2.0.9-6.el7_2.x86_64                          10/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  11/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               12/98 \n  Verifying  : kernel-3.10.0-327.10.1.el7.x86_64                          13/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7_2.2.noarch                    14/98 \n  Verifying  : coreutils-8.22-15.el7_2.1.x86_64                           15/98 \n  Verifying  : kernel-tools-3.10.0-327.10.1.el7.x86_64                    16/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             17/98 \n  Verifying  : dracut-config-rescue-033-360.el7_2.x86_64                  18/98 \n  Verifying  : dracut-network-033-360.el7_2.x86_64                        19/98 \n  Verifying  : libssh2-1.4.3-10.el7_2.1.x86_64                            20/98 \n  Verifying  : tuned-2.5.1-4.el7_2.2.noarch                               21/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      22/98 \n  Verifying  : rpcbind-0.2.0-33.el7_2.x86_64                              23/98 \n  Verifying  : procps-ng-3.3.10-5.el7_2.x86_64                            24/98 \n  Verifying  : 1:grub2-2.02-0.34.el7.centos.x86_64                        25/98 \n  Verifying  : openssh-server-6.6.1p1-23.el7_2.x86_64                     26/98 \n  Verifying  : dracut-config-generic-033-360.el7_2.x86_64                 27/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        28/98 \n  Verifying  : python-perf-3.10.0-327.10.1.el7.x86_64                     29/98 \n  Verifying  : kexec-tools-2.0.7-38.el7_2.1.x86_64                        30/98 \n  Verifying  : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                    31/98 \n  Verifying  : logrotate-3.8.6-7.el7_2.x86_64                             32/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           33/98 \n  Verifying  : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  34/98 \n  Verifying  : libxml2-2.9.1-6.el7_2.2.x86_64                             35/98 \n  Verifying  : openssh-6.6.1p1-23.el7_2.x86_64                            36/98 \n  Verifying  : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           37/98 \n  Verifying  : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         38/98 \n  Verifying  : nss-sysinit-3.19.1-19.el7_2.x86_64                         39/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  40/98 \n  Verifying  : python-pyudev-0.15-7.el7_2.1.noarch                        41/98 \n  Verifying  : tzdata-2016a-1.el7.noarch                                  42/98 \n  Verifying  : systemd-sysv-219-19.el7_2.4.x86_64                         43/98 \n  Verifying  : nss-tools-3.19.1-19.el7_2.x86_64                           44/98 \n  Verifying  : rdma-7.2_4.1_rc6-2.el7.noarch                              45/98 \n  Verifying  : nss-util-3.19.1-9.el7_2.x86_64                             46/98 \n  Verifying  : dracut-033-360.el7_2.x86_64                                47/98 \n  Verifying  : polkit-0.112-6.el7_2.x86_64                                48/98 \n  Verifying  : systemd-219-19.el7_2.4.x86_64                              49/98 \n  Verifying  : glibc-2.17-106.el7_2.4.x86_64                              50/98 \n  Verifying  : dracut-config-rescue-033-359.el7.x86_64                    51/98 \n  Verifying  : gnutls-3.3.8-12.el7_1.1.x86_64                             52/98 \n  Verifying  : openssh-6.6.1p1-22.el7.x86_64                              53/98 \n  Verifying  : glibc-common-2.17-105.el7.x86_64                           54/98 \n  Verifying  : dracut-network-033-359.el7.x86_64                          55/98 \n  Verifying  : selinux-policy-3.13.1-60.el7.noarch                        56/98 \n  Verifying  : systemd-libs-219-19.el7.x86_64                             57/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          58/98 \n  Verifying  : python-pyudev-0.15-7.el7.noarch                            59/98 \n  Verifying  : nss-util-3.19.1-4.el7_1.x86_64                             60/98 \n  Verifying  : rdma-7.2_4.1_rc6-1.el7.noarch                              61/98 \n  Verifying  : kexec-tools-2.0.7-38.el7.x86_64                            62/98 \n  Verifying  : rpcbind-0.2.0-32.el7.x86_64                                63/98 \n  Verifying  : kernel-tools-3.10.0-327.el7.x86_64                         64/98 \n  Verifying  : procps-ng-3.3.10-3.el7.x86_64                              65/98 \n  Verifying  : dracut-config-generic-033-359.el7.x86_64                   66/98 \n  Verifying  : tzdata-2015g-1.el7.noarch                                  67/98 \n  Verifying  : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  68/98 \n  Verifying  : systemd-sysv-219-19.el7.x86_64                             69/98 \n  Verifying  : libgudev1-219-19.el7.x86_64                                70/98 \n  Verifying  : nss-sysinit-3.19.1-18.el7.x86_64                           71/98 \n  Verifying  : 1:gmp-6.0.0-11.el7.x86_64                                  72/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.el7.x86_64                    73/98 \n  Verifying  : glibc-2.17-105.el7.x86_64                                  74/98 \n  Verifying  : 1:grub2-2.02-0.29.el7.centos.x86_64                        75/98 \n  Verifying  : ca-certificates-2015.2.4-71.el7.noarch                     76/98 \n  Verifying  : 1:openssl-1.0.1e-42.el7.9.x86_64                           77/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7.noarch                        78/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7.noarch               79/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      80/98 \n  Verifying  : nss-tools-3.19.1-18.el7.x86_64                             81/98 \n  Verifying  : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Verifying  : polkit-0.112-5.el7.x86_64                                  83/98 \n  Verifying  : numactl-libs-2.0.9-5.el7_1.x86_64                          84/98 \n  Verifying  : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      86/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7.x86_64                      87/98 \n  Verifying  : coreutils-8.22-15.el7.x86_64                               88/98 \n  Verifying  : tuned-2.5.1-4.el7.noarch                                   89/98 \n  Verifying  : nss-3.19.1-18.el7.x86_64                                   90/98 \n  Verifying  : openssh-clients-6.6.1p1-22.el7.x86_64                      91/98 \n  Verifying  : systemd-219-19.el7.x86_64                                  92/98 \n  Verifying  : dracut-033-359.el7.x86_64                                  93/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 94/98 \n  Verifying  : openssh-server-6.6.1p1-22.el7.x86_64                       95/98 \n  Verifying  : libssh2-1.4.3-10.el7.x86_64                                96/98 \n  Verifying  : libxml2-2.9.1-5.el7_1.2.x86_64                             97/98 \n  Verifying  : python-perf-3.10.0-327.el7.x86_64                          98/98 \n\nInstalled:\n  kernel.x86_64 0:3.10.0-327.10.1.el7                                           \n\nDependency Installed:\n  linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7                            \n\nUpdated:\n  bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2                                     \n  bind-license.noarch 32:9.9.4-29.el7_2.2                                       \n  ca-certificates.noarch 0:2015.2.6-70.1.el7_2                                  \n  coreutils.x86_64 0:8.22-15.el7_2.1                                            \n  cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2                                       \n  device-mapper.x86_64 7:1.02.107-5.el7_2.1                                     \n  device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1                                \n  dracut.x86_64 0:033-360.el7_2                                                 \n  dracut-config-generic.x86_64 0:033-360.el7_2                                  \n  dracut-config-rescue.x86_64 0:033-360.el7_2                                   \n  dracut-network.x86_64 0:033-360.el7_2                                         \n  glibc.x86_64 0:2.17-106.el7_2.4                                               \n  glibc-common.x86_64 0:2.17-106.el7_2.4                                        \n  gmp.x86_64 1:6.0.0-12.el7_1                                                   \n  gnutls.x86_64 0:3.3.8-14.el7_2                                                \n  grub2.x86_64 1:2.02-0.34.el7.centos                                           \n  grub2-tools.x86_64 1:2.02-0.34.el7.centos                                     \n  kernel-tools.x86_64 0:3.10.0-327.10.1.el7                                     \n  kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7                                \n  kexec-tools.x86_64 0:2.0.7-38.el7_2.1                                         \n  libgudev1.x86_64 0:219-19.el7_2.4                                             \n  libssh2.x86_64 0:1.4.3-10.el7_2.1                                             \n  libxml2.x86_64 0:2.9.1-6.el7_2.2                                              \n  logrotate.x86_64 0:3.8.6-7.el7_2                                              \n  nfs-utils.x86_64 1:1.3.0-0.21.el7_2                                           \n  nss.x86_64 0:3.19.1-19.el7_2                                                  \n  nss-sysinit.x86_64 0:3.19.1-19.el7_2                                          \n  nss-tools.x86_64 0:3.19.1-19.el7_2                                            \n  nss-util.x86_64 0:3.19.1-9.el7_2                                              \n  numactl-libs.x86_64 0:2.0.9-6.el7_2                                           \n  openssh.x86_64 0:6.6.1p1-23.el7_2                                             \n  openssh-clients.x86_64 0:6.6.1p1-23.el7_2                                     \n  openssh-server.x86_64 0:6.6.1p1-23.el7_2                                      \n  openssl.x86_64 1:1.0.1e-51.el7_2.4                                            \n  openssl-libs.x86_64 1:1.0.1e-51.el7_2.4                                       \n  polkit.x86_64 0:0.112-6.el7_2                                                 \n  procps-ng.x86_64 0:3.3.10-5.el7_2                                             \n  python-perf.x86_64 0:3.10.0-327.10.1.el7                                      \n  python-pyudev.noarch 0:0.15-7.el7_2.1                                         \n  rdma.noarch 0:7.2_4.1_rc6-2.el7                                               \n  rpcbind.x86_64 0:0.2.0-33.el7_2                                               \n  selinux-policy.noarch 0:3.13.1-60.el7_2.3                                     \n  selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3                            \n  systemd.x86_64 0:219-19.el7_2.4                                               \n  systemd-libs.x86_64 0:219-19.el7_2.4                                          \n  systemd-sysv.x86_64 0:219-19.el7_2.4                                          \n  tuned.noarch 0:2.5.1-4.el7_2.2                                                \n  tzdata.noarch 0:2016a-1.el7                                                   \n\nComplete!\n"]}
2016-03-15 11:52:50,959 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/updates/packages/bind-license-9.9.4-29.el7_2.2.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY\nImporting GPG key 0xF4A80EB5:\n Userid     : \"CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>\"\n Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5\n Package    : centos-release-7-2.1511.el7.centos.2.10.x86_64 (installed)\n From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.nonstop.co.il\n * extras: mirror.nonstop.co.il\n * updates: mirror.nonstop.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7 will be updated\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2 will be an update\n---> Package bind-license.noarch 32:9.9.4-29.el7 will be updated\n---> Package bind-license.noarch 32:9.9.4-29.el7_2.2 will be an update\n---> Package ca-certificates.noarch 0:2015.2.4-71.el7 will be updated\n---> Package ca-certificates.noarch 0:2015.2.6-70.1.el7_2 will be an update\n---> Package coreutils.x86_64 0:8.22-15.el7 will be updated\n---> Package coreutils.x86_64 0:8.22-15.el7_2.1 will be an update\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-19.2.el7 will be updated\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2 will be an update\n---> Package device-mapper.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1 will be an update\n---> Package dracut.x86_64 0:033-359.el7 will be updated\n---> Package dracut.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-generic.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-generic.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-config-rescue.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-rescue.x86_64 0:033-360.el7_2 will be an update\n---> Package dracut-network.x86_64 0:033-359.el7 will be updated\n---> Package dracut-network.x86_64 0:033-360.el7_2 will be an update\n---> Package glibc.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated\n---> Package glibc-common.x86_64 0:2.17-106.el7_2.4 will be an update\n---> Package gmp.x86_64 1:6.0.0-11.el7 will be updated\n---> Package gmp.x86_64 1:6.0.0-12.el7_1 will be an update\n---> Package gnutls.x86_64 0:3.3.8-12.el7_1.1 will be updated\n---> Package gnutls.x86_64 0:3.3.8-14.el7_2 will be an update\n---> Package grub2.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package grub2-tools.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2-tools.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package kernel.x86_64 0:3.10.0-327.10.1.el7 will be installed\n--> Processing Dependency: linux-firmware >= 20150904-43 for package: kernel-3.10.0-327.10.1.el7.x86_64\n---> Package kernel-tools.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7 will be updated\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7_2.1 will be an update\n---> Package libgudev1.x86_64 0:219-19.el7 will be updated\n---> Package libgudev1.x86_64 0:219-19.el7_2.4 will be an update\n---> Package libssh2.x86_64 0:1.4.3-10.el7 will be updated\n---> Package libssh2.x86_64 0:1.4.3-10.el7_2.1 will be an update\n---> Package libxml2.x86_64 0:2.9.1-5.el7_1.2 will be updated\n---> Package libxml2.x86_64 0:2.9.1-6.el7_2.2 will be an update\n---> Package logrotate.x86_64 0:3.8.6-6.el7 will be updated\n---> Package logrotate.x86_64 0:3.8.6-7.el7_2 will be an update\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7 will be updated\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7_2 will be an update\n---> Package nss.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-sysinit.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-sysinit.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-tools.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-tools.x86_64 0:3.19.1-19.el7_2 will be an update\n---> Package nss-util.x86_64 0:3.19.1-4.el7_1 will be updated\n---> Package nss-util.x86_64 0:3.19.1-9.el7_2 will be an update\n---> Package numactl-libs.x86_64 0:2.0.9-5.el7_1 will be updated\n---> Package numactl-libs.x86_64 0:2.0.9-6.el7_2 will be an update\n---> Package openssh.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-clients.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-clients.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssh-server.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-server.x86_64 0:6.6.1p1-23.el7_2 will be an update\n---> Package openssl.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package openssl-libs.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl-libs.x86_64 1:1.0.1e-51.el7_2.4 will be an update\n---> Package polkit.x86_64 0:0.112-5.el7 will be updated\n---> Package polkit.x86_64 0:0.112-6.el7_2 will be an update\n---> Package procps-ng.x86_64 0:3.3.10-3.el7 will be updated\n---> Package procps-ng.x86_64 0:3.3.10-5.el7_2 will be an update\n---> Package python-perf.x86_64 0:3.10.0-327.el7 will be updated\n---> Package python-perf.x86_64 0:3.10.0-327.10.1.el7 will be an update\n---> Package python-pyudev.noarch 0:0.15-7.el7 will be updated\n---> Package python-pyudev.noarch 0:0.15-7.el7_2.1 will be an update\n---> Package rdma.noarch 0:7.2_4.1_rc6-1.el7 will be updated\n---> Package rdma.noarch 0:7.2_4.1_rc6-2.el7 will be an update\n---> Package rpcbind.x86_64 0:0.2.0-32.el7 will be updated\n---> Package rpcbind.x86_64 0:0.2.0-33.el7_2 will be an update\n---> Package selinux-policy.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3 will be an update\n---> Package systemd.x86_64 0:219-19.el7 will be updated\n---> Package systemd.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-libs.x86_64 0:219-19.el7 will be updated\n---> Package systemd-libs.x86_64 0:219-19.el7_2.4 will be an update\n---> Package systemd-sysv.x86_64 0:219-19.el7 will be updated\n---> Package systemd-sysv.x86_64 0:219-19.el7_2.4 will be an update\n---> Package tuned.noarch 0:2.5.1-4.el7 will be updated\n---> Package tuned.noarch 0:2.5.1-4.el7_2.2 will be an update\n---> Package tzdata.noarch 0:2015g-1.el7 will be updated\n---> Package tzdata.noarch 0:2016a-1.el7 will be an update\n--> Running transaction check\n---> Package linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch    Version                        Repository\n                                                                           Size\n================================================================================\nInstalling:\n kernel                   x86_64  3.10.0-327.10.1.el7            updates   33 M\nUpdating:\n bind-libs-lite           x86_64  32:9.9.4-29.el7_2.2            updates  724 k\n bind-license             noarch  32:9.9.4-29.el7_2.2            updates   82 k\n ca-certificates          noarch  2015.2.6-70.1.el7_2            updates  428 k\n coreutils                x86_64  8.22-15.el7_2.1                updates  3.2 M\n cyrus-sasl-lib           x86_64  2.1.26-20.el7_2                updates  155 k\n device-mapper            x86_64  7:1.02.107-5.el7_2.1           updates  252 k\n device-mapper-libs       x86_64  7:1.02.107-5.el7_2.1           updates  304 k\n dracut                   x86_64  033-360.el7_2                  updates  311 k\n dracut-config-generic    x86_64  033-360.el7_2                  updates   48 k\n dracut-config-rescue     x86_64  033-360.el7_2                  updates   49 k\n dracut-network           x86_64  033-360.el7_2                  updates   90 k\n glibc                    x86_64  2.17-106.el7_2.4               updates  3.6 M\n glibc-common             x86_64  2.17-106.el7_2.4               updates   11 M\n gmp                      x86_64  1:6.0.0-12.el7_1               updates  280 k\n gnutls                   x86_64  3.3.8-14.el7_2                 updates  662 k\n grub2                    x86_64  1:2.02-0.34.el7.centos         updates  1.5 M\n grub2-tools              x86_64  1:2.02-0.34.el7.centos         updates  3.3 M\n kernel-tools             x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n kernel-tools-libs        x86_64  3.10.0-327.10.1.el7            updates  2.3 M\n kexec-tools              x86_64  2.0.7-38.el7_2.1               updates  306 k\n libgudev1                x86_64  219-19.el7_2.4                 updates   65 k\n libssh2                  x86_64  1.4.3-10.el7_2.1               updates  134 k\n libxml2                  x86_64  2.9.1-6.el7_2.2                updates  666 k\n logrotate                x86_64  3.8.6-7.el7_2                  updates   66 k\n nfs-utils                x86_64  1:1.3.0-0.21.el7_2             updates  371 k\n nss                      x86_64  3.19.1-19.el7_2                updates  852 k\n nss-sysinit              x86_64  3.19.1-19.el7_2                updates   54 k\n nss-tools                x86_64  3.19.1-19.el7_2                updates  484 k\n nss-util                 x86_64  3.19.1-9.el7_2                 updates   71 k\n numactl-libs             x86_64  2.0.9-6.el7_2                  updates   29 k\n openssh                  x86_64  6.6.1p1-23.el7_2               updates  435 k\n openssh-clients          x86_64  6.6.1p1-23.el7_2               updates  639 k\n openssh-server           x86_64  6.6.1p1-23.el7_2               updates  436 k\n openssl                  x86_64  1:1.0.1e-51.el7_2.4            updates  711 k\n openssl-libs             x86_64  1:1.0.1e-51.el7_2.4            updates  951 k\n polkit                   x86_64  0.112-6.el7_2                  updates  166 k\n procps-ng                x86_64  3.3.10-5.el7_2                 updates  287 k\n python-perf              x86_64  3.10.0-327.10.1.el7            updates  2.4 M\n python-pyudev            noarch  0.15-7.el7_2.1                 updates   54 k\n rdma                     noarch  7.2_4.1_rc6-2.el7              updates   28 k\n rpcbind                  x86_64  0.2.0-33.el7_2                 updates   57 k\n selinux-policy           noarch  3.13.1-60.el7_2.3              updates  375 k\n selinux-policy-targeted  noarch  3.13.1-60.el7_2.3              updates  3.9 M\n systemd                  x86_64  219-19.el7_2.4                 updates  5.1 M\n systemd-libs             x86_64  219-19.el7_2.4                 updates  357 k\n systemd-sysv             x86_64  219-19.el7_2.4                 updates   52 k\n tuned                    noarch  2.5.1-4.el7_2.2                updates  193 k\n tzdata                   noarch  2016a-1.el7                    updates  431 k\nInstalling for dependencies:\n linux-firmware           noarch  20150904-43.git6ebf5d5.el7     base      24 M\n\nTransaction Summary\n================================================================================\nInstall   1 Package  (+1 Dependent package)\nUpgrade  48 Packages\n\nTotal download size: 108 M\nDownloading packages:\nDelta RPMs disabled because /usr/bin/applydeltarpm not installed.\nPublic key for bind-license-9.9.4-29.el7_2.2.noarch.rpm is not installed\nPublic key for linux-firmware-20150904-43.git6ebf5d5.el7.noarch.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              4.3 MB/s | 108 MB  00:24     \nRetrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Updating   : tzdata-2016a-1.el7.noarch                                   1/98 \n  Updating   : glibc-2.17-106.el7_2.4.x86_64                               2/98 \n  Updating   : glibc-common-2.17-106.el7_2.4.x86_64                        3/98 \n  Updating   : systemd-libs-219-19.el7_2.4.x86_64                          4/98 \n  Updating   : nss-util-3.19.1-9.el7_2.x86_64                              5/98 \n  Updating   : 1:gmp-6.0.0-12.el7_1.x86_64                                 6/98 \n  Updating   : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                     7/98 \n  Updating   : coreutils-8.22-15.el7_2.1.x86_64                            8/98 \n  Updating   : ca-certificates-2015.2.6-70.1.el7_2.noarch                  9/98 \n  Updating   : systemd-219-19.el7_2.4.x86_64                              10/98 \nwarning: /etc/systemd/logind.conf created as /etc/systemd/logind.conf.rpmnew\n  Updating   : openssh-6.6.1p1-23.el7_2.x86_64                            11/98 \n  Updating   : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             12/98 \n  Updating   : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  13/98 \n  Updating   : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  14/98 \n  Updating   : systemd-sysv-219-19.el7_2.4.x86_64                         15/98 \n  Updating   : rpcbind-0.2.0-33.el7_2.x86_64                              16/98 \n  Updating   : selinux-policy-3.13.1-60.el7_2.3.noarch                    17/98 \n  Updating   : nss-3.19.1-19.el7_2.x86_64                                 18/98 \n  Updating   : nss-sysinit-3.19.1-19.el7_2.x86_64                         19/98 \n  Updating   : procps-ng-3.3.10-5.el7_2.x86_64                            20/98 \n  Updating   : dracut-033-360.el7_2.x86_64                                21/98 \n  Updating   : dracut-network-033-360.el7_2.x86_64                        22/98 \n  Updating   : python-pyudev-0.15-7.el7_2.1.noarch                        23/98 \n  Updating   : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               24/98 \n  Updating   : python-perf-3.10.0-327.10.1.el7.x86_64                     25/98 \n  Updating   : libxml2-2.9.1-6.el7_2.2.x86_64                             26/98 \n  Installing : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           27/98 \n  Updating   : 32:bind-license-9.9.4-29.el7_2.2.noarch                    28/98 \n  Updating   : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  29/98 \n  Installing : kernel-3.10.0-327.10.1.el7.x86_64                          30/98 \n  Updating   : tuned-2.5.1-4.el7_2.2.noarch                               31/98 \n  Updating   : kernel-tools-3.10.0-327.10.1.el7.x86_64                    32/98 \n  Updating   : kexec-tools-2.0.7-38.el7_2.1.x86_64                        33/98 \n  Updating   : dracut-config-rescue-033-360.el7_2.x86_64                  34/98 \n  Updating   : 1:grub2-2.02-0.34.el7.centos.x86_64                        35/98 \n  Updating   : dracut-config-generic-033-360.el7_2.x86_64                 36/98 \n  Updating   : rdma-7.2_4.1_rc6-2.el7.noarch                              37/98 \n  Updating   : nss-tools-3.19.1-19.el7_2.x86_64                           38/98 \n  Updating   : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           39/98 \n  Updating   : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        40/98 \n  Updating   : openssh-clients-6.6.1p1-23.el7_2.x86_64                    41/98 \n  Updating   : openssh-server-6.6.1p1-23.el7_2.x86_64                     42/98 \n  Updating   : polkit-0.112-6.el7_2.x86_64                                43/98 \n  Updating   : logrotate-3.8.6-7.el7_2.x86_64                             44/98 \n  Updating   : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         45/98 \n  Updating   : libssh2-1.4.3-10.el7_2.1.x86_64                            46/98 \n  Updating   : gnutls-3.3.8-14.el7_2.x86_64                               47/98 \n  Updating   : libgudev1-219-19.el7_2.4.x86_64                            48/98 \n  Updating   : numactl-libs-2.0.9-6.el7_2.x86_64                          49/98 \n  Updating   : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      50/98 \n  Cleanup    : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          51/98 \n  Cleanup    : rpcbind-0.2.0-32.el7.x86_64                                52/98 \n  Cleanup    : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      53/98 \n  Cleanup    : nss-tools-3.19.1-18.el7.x86_64                             54/98 \n  Cleanup    : nss-sysinit-3.19.1-18.el7.x86_64                           55/98 \n  Cleanup    : nss-3.19.1-18.el7.x86_64                                   56/98 \n  Cleanup    : 1:openssl-1.0.1e-42.el7.9.x86_64                           57/98 \n  Cleanup    : openssh-server-6.6.1p1-22.el7.x86_64                       58/98 \n  Cleanup    : kexec-tools-2.0.7-38.el7.x86_64                            59/98 \n  Cleanup    : openssh-clients-6.6.1p1-22.el7.x86_64                      60/98 \n  Cleanup    : polkit-0.112-5.el7.x86_64                                  61/98 \n  Cleanup    : kernel-tools-3.10.0-327.el7.x86_64                         62/98 \n  Cleanup    : libgudev1-219-19.el7.x86_64                                63/98 \n  Cleanup    : tuned-2.5.1-4.el7.noarch                                   64/98 \n  Cleanup    : openssh-6.6.1p1-22.el7.x86_64                              65/98 \n  Cleanup    : libssh2-1.4.3-10.el7.x86_64                                66/98 \n  Cleanup    : gnutls-3.3.8-12.el7_1.1.x86_64                             67/98 \n  Cleanup    : rdma-7.2_4.1_rc6-1.el7.noarch                              68/98 \n  Cleanup    : selinux-policy-targeted-3.13.1-60.el7.noarch               69/98 \n  Cleanup    : 1:grub2-2.02-0.29.el7.centos.x86_64                        70/98 \n  Cleanup    : selinux-policy-3.13.1-60.el7.noarch                        71/98 \n  Cleanup    : dracut-network-033-359.el7.x86_64                          72/98 \n  Cleanup    : systemd-sysv-219-19.el7.x86_64                             73/98 \n  Cleanup    : dracut-config-generic-033-359.el7.x86_64                   74/98 \n  Cleanup    : dracut-config-rescue-033-359.el7.x86_64                    75/98 \n  Cleanup    : dracut-033-359.el7.x86_64                                  76/98 \n  Cleanup    : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  77/98 \n  Cleanup    : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 78/98 \n  Cleanup    : 7:device-mapper-1.02.107-5.el7.x86_64                      79/98 \n  Cleanup    : systemd-219-19.el7.x86_64                                  80/98 \n  Cleanup    : procps-ng-3.3.10-3.el7.x86_64                              81/98 \n  Cleanup    : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Cleanup    : ca-certificates-2015.2.4-71.el7.noarch                     83/98 \n  Cleanup    : coreutils-8.22-15.el7.x86_64                               84/98 \n  Cleanup    : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Cleanup    : 1:gmp-6.0.0-11.el7.x86_64                                  86/98 \n  Cleanup    : systemd-libs-219-19.el7.x86_64                             87/98 \n  Cleanup    : python-perf-3.10.0-327.el7.x86_64                          88/98 \n  Cleanup    : kernel-tools-libs-3.10.0-327.el7.x86_64                    89/98 \n  Cleanup    : nss-util-3.19.1-4.el7_1.x86_64                             90/98 \n  Cleanup    : libxml2-2.9.1-5.el7_1.2.x86_64                             91/98 \n  Cleanup    : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      92/98 \n  Cleanup    : numactl-libs-2.0.9-5.el7_1.x86_64                          93/98 \n  Cleanup    : python-pyudev-0.15-7.el7.noarch                            94/98 \n  Cleanup    : 32:bind-license-9.9.4-29.el7.noarch                        95/98 \n  Cleanup    : glibc-2.17-105.el7.x86_64                                  96/98 \n  Cleanup    : glibc-common-2.17-105.el7.x86_64                           97/98 \n  Cleanup    : tzdata-2015g-1.el7.noarch                                  98/98 \n  Verifying  : glibc-common-2.17-106.el7_2.4.x86_64                        1/98 \n  Verifying  : systemd-libs-219-19.el7_2.4.x86_64                          2/98 \n  Verifying  : nss-3.19.1-19.el7_2.x86_64                                  3/98 \n  Verifying  : openssh-clients-6.6.1p1-23.el7_2.x86_64                     4/98 \n  Verifying  : gnutls-3.3.8-14.el7_2.x86_64                                5/98 \n  Verifying  : ca-certificates-2015.2.6-70.1.el7_2.noarch                  6/98 \n  Verifying  : 1:gmp-6.0.0-12.el7_1.x86_64                                 7/98 \n  Verifying  : libgudev1-219-19.el7_2.4.x86_64                             8/98 \n  Verifying  : selinux-policy-3.13.1-60.el7_2.3.noarch                     9/98 \n  Verifying  : numactl-libs-2.0.9-6.el7_2.x86_64                          10/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7_2.1.x86_64                  11/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.10.1.el7.x86_64               12/98 \n  Verifying  : kernel-3.10.0-327.10.1.el7.x86_64                          13/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7_2.2.noarch                    14/98 \n  Verifying  : coreutils-8.22-15.el7_2.1.x86_64                           15/98 \n  Verifying  : kernel-tools-3.10.0-327.10.1.el7.x86_64                    16/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7_2.1.x86_64             17/98 \n  Verifying  : dracut-config-rescue-033-360.el7_2.x86_64                  18/98 \n  Verifying  : dracut-network-033-360.el7_2.x86_64                        19/98 \n  Verifying  : libssh2-1.4.3-10.el7_2.1.x86_64                            20/98 \n  Verifying  : tuned-2.5.1-4.el7_2.2.noarch                               21/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                      22/98 \n  Verifying  : rpcbind-0.2.0-33.el7_2.x86_64                              23/98 \n  Verifying  : procps-ng-3.3.10-5.el7_2.x86_64                            24/98 \n  Verifying  : 1:grub2-2.02-0.34.el7.centos.x86_64                        25/98 \n  Verifying  : openssh-server-6.6.1p1-23.el7_2.x86_64                     26/98 \n  Verifying  : dracut-config-generic-033-360.el7_2.x86_64                 27/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7_2.x86_64                        28/98 \n  Verifying  : python-perf-3.10.0-327.10.1.el7.x86_64                     29/98 \n  Verifying  : kexec-tools-2.0.7-38.el7_2.1.x86_64                        30/98 \n  Verifying  : 1:openssl-libs-1.0.1e-51.el7_2.4.x86_64                    31/98 \n  Verifying  : logrotate-3.8.6-7.el7_2.x86_64                             32/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7_2.3.noarch           33/98 \n  Verifying  : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                  34/98 \n  Verifying  : libxml2-2.9.1-6.el7_2.2.x86_64                             35/98 \n  Verifying  : openssh-6.6.1p1-23.el7_2.x86_64                            36/98 \n  Verifying  : linux-firmware-20150904-43.git6ebf5d5.el7.noarch           37/98 \n  Verifying  : 1:openssl-1.0.1e-51.el7_2.4.x86_64                         38/98 \n  Verifying  : nss-sysinit-3.19.1-19.el7_2.x86_64                         39/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7_2.2.x86_64                  40/98 \n  Verifying  : python-pyudev-0.15-7.el7_2.1.noarch                        41/98 \n  Verifying  : tzdata-2016a-1.el7.noarch                                  42/98 \n  Verifying  : systemd-sysv-219-19.el7_2.4.x86_64                         43/98 \n  Verifying  : nss-tools-3.19.1-19.el7_2.x86_64                           44/98 \n  Verifying  : rdma-7.2_4.1_rc6-2.el7.noarch                              45/98 \n  Verifying  : nss-util-3.19.1-9.el7_2.x86_64                             46/98 \n  Verifying  : dracut-033-360.el7_2.x86_64                                47/98 \n  Verifying  : polkit-0.112-6.el7_2.x86_64                                48/98 \n  Verifying  : systemd-219-19.el7_2.4.x86_64                              49/98 \n  Verifying  : glibc-2.17-106.el7_2.4.x86_64                              50/98 \n  Verifying  : dracut-config-rescue-033-359.el7.x86_64                    51/98 \n  Verifying  : gnutls-3.3.8-12.el7_1.1.x86_64                             52/98 \n  Verifying  : openssh-6.6.1p1-22.el7.x86_64                              53/98 \n  Verifying  : glibc-common-2.17-105.el7.x86_64                           54/98 \n  Verifying  : dracut-network-033-359.el7.x86_64                          55/98 \n  Verifying  : selinux-policy-3.13.1-60.el7.noarch                        56/98 \n  Verifying  : systemd-libs-219-19.el7.x86_64                             57/98 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7.x86_64                          58/98 \n  Verifying  : python-pyudev-0.15-7.el7.noarch                            59/98 \n  Verifying  : nss-util-3.19.1-4.el7_1.x86_64                             60/98 \n  Verifying  : rdma-7.2_4.1_rc6-1.el7.noarch                              61/98 \n  Verifying  : kexec-tools-2.0.7-38.el7.x86_64                            62/98 \n  Verifying  : rpcbind-0.2.0-32.el7.x86_64                                63/98 \n  Verifying  : kernel-tools-3.10.0-327.el7.x86_64                         64/98 \n  Verifying  : procps-ng-3.3.10-3.el7.x86_64                              65/98 \n  Verifying  : dracut-config-generic-033-359.el7.x86_64                   66/98 \n  Verifying  : tzdata-2015g-1.el7.noarch                                  67/98 \n  Verifying  : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                  68/98 \n  Verifying  : systemd-sysv-219-19.el7.x86_64                             69/98 \n  Verifying  : libgudev1-219-19.el7.x86_64                                70/98 \n  Verifying  : nss-sysinit-3.19.1-18.el7.x86_64                           71/98 \n  Verifying  : 1:gmp-6.0.0-11.el7.x86_64                                  72/98 \n  Verifying  : kernel-tools-libs-3.10.0-327.el7.x86_64                    73/98 \n  Verifying  : glibc-2.17-105.el7.x86_64                                  74/98 \n  Verifying  : 1:grub2-2.02-0.29.el7.centos.x86_64                        75/98 \n  Verifying  : ca-certificates-2015.2.4-71.el7.noarch                     76/98 \n  Verifying  : 1:openssl-1.0.1e-42.el7.9.x86_64                           77/98 \n  Verifying  : 32:bind-license-9.9.4-29.el7.noarch                        78/98 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7.noarch               79/98 \n  Verifying  : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                      80/98 \n  Verifying  : nss-tools-3.19.1-18.el7.x86_64                             81/98 \n  Verifying  : logrotate-3.8.6-6.el7.x86_64                               82/98 \n  Verifying  : polkit-0.112-5.el7.x86_64                                  83/98 \n  Verifying  : numactl-libs-2.0.9-5.el7_1.x86_64                          84/98 \n  Verifying  : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                      85/98 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7.x86_64                      86/98 \n  Verifying  : 7:device-mapper-1.02.107-5.el7.x86_64                      87/98 \n  Verifying  : coreutils-8.22-15.el7.x86_64                               88/98 \n  Verifying  : tuned-2.5.1-4.el7.noarch                                   89/98 \n  Verifying  : nss-3.19.1-18.el7.x86_64                                   90/98 \n  Verifying  : openssh-clients-6.6.1p1-22.el7.x86_64                      91/98 \n  Verifying  : systemd-219-19.el7.x86_64                                  92/98 \n  Verifying  : dracut-033-359.el7.x86_64                                  93/98 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7.x86_64                 94/98 \n  Verifying  : openssh-server-6.6.1p1-22.el7.x86_64                       95/98 \n  Verifying  : libssh2-1.4.3-10.el7.x86_64                                96/98 \n  Verifying  : libxml2-2.9.1-5.el7_1.2.x86_64                             97/98 \n  Verifying  : python-perf-3.10.0-327.el7.x86_64                          98/98 \n\nInstalled:\n  kernel.x86_64 0:3.10.0-327.10.1.el7                                           \n\nDependency Installed:\n  linux-firmware.noarch 0:20150904-43.git6ebf5d5.el7                            \n\nUpdated:\n  bind-libs-lite.x86_64 32:9.9.4-29.el7_2.2                                     \n  bind-license.noarch 32:9.9.4-29.el7_2.2                                       \n  ca-certificates.noarch 0:2015.2.6-70.1.el7_2                                  \n  coreutils.x86_64 0:8.22-15.el7_2.1                                            \n  cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2                                       \n  device-mapper.x86_64 7:1.02.107-5.el7_2.1                                     \n  device-mapper-libs.x86_64 7:1.02.107-5.el7_2.1                                \n  dracut.x86_64 0:033-360.el7_2                                                 \n  dracut-config-generic.x86_64 0:033-360.el7_2                                  \n  dracut-config-rescue.x86_64 0:033-360.el7_2                                   \n  dracut-network.x86_64 0:033-360.el7_2                                         \n  glibc.x86_64 0:2.17-106.el7_2.4                                               \n  glibc-common.x86_64 0:2.17-106.el7_2.4                                        \n  gmp.x86_64 1:6.0.0-12.el7_1                                                   \n  gnutls.x86_64 0:3.3.8-14.el7_2                                                \n  grub2.x86_64 1:2.02-0.34.el7.centos                                           \n  grub2-tools.x86_64 1:2.02-0.34.el7.centos                                     \n  kernel-tools.x86_64 0:3.10.0-327.10.1.el7                                     \n  kernel-tools-libs.x86_64 0:3.10.0-327.10.1.el7                                \n  kexec-tools.x86_64 0:2.0.7-38.el7_2.1                                         \n  libgudev1.x86_64 0:219-19.el7_2.4                                             \n  libssh2.x86_64 0:1.4.3-10.el7_2.1                                             \n  libxml2.x86_64 0:2.9.1-6.el7_2.2                                              \n  logrotate.x86_64 0:3.8.6-7.el7_2                                              \n  nfs-utils.x86_64 1:1.3.0-0.21.el7_2                                           \n  nss.x86_64 0:3.19.1-19.el7_2                                                  \n  nss-sysinit.x86_64 0:3.19.1-19.el7_2                                          \n  nss-tools.x86_64 0:3.19.1-19.el7_2                                            \n  nss-util.x86_64 0:3.19.1-9.el7_2                                              \n  numactl-libs.x86_64 0:2.0.9-6.el7_2                                           \n  openssh.x86_64 0:6.6.1p1-23.el7_2                                             \n  openssh-clients.x86_64 0:6.6.1p1-23.el7_2                                     \n  openssh-server.x86_64 0:6.6.1p1-23.el7_2                                      \n  openssl.x86_64 1:1.0.1e-51.el7_2.4                                            \n  openssl-libs.x86_64 1:1.0.1e-51.el7_2.4                                       \n  polkit.x86_64 0:0.112-6.el7_2                                                 \n  procps-ng.x86_64 0:3.3.10-5.el7_2                                             \n  python-perf.x86_64 0:3.10.0-327.10.1.el7                                      \n  python-pyudev.noarch 0:0.15-7.el7_2.1                                         \n  rdma.noarch 0:7.2_4.1_rc6-2.el7                                               \n  rpcbind.x86_64 0:0.2.0-33.el7_2                                               \n  selinux-policy.noarch 0:3.13.1-60.el7_2.3                                     \n  selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.3                            \n  systemd.x86_64 0:219-19.el7_2.4                                               \n  systemd-libs.x86_64 0:219-19.el7_2.4                                          \n  systemd-sysv.x86_64 0:219-19.el7_2.4                                          \n  tuned.noarch 0:2.5.1-4.el7_2.2                                                \n  tzdata.noarch 0:2016a-1.el7                                                   \n\nComplete!\n"]}
2016-03-15 11:52:50,972 p=8050 u=bpaskinc |  NOTIFIED: [openshift_repos | refresh cache] ***********************************
2016-03-15 11:52:52,141 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": ["yum", "clean", "all"], "delta": "0:00:00.740340", "end": "2016-03-15 09:52:52.121989", "rc": 0, "start": "2016-03-15 09:52:51.381649", "stderr": "", "stdout": "Loaded plugins: fastestmirror\nCleaning repos: base extras maxamillion-origin-next updates\nCleaning up everything\nCleaning up list of fastest mirrors", "warnings": ["Consider using yum module rather than running yum"]}
2016-03-15 11:52:52,154 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "cmd": ["yum", "clean", "all"], "delta": "0:00:00.643061", "end": "2016-03-15 09:52:52.120980", "rc": 0, "start": "2016-03-15 09:52:51.477919", "stderr": "", "stdout": "Loaded plugins: fastestmirror\nCleaning repos: base extras maxamillion-origin-next updates\nCleaning up everything\nCleaning up list of fastest mirrors", "warnings": ["Consider using yum module rather than running yum"]}
2016-03-15 11:52:52,156 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "cmd": ["yum", "clean", "all"], "delta": "0:00:00.653539", "end": "2016-03-15 09:52:52.137593", "rc": 0, "start": "2016-03-15 09:52:51.484054", "stderr": "", "stdout": "Loaded plugins: fastestmirror\nCleaning repos: base extras maxamillion-origin-next updates\nCleaning up everything\nCleaning up list of fastest mirrors", "warnings": ["Consider using yum module rather than running yum"]}
2016-03-15 11:52:52,229 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "cmd": ["yum", "clean", "all"], "delta": "0:00:00.686544", "end": "2016-03-15 09:52:52.221447", "rc": 0, "start": "2016-03-15 09:52:51.534903", "stderr": "", "stdout": "Loaded plugins: fastestmirror\nCleaning repos: base extras maxamillion-origin-next updates\nCleaning up everything\nCleaning up list of fastest mirrors", "warnings": ["Consider using yum module rather than running yum"]}
2016-03-15 11:52:52,239 p=8050 u=bpaskinc |  PLAY [Populate config host groups] ********************************************
2016-03-15 11:52:52,241 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,255 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,256 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,271 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,272 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,285 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,285 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,294 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,295 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,305 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,305 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,315 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,315 p=8050 u=bpaskinc |  TASK: [Evaluate oo_masters] ***************************************************
2016-03-15 11:52:52,376 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-master-d780a) => {"item": "metrics4-master-d780a", "new_groups": ["oo_masters"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:52:52,376 p=8050 u=bpaskinc |  TASK: [Evaluate oo_etcd_to_config] ********************************************
2016-03-15 11:52:52,384 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,385 p=8050 u=bpaskinc |  TASK: [Evaluate oo_masters_to_config] *****************************************
2016-03-15 11:52:52,456 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-master-d780a) => {"item": "metrics4-master-d780a", "new_groups": ["oo_masters_to_config"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:52:52,457 p=8050 u=bpaskinc |  TASK: [Evaluate oo_nodes_to_config] *******************************************
2016-03-15 11:52:52,553 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-compute-266fe) => {"item": "metrics4-node-compute-266fe", "new_groups": ["oo_nodes_to_config"], "new_host": "metrics4-node-compute-266fe"}
2016-03-15 11:52:52,602 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-compute-0e7b2) => {"item": "metrics4-node-compute-0e7b2", "new_groups": ["oo_nodes_to_config"], "new_host": "metrics4-node-compute-0e7b2"}
2016-03-15 11:52:52,650 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-infra-48f49) => {"item": "metrics4-node-infra-48f49", "new_groups": ["oo_nodes_to_config"], "new_host": "metrics4-node-infra-48f49"}
2016-03-15 11:52:52,650 p=8050 u=bpaskinc |  TASK: [Evaluate oo_nodes_to_config] *******************************************
2016-03-15 11:52:52,667 p=8050 u=bpaskinc |  skipping: [localhost] => (item=metrics4-master-d780a)
2016-03-15 11:52:52,668 p=8050 u=bpaskinc |  TASK: [Evaluate oo_first_etcd] ************************************************
2016-03-15 11:52:52,676 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,676 p=8050 u=bpaskinc |  TASK: [Evaluate oo_first_master] **********************************************
2016-03-15 11:52:52,742 p=8050 u=bpaskinc |  ok: [localhost] => {"new_groups": ["oo_first_master"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:52:52,742 p=8050 u=bpaskinc |  TASK: [Evaluate oo_lb_to_config] **********************************************
2016-03-15 11:52:52,753 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,754 p=8050 u=bpaskinc |  TASK: [Evaluate oo_nfs_to_config] *********************************************
2016-03-15 11:52:52,763 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,763 p=8050 u=bpaskinc |  PLAY [Populate config host groups] ********************************************
2016-03-15 11:52:52,764 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,771 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,772 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,787 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,787 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,800 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,800 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,808 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,808 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,820 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,820 p=8050 u=bpaskinc |  TASK: [fail ] *****************************************************************
2016-03-15 11:52:52,828 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,829 p=8050 u=bpaskinc |  TASK: [Evaluate oo_masters] ***************************************************
2016-03-15 11:52:52,888 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-master-d780a) => {"item": "metrics4-master-d780a", "new_groups": ["oo_masters"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:52:52,889 p=8050 u=bpaskinc |  TASK: [Evaluate oo_etcd_to_config] ********************************************
2016-03-15 11:52:52,897 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:52,898 p=8050 u=bpaskinc |  TASK: [Evaluate oo_masters_to_config] *****************************************
2016-03-15 11:52:52,961 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-master-d780a) => {"item": "metrics4-master-d780a", "new_groups": ["oo_masters_to_config"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:52:52,961 p=8050 u=bpaskinc |  TASK: [Evaluate oo_nodes_to_config] *******************************************
2016-03-15 11:52:53,027 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-compute-266fe) => {"item": "metrics4-node-compute-266fe", "new_groups": ["oo_nodes_to_config"], "new_host": "metrics4-node-compute-266fe"}
2016-03-15 11:52:53,099 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-compute-0e7b2) => {"item": "metrics4-node-compute-0e7b2", "new_groups": ["oo_nodes_to_config"], "new_host": "metrics4-node-compute-0e7b2"}
2016-03-15 11:52:53,159 p=8050 u=bpaskinc |  ok: [localhost] => (item=metrics4-node-infra-48f49) => {"item": "metrics4-node-infra-48f49", "new_groups": ["oo_nodes_to_config"], "new_host": "metrics4-node-infra-48f49"}
2016-03-15 11:52:53,159 p=8050 u=bpaskinc |  TASK: [Evaluate oo_nodes_to_config] *******************************************
2016-03-15 11:52:53,175 p=8050 u=bpaskinc |  skipping: [localhost] => (item=metrics4-master-d780a)
2016-03-15 11:52:53,176 p=8050 u=bpaskinc |  TASK: [Evaluate oo_first_etcd] ************************************************
2016-03-15 11:52:53,184 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:53,184 p=8050 u=bpaskinc |  TASK: [Evaluate oo_first_master] **********************************************
2016-03-15 11:52:53,246 p=8050 u=bpaskinc |  ok: [localhost] => {"new_groups": ["oo_first_master"], "new_host": "metrics4-master-d780a"}
2016-03-15 11:52:53,247 p=8050 u=bpaskinc |  TASK: [Evaluate oo_lb_to_config] **********************************************
2016-03-15 11:52:53,255 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:53,256 p=8050 u=bpaskinc |  TASK: [Evaluate oo_nfs_to_config] *********************************************
2016-03-15 11:52:53,270 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:52:53,272 p=8050 u=bpaskinc |  PLAY [Gather and set facts for node hosts] ************************************
2016-03-15 11:52:53,275 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:52:53,928 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49]
2016-03-15 11:52:53,930 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2]
2016-03-15 11:52:53,967 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe]
2016-03-15 11:52:53,978 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:52:54,015 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:52:54,025 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:52:54,030 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:52:54,039 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:52:54,480 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.005676", "end": "2016-03-15 09:52:54.463061", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:52:54.457385", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:52:54,487 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.024204", "end": "2016-03-15 09:52:54.466815", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:52:54.442611", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:52:54,511 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.016553", "end": "2016-03-15 09:52:54.485548", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:52:54.468995", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:52:54,524 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:52:54,560 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:52:54,568 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:52:54,569 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:52:54,582 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:52:54,620 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:52:54,621 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:52:54,624 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:52:54,634 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:52:55,561 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:52:55,665 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:52:55,710 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:52:55,720 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:52:57,652 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:52:57,728 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:52:57,793 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:52:57,806 p=8050 u=bpaskinc |  TASK: [openshift_facts ] ******************************************************
2016-03-15 11:52:59,927 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item={'local_facts': {'public_hostname': u'', 'hostname': u''}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false, "item": {"local_facts": {"hostname": "", "public_hostname": ""}, "role": "common"}}
2016-03-15 11:52:59,985 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item={'local_facts': {'public_hostname': u'', 'hostname': u''}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false, "item": {"local_facts": {"hostname": "", "public_hostname": ""}, "role": "common"}}
2016-03-15 11:52:59,996 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item={'local_facts': {'public_hostname': u'', 'hostname': u''}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false, "item": {"local_facts": {"hostname": "", "public_hostname": ""}, "role": "common"}}
2016-03-15 11:53:00,008 p=8050 u=bpaskinc |  TASK: [shell getent ahostsv4 {{ openshift.common.hostname }} | head -n 1 | awk '{ print $1 }'] ***
2016-03-15 11:53:00,418 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "cmd": "getent ahostsv4 metrics4-node-compute-266fe.example.com | head -n 1 | awk '{ print $1 }'", "delta": "0:00:00.032500", "end": "2016-03-15 09:53:00.403266", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:53:00.370766", "stderr": "", "stdout": "192.168.55.214", "stdout_lines": ["192.168.55.214"], "warnings": []}
2016-03-15 11:53:00,470 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "cmd": "getent ahostsv4 metrics4-node-compute-0e7b2.example.com | head -n 1 | awk '{ print $1 }'", "delta": "0:00:00.018813", "end": "2016-03-15 09:53:00.457178", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:53:00.438365", "stderr": "", "stdout": "192.168.55.136", "stdout_lines": ["192.168.55.136"], "warnings": []}
2016-03-15 11:53:00,489 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "cmd": "getent ahostsv4 metrics4-node-infra-48f49.example.com | head -n 1 | awk '{ print $1 }'", "delta": "0:00:00.006584", "end": "2016-03-15 09:53:00.475709", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:53:00.469125", "stderr": "", "stdout": "192.168.55.171", "stdout_lines": ["192.168.55.171"], "warnings": []}
2016-03-15 11:53:00,498 p=8050 u=bpaskinc |  TASK: [Warn user about bad openshift_hostname values] *************************
2016-03-15 11:53:00,512 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:00,513 p=8050 u=bpaskinc |  PLAY [Configure docker hosts] *************************************************
2016-03-15 11:53:00,517 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:53:01,254 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe]
2016-03-15 11:53:01,326 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:53:01,329 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:01,359 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49]
2016-03-15 11:53:01,372 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:53:01,418 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:01,419 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:01,427 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:01,427 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:01,455 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:53:01,931 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.021694", "end": "2016-03-15 09:53:01.912252", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:01.890558", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:01,963 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.050626", "end": "2016-03-15 09:53:01.938671", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:01.888045", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:02,004 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.004742", "end": "2016-03-15 09:53:01.993535", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:01.988793", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:02,015 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.004970", "end": "2016-03-15 09:53:02.009024", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:02.004054", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:02,026 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:53:02,087 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:02,089 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:02,090 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:02,091 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:02,110 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:53:02,156 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:02,172 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:02,173 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:02,174 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:02,206 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:53:03,348 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:03,545 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:03,610 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:03,678 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:03,690 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:53:05,787 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:05,997 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:06,102 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:06,150 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-master-d780a.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:06,161 p=8050 u=bpaskinc |  TASK: [os_firewall | Install firewalld packages] ******************************
2016-03-15 11:53:06,209 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:06,222 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:06,232 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:06,238 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:06,248 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if iptables-services is installed] *****************
2016-03-15 11:53:06,292 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:06,303 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:06,312 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:06,312 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:06,328 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure iptables services are not enabled] ****************
2016-03-15 11:53:06,374 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:53:06,377 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:53:06,382 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=iptables)
2016-03-15 11:53:06,384 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=ip6tables)
2016-03-15 11:53:06,391 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=iptables)
2016-03-15 11:53:06,391 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=iptables)
2016-03-15 11:53:06,395 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=ip6tables)
2016-03-15 11:53:06,395 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=ip6tables)
2016-03-15 11:53:06,415 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:53:06,463 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:06,466 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:06,471 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:06,478 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:06,489 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable firewalld service] **********************
2016-03-15 11:53:06,541 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:06,549 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:06,553 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:06,557 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:06,571 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the firewalld service starting can sometimes cause ssh to fail] ***
2016-03-15 11:53:06,587 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:06,588 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask iptables services] **********************************
2016-03-15 11:53:06,629 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:53:06,632 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:53:06,632 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=iptables)
2016-03-15 11:53:06,636 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=ip6tables)
2016-03-15 11:53:06,637 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=iptables)
2016-03-15 11:53:06,638 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=iptables)
2016-03-15 11:53:06,640 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=ip6tables)
2016-03-15 11:53:06,644 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=ip6tables)
2016-03-15 11:53:06,657 p=8050 u=bpaskinc |  TASK: [os_firewall | Add firewalld allow rules] *******************************
2016-03-15 11:53:06,698 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:53:06,707 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=os_firewall_allow)
2016-03-15 11:53:06,707 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=os_firewall_allow)
2016-03-15 11:53:06,716 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=os_firewall_allow)
2016-03-15 11:53:06,727 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist firewalld allow rules] ***************************
2016-03-15 11:53:06,778 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=os_firewall_allow)
2016-03-15 11:53:06,779 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:53:06,796 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=os_firewall_allow)
2016-03-15 11:53:06,797 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=os_firewall_allow)
2016-03-15 11:53:06,819 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove firewalld allow rules] ****************************
2016-03-15 11:53:06,863 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:53:06,870 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=os_firewall_deny)
2016-03-15 11:53:06,873 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=os_firewall_deny)
2016-03-15 11:53:06,876 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=os_firewall_deny)
2016-03-15 11:53:06,886 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist removal of firewalld allow rules] ****************
2016-03-15 11:53:06,929 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:53:06,933 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=os_firewall_deny)
2016-03-15 11:53:06,939 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=os_firewall_deny)
2016-03-15 11:53:06,942 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=os_firewall_deny)
2016-03-15 11:53:06,951 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if firewalld is installed] *************************
2016-03-15 11:53:07,457 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.065674", "end": "2016-03-15 09:53:07.420772", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:53:07.355098", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}
2016-03-15 11:53:07,493 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.065240", "end": "2016-03-15 09:53:07.427385", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:53:07.362145", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}
2016-03-15 11:53:07,520 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.074054", "end": "2016-03-15 09:53:07.508279", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:53:07.434225", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}
2016-03-15 11:53:07,539 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.073499", "end": "2016-03-15 09:53:07.514978", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:53:07.441479", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}
2016-03-15 11:53:07,549 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure firewalld service is not enabled] *****************
2016-03-15 11:53:07,595 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:07,599 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:07,607 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:07,611 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:07,620 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask firewalld service] **********************************
2016-03-15 11:53:07,667 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:07,672 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:07,673 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:07,676 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:07,691 p=8050 u=bpaskinc |  TASK: [os_firewall | Install iptables packages] *******************************
2016-03-15 11:53:08,808 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=iptables) => {"changed": false, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}
2016-03-15 11:53:08,987 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=iptables) => {"changed": false, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}
2016-03-15 11:53:09,004 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=iptables) => {"changed": false, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}
2016-03-15 11:53:09,245 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=iptables) => {"changed": false, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}
2016-03-15 11:53:21,965 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=iptables-services) => {"changed": true, "item": "iptables-services", "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n"]}
2016-03-15 11:53:22,091 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item=iptables-services) => {"changed": true, "item": "iptables-services", "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n"]}
2016-03-15 11:53:22,439 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item=iptables-services) => {"changed": true, "item": "iptables-services", "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.syn.co.il\n * extras: centos.syn.co.il\n * updates: centos.syn.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n"]}
2016-03-15 11:53:22,449 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item=iptables-services) => {"changed": true, "item": "iptables-services", "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.joinweb.co.il\n * extras: centos.joinweb.co.il\n * updates: centos.joinweb.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n"]}
2016-03-15 11:53:22,464 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:53:23,105 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "cmd": ["systemctl", "daemon-reload"], "delta": "0:00:00.255145", "end": "2016-03-15 09:53:23.074691", "rc": 0, "start": "2016-03-15 09:53:22.819546", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:53:23,172 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": ["systemctl", "daemon-reload"], "delta": "0:00:00.244075", "end": "2016-03-15 09:53:23.154924", "rc": 0, "start": "2016-03-15 09:53:22.910849", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:53:23,240 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "cmd": ["systemctl", "daemon-reload"], "delta": "0:00:00.293850", "end": "2016-03-15 09:53:23.232215", "rc": 0, "start": "2016-03-15 09:53:22.938365", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:53:23,246 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "cmd": ["systemctl", "daemon-reload"], "delta": "0:00:00.298424", "end": "2016-03-15 09:53:23.228217", "rc": 0, "start": "2016-03-15 09:53:22.929793", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:53:23,254 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable iptables service] ***********************
2016-03-15 11:53:24,290 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "enabled": true, "name": "iptables", "state": "started"}
2016-03-15 11:53:24,331 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "enabled": true, "name": "iptables", "state": "started"}
2016-03-15 11:53:24,343 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "enabled": true, "name": "iptables", "state": "started"}
2016-03-15 11:53:24,379 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "enabled": true, "name": "iptables", "state": "started"}
2016-03-15 11:53:24,393 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail] ***
2016-03-15 11:53:34,424 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "delta": 10, "rc": 0, "start": "2016-03-15 11:53:24.412344", "stderr": "", "stdout": "Paused for 10.01 seconds", "stop": "2016-03-15 11:53:34.422470"}
2016-03-15 11:53:34,424 p=8050 u=bpaskinc |  TASK: [os_firewall | Add iptables allow rules] ********************************
2016-03-15 11:53:34,476 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:53:34,479 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=os_firewall_allow)
2016-03-15 11:53:34,488 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=os_firewall_allow)
2016-03-15 11:53:34,489 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=os_firewall_allow)
2016-03-15 11:53:34,507 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove iptables rules] ***********************************
2016-03-15 11:53:34,550 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:53:34,557 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=os_firewall_deny)
2016-03-15 11:53:34,562 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=os_firewall_deny)
2016-03-15 11:53:34,572 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=os_firewall_deny)
2016-03-15 11:53:34,592 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:53:34,634 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:34,642 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:34,649 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:34,650 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:34,663 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:53:35,133 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.005671", "end": "2016-03-15 09:53:35.099915", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:35.094244", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:35,151 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.014589", "end": "2016-03-15 09:53:35.134746", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:35.120157", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:35,190 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.008215", "end": "2016-03-15 09:53:35.158055", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:35.149840", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:35,198 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.029715", "end": "2016-03-15 09:53:35.183763", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:53:35.154048", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:53:35,211 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:53:35,252 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:35,256 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:35,259 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:35,259 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:53:35,277 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:53:35,336 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:35,337 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:35,341 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:35,343 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:53:35,356 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:53:36,581 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:36,666 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:36,677 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:36,686 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:53:36,698 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:53:39,002 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-master-d780a.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:39,057 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:39,146 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:39,201 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": true, "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:53:39,218 p=8050 u=bpaskinc |  TASK: [openshift_repos | assert ] *********************************************
2016-03-15 11:53:39,276 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"msg": "all assertions passed"}
2016-03-15 11:53:39,286 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"msg": "all assertions passed"}
2016-03-15 11:53:39,287 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"msg": "all assertions passed"}
2016-03-15 11:53:39,287 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"msg": "all assertions passed"}
2016-03-15 11:53:39,303 p=8050 u=bpaskinc |  TASK: [openshift_repos | Ensure libselinux-python is installed] ***************
2016-03-15 11:53:40,413 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:53:40,482 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:53:40,526 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:53:40,551 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:53:40,562 p=8050 u=bpaskinc |  TASK: [openshift_repos | Create any additional repos that are defined] ********
2016-03-15 11:53:40,600 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:40,604 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:40,607 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:40,610 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:40,626 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove the additional repos if no longer defined] ****
2016-03-15 11:53:41,039 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:53:41,119 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:53:41,163 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:53:41,195 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:53:41,206 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types RHEL/CentOS] ***
2016-03-15 11:53:41,628 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:53:41,702 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:53:41,743 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:53:41,767 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:53:42,201 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:53:42,222 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:53:42,236 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:53:42,314 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:53:42,615 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:53:42,623 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:42,722 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:53:42,723 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:53:42,731 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:42,732 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:42,761 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:53:42,771 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:43,025 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:53:43,148 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:53:43,187 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:53:43,265 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:53:43,461 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:53:43,556 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:53:43,596 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:53:43,689 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:53:43,987 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:53:44,023 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:53:44,048 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:53:44,078 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:53:44,098 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types Fedora] ***
2016-03-15 11:53:44,153 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:53:44,154 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:53:44,158 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:53:44,164 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:53:44,166 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:53:44,171 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:53:44,171 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:53:44,173 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:44,175 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:53:44,178 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:44,179 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:44,184 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:44,186 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:53:44,186 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:44,195 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:53:44,196 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:44,199 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:53:44,203 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:44,204 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:53:44,204 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:53:44,205 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:53:44,211 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:53:44,211 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:53:44,217 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:53:44,218 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:53:44,222 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:53:44,224 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:53:44,232 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:53:44,242 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure gpg keys if needed] ************************
2016-03-15 11:53:44,287 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:44,295 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:44,297 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:44,299 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:44,313 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories RHEL/CentOS] **************
2016-03-15 11:53:44,878 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": false, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "mode": "0644", "owner": "root", "path": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "state": "file", "uid": 0}
2016-03-15 11:53:44,983 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": false, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "mode": "0644", "owner": "root", "path": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "state": "file", "uid": 0}
2016-03-15 11:53:44,989 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": false, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "mode": "0644", "owner": "root", "path": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "state": "file", "uid": 0}
2016-03-15 11:53:45,057 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": false, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "mode": "0644", "owner": "root", "path": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "state": "file", "uid": 0}
2016-03-15 11:53:45,067 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories Fedora] *******************
2016-03-15 11:53:45,124 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:45,132 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:45,145 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:45,154 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-docker/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:53:45,169 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:53:45,215 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:45,228 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:45,228 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:45,238 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:45,248 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:53:45,288 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:45,294 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:45,295 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:45,298 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:45,313 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:53:45,363 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:45,363 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:45,372 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:45,377 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:45,386 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:53:45,434 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:53:45,438 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:53:45,443 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:53:45,446 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:53:45,457 p=8050 u=bpaskinc |  TASK: [openshift_common | Set common Cluster facts] ***************************
2016-03-15 11:53:47,846 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:53:47,891 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": [], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:53:47,966 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:53:47,978 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.2", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": [], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": null, "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": true}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true}
2016-03-15 11:53:47,999 p=8050 u=bpaskinc |  TASK: [openshift_common | Install the base package for versioning] ************
2016-03-15 11:54:48,119 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/maxamillion-origin-next/packages/origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID 669b00e2: NOKEY\nImporting GPG key 0x669B00E2:\n Userid     : \"maxamillion_origin-next (None) <maxamillion#[email protected]>\"\n Fingerprint: d035 03ff a639 e74e ddc0 430c c38b 81dd 669b 00e2\n From       : https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.syn.co.il\n * extras: centos.syn.co.il\n * updates: centos.syn.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: origin-clients = 1.1.3-0.git.0.8edc1be.el7.centos for package: origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: git for package: origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package git.x86_64 0:1.8.3.1-6.el7 will be installed\n--> Processing Dependency: perl-Git = 1.8.3.1-6.el7 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl >= 5.008 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(warnings) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(vars) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(strict) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(lib) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Git) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Getopt::Long) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::stat) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Temp) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Spec) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Path) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Find) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Copy) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Basename) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Exporter) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Error) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: /usr/bin/perl for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: libgnome-keyring.so.0()(64bit) for package: git-1.8.3.1-6.el7.x86_64\n--> Running transaction check\n---> Package libgnome-keyring.x86_64 0:3.8.0-3.el7 will be installed\n---> Package perl.x86_64 4:5.16.3-286.el7 will be installed\n--> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64\n---> Package perl-Error.noarch 1:0.17020-2.el7 will be installed\n---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed\n---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed\n---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed\n---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed\n--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch\n--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch\n---> Package perl-Git.noarch 0:1.8.3.1-6.el7 will be installed\n---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed\n---> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed\n--> Running transaction check\n---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed\n---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed\n---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed\n--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed\n--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch\n--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch\n---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed\n---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed\n---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed\n---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed\n---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed\n---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed\n---> Package perl-constant.noarch 0:1.27-2.el7 will be installed\n---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed\n---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed\n--> Running transaction check\n---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed\n---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed\n---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed\n--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed\n--> Running transaction check\n---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed\n---> Package perl-parent.noarch 1:0.225-244.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                Arch   Version            Repository               Size\n================================================================================\nInstalling:\n origin                 x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next  21 M\nInstalling for dependencies:\n git                    x86_64 1.8.3.1-6.el7      updates                 4.4 M\n libgnome-keyring       x86_64 3.8.0-3.el7        base                    109 k\n origin-clients         x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next 9.3 M\n perl                   x86_64 4:5.16.3-286.el7   base                    8.0 M\n perl-Carp              noarch 1.26-244.el7       base                     19 k\n perl-Encode            x86_64 2.51-7.el7         base                    1.5 M\n perl-Error             noarch 1:0.17020-2.el7    base                     32 k\n perl-Exporter          noarch 5.68-3.el7         base                     28 k\n perl-File-Path         noarch 2.09-2.el7         base                     26 k\n perl-File-Temp         noarch 0.23.01-3.el7      base                     56 k\n perl-Filter            x86_64 1.49-3.el7         base                     76 k\n perl-Getopt-Long       noarch 2.40-2.el7         base                     56 k\n perl-Git               noarch 1.8.3.1-6.el7      updates                  53 k\n perl-HTTP-Tiny         noarch 0.033-3.el7        base                     38 k\n perl-PathTools         x86_64 3.40-5.el7         base                     82 k\n perl-Pod-Escapes       noarch 1:1.04-286.el7     base                     50 k\n perl-Pod-Perldoc       noarch 3.20-4.el7         base                     87 k\n perl-Pod-Simple        noarch 1:3.28-4.el7       base                    216 k\n perl-Pod-Usage         noarch 1.63-3.el7         base                     27 k\n perl-Scalar-List-Utils x86_64 1.27-248.el7       base                     36 k\n perl-Socket            x86_64 2.010-3.el7        base                     49 k\n perl-Storable          x86_64 2.45-3.el7         base                     77 k\n perl-TermReadKey       x86_64 2.30-20.el7        base                     31 k\n perl-Text-ParseWords   noarch 3.29-4.el7         base                     14 k\n perl-Time-HiRes        x86_64 4:1.9725-3.el7     base                     45 k\n perl-Time-Local        noarch 1.2300-2.el7       base                     24 k\n perl-constant          noarch 1.27-2.el7         base                     19 k\n perl-libs              x86_64 4:5.16.3-286.el7   base                    687 k\n perl-macros            x86_64 4:5.16.3-286.el7   base                     43 k\n perl-parent            noarch 1:0.225-244.el7    base                     12 k\n perl-podlators         noarch 2.5.1-3.el7        base                    112 k\n perl-threads           x86_64 1.87-4.el7         base                     49 k\n perl-threads-shared    x86_64 1.43-6.el7         base                     39 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+33 Dependent packages)\n\nTotal download size: 46 M\nInstalled size: 230 M\nDownloading packages:\nPublic key for origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              2.2 MB/s |  46 MB  00:21     \nRetrieving key from https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 1:perl-parent-0.225-244.el7.noarch                          1/34 \n  Installing : perl-HTTP-Tiny-0.033-3.el7.noarch                           2/34 \n  Installing : perl-podlators-2.5.1-3.el7.noarch                           3/34 \n  Installing : perl-Pod-Perldoc-3.20-4.el7.noarch                          4/34 \n  Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch                      5/34 \n  Installing : perl-Encode-2.51-7.el7.x86_64                               6/34 \n  Installing : perl-Text-ParseWords-3.29-4.el7.noarch                      7/34 \n  Installing : perl-Pod-Usage-1.63-3.el7.noarch                            8/34 \n  Installing : 4:perl-libs-5.16.3-286.el7.x86_64                           9/34 \n  Installing : 4:perl-macros-5.16.3-286.el7.x86_64                        10/34 \n  Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      11/34 \n  Installing : perl-Exporter-5.68-3.el7.noarch                            12/34 \n  Installing : perl-constant-1.27-2.el7.noarch                            13/34 \n  Installing : perl-Time-Local-1.2300-2.el7.noarch                        14/34 \n  Installing : perl-Socket-2.010-3.el7.x86_64                             15/34 \n  Installing : perl-Carp-1.26-244.el7.noarch                              16/34 \n  Installing : perl-Storable-2.45-3.el7.x86_64                            17/34 \n  Installing : perl-PathTools-3.40-5.el7.x86_64                           18/34 \n  Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 19/34 \n  Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch                        20/34 \n  Installing : perl-File-Temp-0.23.01-3.el7.noarch                        21/34 \n  Installing : perl-File-Path-2.09-2.el7.noarch                           22/34 \n  Installing : perl-threads-shared-1.43-6.el7.x86_64                      23/34 \n  Installing : perl-threads-1.87-4.el7.x86_64                             24/34 \n  Installing : perl-Filter-1.49-3.el7.x86_64                              25/34 \n  Installing : perl-Getopt-Long-2.40-2.el7.noarch                         26/34 \n  Installing : 4:perl-5.16.3-286.el7.x86_64                               27/34 \n  Installing : 1:perl-Error-0.17020-2.el7.noarch                          28/34 \n  Installing : perl-TermReadKey-2.30-20.el7.x86_64                        29/34 \n  Installing : libgnome-keyring-3.8.0-3.el7.x86_64                        30/34 \n  Installing : perl-Git-1.8.3.1-6.el7.noarch                              31/34 \n  Installing : git-1.8.3.1-6.el7.x86_64                                   32/34 \n  Installing : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64     33/34 \n  Installing : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             34/34 \n  Verifying  : perl-HTTP-Tiny-0.033-3.el7.noarch                           1/34 \n  Verifying  : perl-threads-shared-1.43-6.el7.x86_64                       2/34 \n  Verifying  : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                       3/34 \n  Verifying  : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64      4/34 \n  Verifying  : perl-Exporter-5.68-3.el7.noarch                             5/34 \n  Verifying  : perl-constant-1.27-2.el7.noarch                             6/34 \n  Verifying  : perl-PathTools-3.40-5.el7.x86_64                            7/34 \n  Verifying  : 4:perl-libs-5.16.3-286.el7.x86_64                           8/34 \n  Verifying  : 4:perl-macros-5.16.3-286.el7.x86_64                         9/34 \n  Verifying  : 1:perl-Pod-Escapes-1.04-286.el7.noarch                     10/34 \n  Verifying  : 1:perl-parent-0.225-244.el7.noarch                         11/34 \n  Verifying  : perl-TermReadKey-2.30-20.el7.x86_64                        12/34 \n  Verifying  : perl-Git-1.8.3.1-6.el7.noarch                              13/34 \n  Verifying  : perl-File-Temp-0.23.01-3.el7.noarch                        14/34 \n  Verifying  : 1:perl-Pod-Simple-3.28-4.el7.noarch                        15/34 \n  Verifying  : perl-Time-Local-1.2300-2.el7.noarch                        16/34 \n  Verifying  : perl-Pod-Perldoc-3.20-4.el7.noarch                         17/34 \n  Verifying  : perl-Socket-2.010-3.el7.x86_64                             18/34 \n  Verifying  : perl-Carp-1.26-244.el7.noarch                              19/34 \n  Verifying  : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             20/34 \n  Verifying  : 1:perl-Error-0.17020-2.el7.noarch                          21/34 \n  Verifying  : perl-Storable-2.45-3.el7.x86_64                            22/34 \n  Verifying  : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 23/34 \n  Verifying  : git-1.8.3.1-6.el7.x86_64                                   24/34 \n  Verifying  : libgnome-keyring-3.8.0-3.el7.x86_64                        25/34 \n  Verifying  : perl-Pod-Usage-1.63-3.el7.noarch                           26/34 \n  Verifying  : perl-Encode-2.51-7.el7.x86_64                              27/34 \n  Verifying  : perl-podlators-2.5.1-3.el7.noarch                          28/34 \n  Verifying  : perl-Getopt-Long-2.40-2.el7.noarch                         29/34 \n  Verifying  : perl-File-Path-2.09-2.el7.noarch                           30/34 \n  Verifying  : perl-threads-1.87-4.el7.x86_64                             31/34 \n  Verifying  : perl-Filter-1.49-3.el7.x86_64                              32/34 \n  Verifying  : perl-Text-ParseWords-3.29-4.el7.noarch                     33/34 \n  Verifying  : 4:perl-5.16.3-286.el7.x86_64                               34/34 \n\nInstalled:\n  origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                              \n\nDependency Installed:\n  git.x86_64 0:1.8.3.1-6.el7                                                    \n  libgnome-keyring.x86_64 0:3.8.0-3.el7                                         \n  origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                      \n  perl.x86_64 4:5.16.3-286.el7                                                  \n  perl-Carp.noarch 0:1.26-244.el7                                               \n  perl-Encode.x86_64 0:2.51-7.el7                                               \n  perl-Error.noarch 1:0.17020-2.el7                                             \n  perl-Exporter.noarch 0:5.68-3.el7                                             \n  perl-File-Path.noarch 0:2.09-2.el7                                            \n  perl-File-Temp.noarch 0:0.23.01-3.el7                                         \n  perl-Filter.x86_64 0:1.49-3.el7                                               \n  perl-Getopt-Long.noarch 0:2.40-2.el7                                          \n  perl-Git.noarch 0:1.8.3.1-6.el7                                               \n  perl-HTTP-Tiny.noarch 0:0.033-3.el7                                           \n  perl-PathTools.x86_64 0:3.40-5.el7                                            \n  perl-Pod-Escapes.noarch 1:1.04-286.el7                                        \n  perl-Pod-Perldoc.noarch 0:3.20-4.el7                                          \n  perl-Pod-Simple.noarch 1:3.28-4.el7                                           \n  perl-Pod-Usage.noarch 0:1.63-3.el7                                            \n  perl-Scalar-List-Utils.x86_64 0:1.27-248.el7                                  \n  perl-Socket.x86_64 0:2.010-3.el7                                              \n  perl-Storable.x86_64 0:2.45-3.el7                                             \n  perl-TermReadKey.x86_64 0:2.30-20.el7                                         \n  perl-Text-ParseWords.noarch 0:3.29-4.el7                                      \n  perl-Time-HiRes.x86_64 4:1.9725-3.el7                                         \n  perl-Time-Local.noarch 0:1.2300-2.el7                                         \n  perl-constant.noarch 0:1.27-2.el7                                             \n  perl-libs.x86_64 4:5.16.3-286.el7                                             \n  perl-macros.x86_64 4:5.16.3-286.el7                                           \n  perl-parent.noarch 1:0.225-244.el7                                            \n  perl-podlators.noarch 0:2.5.1-3.el7                                           \n  perl-threads.x86_64 0:1.87-4.el7                                              \n  perl-threads-shared.x86_64 0:1.43-6.el7                                       \n\nComplete!\n"]}
2016-03-15 11:54:51,693 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/maxamillion-origin-next/packages/origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID 669b00e2: NOKEY\nImporting GPG key 0x669B00E2:\n Userid     : \"maxamillion_origin-next (None) <maxamillion#[email protected]>\"\n Fingerprint: d035 03ff a639 e74e ddc0 430c c38b 81dd 669b 00e2\n From       : https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: origin-clients = 1.1.3-0.git.0.8edc1be.el7.centos for package: origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: git for package: origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package git.x86_64 0:1.8.3.1-6.el7 will be installed\n--> Processing Dependency: perl-Git = 1.8.3.1-6.el7 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl >= 5.008 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(warnings) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(vars) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(strict) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(lib) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Git) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Getopt::Long) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::stat) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Temp) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Spec) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Path) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Find) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Copy) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Basename) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Exporter) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Error) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: /usr/bin/perl for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: libgnome-keyring.so.0()(64bit) for package: git-1.8.3.1-6.el7.x86_64\n--> Running transaction check\n---> Package libgnome-keyring.x86_64 0:3.8.0-3.el7 will be installed\n---> Package perl.x86_64 4:5.16.3-286.el7 will be installed\n--> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64\n---> Package perl-Error.noarch 1:0.17020-2.el7 will be installed\n---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed\n---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed\n---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed\n---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed\n--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch\n--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch\n---> Package perl-Git.noarch 0:1.8.3.1-6.el7 will be installed\n---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed\n---> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed\n--> Running transaction check\n---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed\n---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed\n---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed\n--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed\n--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch\n--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch\n---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed\n---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed\n---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed\n---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed\n---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed\n---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed\n---> Package perl-constant.noarch 0:1.27-2.el7 will be installed\n---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed\n---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed\n--> Running transaction check\n---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed\n---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed\n---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed\n--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed\n--> Running transaction check\n---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed\n---> Package perl-parent.noarch 1:0.225-244.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                Arch   Version            Repository               Size\n================================================================================\nInstalling:\n origin                 x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next  21 M\nInstalling for dependencies:\n git                    x86_64 1.8.3.1-6.el7      updates                 4.4 M\n libgnome-keyring       x86_64 3.8.0-3.el7        base                    109 k\n origin-clients         x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next 9.3 M\n perl                   x86_64 4:5.16.3-286.el7   base                    8.0 M\n perl-Carp              noarch 1.26-244.el7       base                     19 k\n perl-Encode            x86_64 2.51-7.el7         base                    1.5 M\n perl-Error             noarch 1:0.17020-2.el7    base                     32 k\n perl-Exporter          noarch 5.68-3.el7         base                     28 k\n perl-File-Path         noarch 2.09-2.el7         base                     26 k\n perl-File-Temp         noarch 0.23.01-3.el7      base                     56 k\n perl-Filter            x86_64 1.49-3.el7         base                     76 k\n perl-Getopt-Long       noarch 2.40-2.el7         base                     56 k\n perl-Git               noarch 1.8.3.1-6.el7      updates                  53 k\n perl-HTTP-Tiny         noarch 0.033-3.el7        base                     38 k\n perl-PathTools         x86_64 3.40-5.el7         base                     82 k\n perl-Pod-Escapes       noarch 1:1.04-286.el7     base                     50 k\n perl-Pod-Perldoc       noarch 3.20-4.el7         base                     87 k\n perl-Pod-Simple        noarch 1:3.28-4.el7       base                    216 k\n perl-Pod-Usage         noarch 1.63-3.el7         base                     27 k\n perl-Scalar-List-Utils x86_64 1.27-248.el7       base                     36 k\n perl-Socket            x86_64 2.010-3.el7        base                     49 k\n perl-Storable          x86_64 2.45-3.el7         base                     77 k\n perl-TermReadKey       x86_64 2.30-20.el7        base                     31 k\n perl-Text-ParseWords   noarch 3.29-4.el7         base                     14 k\n perl-Time-HiRes        x86_64 4:1.9725-3.el7     base                     45 k\n perl-Time-Local        noarch 1.2300-2.el7       base                     24 k\n perl-constant          noarch 1.27-2.el7         base                     19 k\n perl-libs              x86_64 4:5.16.3-286.el7   base                    687 k\n perl-macros            x86_64 4:5.16.3-286.el7   base                     43 k\n perl-parent            noarch 1:0.225-244.el7    base                     12 k\n perl-podlators         noarch 2.5.1-3.el7        base                    112 k\n perl-threads           x86_64 1.87-4.el7         base                     49 k\n perl-threads-shared    x86_64 1.43-6.el7         base                     39 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+33 Dependent packages)\n\nTotal download size: 46 M\nInstalled size: 230 M\nDownloading packages:\nPublic key for origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              1.9 MB/s |  46 MB  00:24     \nRetrieving key from https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 1:perl-parent-0.225-244.el7.noarch                          1/34 \n  Installing : perl-HTTP-Tiny-0.033-3.el7.noarch                           2/34 \n  Installing : perl-podlators-2.5.1-3.el7.noarch                           3/34 \n  Installing : perl-Pod-Perldoc-3.20-4.el7.noarch                          4/34 \n  Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch                      5/34 \n  Installing : perl-Encode-2.51-7.el7.x86_64                               6/34 \n  Installing : perl-Text-ParseWords-3.29-4.el7.noarch                      7/34 \n  Installing : perl-Pod-Usage-1.63-3.el7.noarch                            8/34 \n  Installing : 4:perl-libs-5.16.3-286.el7.x86_64                           9/34 \n  Installing : 4:perl-macros-5.16.3-286.el7.x86_64                        10/34 \n  Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      11/34 \n  Installing : perl-Exporter-5.68-3.el7.noarch                            12/34 \n  Installing : perl-constant-1.27-2.el7.noarch                            13/34 \n  Installing : perl-Time-Local-1.2300-2.el7.noarch                        14/34 \n  Installing : perl-Socket-2.010-3.el7.x86_64                             15/34 \n  Installing : perl-Carp-1.26-244.el7.noarch                              16/34 \n  Installing : perl-Storable-2.45-3.el7.x86_64                            17/34 \n  Installing : perl-PathTools-3.40-5.el7.x86_64                           18/34 \n  Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 19/34 \n  Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch                        20/34 \n  Installing : perl-File-Temp-0.23.01-3.el7.noarch                        21/34 \n  Installing : perl-File-Path-2.09-2.el7.noarch                           22/34 \n  Installing : perl-threads-shared-1.43-6.el7.x86_64                      23/34 \n  Installing : perl-threads-1.87-4.el7.x86_64                             24/34 \n  Installing : perl-Filter-1.49-3.el7.x86_64                              25/34 \n  Installing : perl-Getopt-Long-2.40-2.el7.noarch                         26/34 \n  Installing : 4:perl-5.16.3-286.el7.x86_64                               27/34 \n  Installing : 1:perl-Error-0.17020-2.el7.noarch                          28/34 \n  Installing : perl-TermReadKey-2.30-20.el7.x86_64                        29/34 \n  Installing : libgnome-keyring-3.8.0-3.el7.x86_64                        30/34 \n  Installing : perl-Git-1.8.3.1-6.el7.noarch                              31/34 \n  Installing : git-1.8.3.1-6.el7.x86_64                                   32/34 \n  Installing : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64     33/34 \n  Installing : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             34/34 \n  Verifying  : perl-HTTP-Tiny-0.033-3.el7.noarch                           1/34 \n  Verifying  : perl-threads-shared-1.43-6.el7.x86_64                       2/34 \n  Verifying  : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                       3/34 \n  Verifying  : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64      4/34 \n  Verifying  : perl-Exporter-5.68-3.el7.noarch                             5/34 \n  Verifying  : perl-constant-1.27-2.el7.noarch                             6/34 \n  Verifying  : perl-PathTools-3.40-5.el7.x86_64                            7/34 \n  Verifying  : 4:perl-libs-5.16.3-286.el7.x86_64                           8/34 \n  Verifying  : 4:perl-macros-5.16.3-286.el7.x86_64                         9/34 \n  Verifying  : 1:perl-Pod-Escapes-1.04-286.el7.noarch                     10/34 \n  Verifying  : 1:perl-parent-0.225-244.el7.noarch                         11/34 \n  Verifying  : perl-TermReadKey-2.30-20.el7.x86_64                        12/34 \n  Verifying  : perl-Git-1.8.3.1-6.el7.noarch                              13/34 \n  Verifying  : perl-File-Temp-0.23.01-3.el7.noarch                        14/34 \n  Verifying  : 1:perl-Pod-Simple-3.28-4.el7.noarch                        15/34 \n  Verifying  : perl-Time-Local-1.2300-2.el7.noarch                        16/34 \n  Verifying  : perl-Pod-Perldoc-3.20-4.el7.noarch                         17/34 \n  Verifying  : perl-Socket-2.010-3.el7.x86_64                             18/34 \n  Verifying  : perl-Carp-1.26-244.el7.noarch                              19/34 \n  Verifying  : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             20/34 \n  Verifying  : 1:perl-Error-0.17020-2.el7.noarch                          21/34 \n  Verifying  : perl-Storable-2.45-3.el7.x86_64                            22/34 \n  Verifying  : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 23/34 \n  Verifying  : git-1.8.3.1-6.el7.x86_64                                   24/34 \n  Verifying  : libgnome-keyring-3.8.0-3.el7.x86_64                        25/34 \n  Verifying  : perl-Pod-Usage-1.63-3.el7.noarch                           26/34 \n  Verifying  : perl-Encode-2.51-7.el7.x86_64                              27/34 \n  Verifying  : perl-podlators-2.5.1-3.el7.noarch                          28/34 \n  Verifying  : perl-Getopt-Long-2.40-2.el7.noarch                         29/34 \n  Verifying  : perl-File-Path-2.09-2.el7.noarch                           30/34 \n  Verifying  : perl-threads-1.87-4.el7.x86_64                             31/34 \n  Verifying  : perl-Filter-1.49-3.el7.x86_64                              32/34 \n  Verifying  : perl-Text-ParseWords-3.29-4.el7.noarch                     33/34 \n  Verifying  : 4:perl-5.16.3-286.el7.x86_64                               34/34 \n\nInstalled:\n  origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                              \n\nDependency Installed:\n  git.x86_64 0:1.8.3.1-6.el7                                                    \n  libgnome-keyring.x86_64 0:3.8.0-3.el7                                         \n  origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                      \n  perl.x86_64 4:5.16.3-286.el7                                                  \n  perl-Carp.noarch 0:1.26-244.el7                                               \n  perl-Encode.x86_64 0:2.51-7.el7                                               \n  perl-Error.noarch 1:0.17020-2.el7                                             \n  perl-Exporter.noarch 0:5.68-3.el7                                             \n  perl-File-Path.noarch 0:2.09-2.el7                                            \n  perl-File-Temp.noarch 0:0.23.01-3.el7                                         \n  perl-Filter.x86_64 0:1.49-3.el7                                               \n  perl-Getopt-Long.noarch 0:2.40-2.el7                                          \n  perl-Git.noarch 0:1.8.3.1-6.el7                                               \n  perl-HTTP-Tiny.noarch 0:0.033-3.el7                                           \n  perl-PathTools.x86_64 0:3.40-5.el7                                            \n  perl-Pod-Escapes.noarch 1:1.04-286.el7                                        \n  perl-Pod-Perldoc.noarch 0:3.20-4.el7                                          \n  perl-Pod-Simple.noarch 1:3.28-4.el7                                           \n  perl-Pod-Usage.noarch 0:1.63-3.el7                                            \n  perl-Scalar-List-Utils.x86_64 0:1.27-248.el7                                  \n  perl-Socket.x86_64 0:2.010-3.el7                                              \n  perl-Storable.x86_64 0:2.45-3.el7                                             \n  perl-TermReadKey.x86_64 0:2.30-20.el7                                         \n  perl-Text-ParseWords.noarch 0:3.29-4.el7                                      \n  perl-Time-HiRes.x86_64 4:1.9725-3.el7                                         \n  perl-Time-Local.noarch 0:1.2300-2.el7                                         \n  perl-constant.noarch 0:1.27-2.el7                                             \n  perl-libs.x86_64 4:5.16.3-286.el7                                             \n  perl-macros.x86_64 4:5.16.3-286.el7                                           \n  perl-parent.noarch 1:0.225-244.el7                                            \n  perl-podlators.noarch 0:2.5.1-3.el7                                           \n  perl-threads.x86_64 0:1.87-4.el7                                              \n  perl-threads-shared.x86_64 0:1.43-6.el7                                       \n\nComplete!\n"]}
2016-03-15 11:54:57,923 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/maxamillion-origin-next/packages/origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID 669b00e2: NOKEY\nImporting GPG key 0x669B00E2:\n Userid     : \"maxamillion_origin-next (None) <maxamillion#[email protected]>\"\n Fingerprint: d035 03ff a639 e74e ddc0 430c c38b 81dd 669b 00e2\n From       : https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.joinweb.co.il\n * extras: centos.joinweb.co.il\n * updates: centos.joinweb.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: origin-clients = 1.1.3-0.git.0.8edc1be.el7.centos for package: origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: git for package: origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package git.x86_64 0:1.8.3.1-6.el7 will be installed\n--> Processing Dependency: perl-Git = 1.8.3.1-6.el7 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl >= 5.008 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(warnings) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(vars) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(strict) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(lib) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Git) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Getopt::Long) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::stat) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Temp) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Spec) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Path) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Find) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Copy) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Basename) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Exporter) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Error) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: /usr/bin/perl for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: libgnome-keyring.so.0()(64bit) for package: git-1.8.3.1-6.el7.x86_64\n--> Running transaction check\n---> Package libgnome-keyring.x86_64 0:3.8.0-3.el7 will be installed\n---> Package perl.x86_64 4:5.16.3-286.el7 will be installed\n--> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64\n---> Package perl-Error.noarch 1:0.17020-2.el7 will be installed\n---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed\n---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed\n---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed\n---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed\n--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch\n--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch\n---> Package perl-Git.noarch 0:1.8.3.1-6.el7 will be installed\n---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed\n---> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed\n--> Running transaction check\n---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed\n---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed\n---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed\n--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed\n--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch\n--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch\n---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed\n---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed\n---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed\n---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed\n---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed\n---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed\n---> Package perl-constant.noarch 0:1.27-2.el7 will be installed\n---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed\n---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed\n--> Running transaction check\n---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed\n---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed\n---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed\n--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed\n--> Running transaction check\n---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed\n---> Package perl-parent.noarch 1:0.225-244.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                Arch   Version            Repository               Size\n================================================================================\nInstalling:\n origin                 x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next  21 M\nInstalling for dependencies:\n git                    x86_64 1.8.3.1-6.el7      updates                 4.4 M\n libgnome-keyring       x86_64 3.8.0-3.el7        base                    109 k\n origin-clients         x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next 9.3 M\n perl                   x86_64 4:5.16.3-286.el7   base                    8.0 M\n perl-Carp              noarch 1.26-244.el7       base                     19 k\n perl-Encode            x86_64 2.51-7.el7         base                    1.5 M\n perl-Error             noarch 1:0.17020-2.el7    base                     32 k\n perl-Exporter          noarch 5.68-3.el7         base                     28 k\n perl-File-Path         noarch 2.09-2.el7         base                     26 k\n perl-File-Temp         noarch 0.23.01-3.el7      base                     56 k\n perl-Filter            x86_64 1.49-3.el7         base                     76 k\n perl-Getopt-Long       noarch 2.40-2.el7         base                     56 k\n perl-Git               noarch 1.8.3.1-6.el7      updates                  53 k\n perl-HTTP-Tiny         noarch 0.033-3.el7        base                     38 k\n perl-PathTools         x86_64 3.40-5.el7         base                     82 k\n perl-Pod-Escapes       noarch 1:1.04-286.el7     base                     50 k\n perl-Pod-Perldoc       noarch 3.20-4.el7         base                     87 k\n perl-Pod-Simple        noarch 1:3.28-4.el7       base                    216 k\n perl-Pod-Usage         noarch 1.63-3.el7         base                     27 k\n perl-Scalar-List-Utils x86_64 1.27-248.el7       base                     36 k\n perl-Socket            x86_64 2.010-3.el7        base                     49 k\n perl-Storable          x86_64 2.45-3.el7         base                     77 k\n perl-TermReadKey       x86_64 2.30-20.el7        base                     31 k\n perl-Text-ParseWords   noarch 3.29-4.el7         base                     14 k\n perl-Time-HiRes        x86_64 4:1.9725-3.el7     base                     45 k\n perl-Time-Local        noarch 1.2300-2.el7       base                     24 k\n perl-constant          noarch 1.27-2.el7         base                     19 k\n perl-libs              x86_64 4:5.16.3-286.el7   base                    687 k\n perl-macros            x86_64 4:5.16.3-286.el7   base                     43 k\n perl-parent            noarch 1:0.225-244.el7    base                     12 k\n perl-podlators         noarch 2.5.1-3.el7        base                    112 k\n perl-threads           x86_64 1.87-4.el7         base                     49 k\n perl-threads-shared    x86_64 1.43-6.el7         base                     39 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+33 Dependent packages)\n\nTotal download size: 46 M\nInstalled size: 230 M\nDownloading packages:\nPublic key for origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              1.7 MB/s |  46 MB  00:27     \nRetrieving key from https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 1:perl-parent-0.225-244.el7.noarch                          1/34 \n  Installing : perl-HTTP-Tiny-0.033-3.el7.noarch                           2/34 \n  Installing : perl-podlators-2.5.1-3.el7.noarch                           3/34 \n  Installing : perl-Pod-Perldoc-3.20-4.el7.noarch                          4/34 \n  Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch                      5/34 \n  Installing : perl-Encode-2.51-7.el7.x86_64                               6/34 \n  Installing : perl-Text-ParseWords-3.29-4.el7.noarch                      7/34 \n  Installing : perl-Pod-Usage-1.63-3.el7.noarch                            8/34 \n  Installing : 4:perl-libs-5.16.3-286.el7.x86_64                           9/34 \n  Installing : 4:perl-macros-5.16.3-286.el7.x86_64                        10/34 \n  Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      11/34 \n  Installing : perl-Exporter-5.68-3.el7.noarch                            12/34 \n  Installing : perl-constant-1.27-2.el7.noarch                            13/34 \n  Installing : perl-Time-Local-1.2300-2.el7.noarch                        14/34 \n  Installing : perl-Socket-2.010-3.el7.x86_64                             15/34 \n  Installing : perl-Carp-1.26-244.el7.noarch                              16/34 \n  Installing : perl-Storable-2.45-3.el7.x86_64                            17/34 \n  Installing : perl-PathTools-3.40-5.el7.x86_64                           18/34 \n  Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 19/34 \n  Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch                        20/34 \n  Installing : perl-File-Temp-0.23.01-3.el7.noarch                        21/34 \n  Installing : perl-File-Path-2.09-2.el7.noarch                           22/34 \n  Installing : perl-threads-shared-1.43-6.el7.x86_64                      23/34 \n  Installing : perl-threads-1.87-4.el7.x86_64                             24/34 \n  Installing : perl-Filter-1.49-3.el7.x86_64                              25/34 \n  Installing : perl-Getopt-Long-2.40-2.el7.noarch                         26/34 \n  Installing : 4:perl-5.16.3-286.el7.x86_64                               27/34 \n  Installing : 1:perl-Error-0.17020-2.el7.noarch                          28/34 \n  Installing : perl-TermReadKey-2.30-20.el7.x86_64                        29/34 \n  Installing : libgnome-keyring-3.8.0-3.el7.x86_64                        30/34 \n  Installing : perl-Git-1.8.3.1-6.el7.noarch                              31/34 \n  Installing : git-1.8.3.1-6.el7.x86_64                                   32/34 \n  Installing : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64     33/34 \n  Installing : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             34/34 \n  Verifying  : perl-HTTP-Tiny-0.033-3.el7.noarch                           1/34 \n  Verifying  : perl-threads-shared-1.43-6.el7.x86_64                       2/34 \n  Verifying  : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                       3/34 \n  Verifying  : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64      4/34 \n  Verifying  : perl-Exporter-5.68-3.el7.noarch                             5/34 \n  Verifying  : perl-constant-1.27-2.el7.noarch                             6/34 \n  Verifying  : perl-PathTools-3.40-5.el7.x86_64                            7/34 \n  Verifying  : 4:perl-libs-5.16.3-286.el7.x86_64                           8/34 \n  Verifying  : 4:perl-macros-5.16.3-286.el7.x86_64                         9/34 \n  Verifying  : 1:perl-Pod-Escapes-1.04-286.el7.noarch                     10/34 \n  Verifying  : 1:perl-parent-0.225-244.el7.noarch                         11/34 \n  Verifying  : perl-TermReadKey-2.30-20.el7.x86_64                        12/34 \n  Verifying  : perl-Git-1.8.3.1-6.el7.noarch                              13/34 \n  Verifying  : perl-File-Temp-0.23.01-3.el7.noarch                        14/34 \n  Verifying  : 1:perl-Pod-Simple-3.28-4.el7.noarch                        15/34 \n  Verifying  : perl-Time-Local-1.2300-2.el7.noarch                        16/34 \n  Verifying  : perl-Pod-Perldoc-3.20-4.el7.noarch                         17/34 \n  Verifying  : perl-Socket-2.010-3.el7.x86_64                             18/34 \n  Verifying  : perl-Carp-1.26-244.el7.noarch                              19/34 \n  Verifying  : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             20/34 \n  Verifying  : 1:perl-Error-0.17020-2.el7.noarch                          21/34 \n  Verifying  : perl-Storable-2.45-3.el7.x86_64                            22/34 \n  Verifying  : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 23/34 \n  Verifying  : git-1.8.3.1-6.el7.x86_64                                   24/34 \n  Verifying  : libgnome-keyring-3.8.0-3.el7.x86_64                        25/34 \n  Verifying  : perl-Pod-Usage-1.63-3.el7.noarch                           26/34 \n  Verifying  : perl-Encode-2.51-7.el7.x86_64                              27/34 \n  Verifying  : perl-podlators-2.5.1-3.el7.noarch                          28/34 \n  Verifying  : perl-Getopt-Long-2.40-2.el7.noarch                         29/34 \n  Verifying  : perl-File-Path-2.09-2.el7.noarch                           30/34 \n  Verifying  : perl-threads-1.87-4.el7.x86_64                             31/34 \n  Verifying  : perl-Filter-1.49-3.el7.x86_64                              32/34 \n  Verifying  : perl-Text-ParseWords-3.29-4.el7.noarch                     33/34 \n  Verifying  : 4:perl-5.16.3-286.el7.x86_64                               34/34 \n\nInstalled:\n  origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                              \n\nDependency Installed:\n  git.x86_64 0:1.8.3.1-6.el7                                                    \n  libgnome-keyring.x86_64 0:3.8.0-3.el7                                         \n  origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                      \n  perl.x86_64 4:5.16.3-286.el7                                                  \n  perl-Carp.noarch 0:1.26-244.el7                                               \n  perl-Encode.x86_64 0:2.51-7.el7                                               \n  perl-Error.noarch 1:0.17020-2.el7                                             \n  perl-Exporter.noarch 0:5.68-3.el7                                             \n  perl-File-Path.noarch 0:2.09-2.el7                                            \n  perl-File-Temp.noarch 0:0.23.01-3.el7                                         \n  perl-Filter.x86_64 0:1.49-3.el7                                               \n  perl-Getopt-Long.noarch 0:2.40-2.el7                                          \n  perl-Git.noarch 0:1.8.3.1-6.el7                                               \n  perl-HTTP-Tiny.noarch 0:0.033-3.el7                                           \n  perl-PathTools.x86_64 0:3.40-5.el7                                            \n  perl-Pod-Escapes.noarch 1:1.04-286.el7                                        \n  perl-Pod-Perldoc.noarch 0:3.20-4.el7                                          \n  perl-Pod-Simple.noarch 1:3.28-4.el7                                           \n  perl-Pod-Usage.noarch 0:1.63-3.el7                                            \n  perl-Scalar-List-Utils.x86_64 0:1.27-248.el7                                  \n  perl-Socket.x86_64 0:2.010-3.el7                                              \n  perl-Storable.x86_64 0:2.45-3.el7                                             \n  perl-TermReadKey.x86_64 0:2.30-20.el7                                         \n  perl-Text-ParseWords.noarch 0:3.29-4.el7                                      \n  perl-Time-HiRes.x86_64 4:1.9725-3.el7                                         \n  perl-Time-Local.noarch 0:1.2300-2.el7                                         \n  perl-constant.noarch 0:1.27-2.el7                                             \n  perl-libs.x86_64 4:5.16.3-286.el7                                             \n  perl-macros.x86_64 4:5.16.3-286.el7                                           \n  perl-parent.noarch 1:0.225-244.el7                                            \n  perl-podlators.noarch 0:2.5.1-3.el7                                           \n  perl-threads.x86_64 0:1.87-4.el7                                              \n  perl-threads-shared.x86_64 0:1.43-6.el7                                       \n\nComplete!\n"]}
2016-03-15 11:55:05,034 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "msg": "warning: /var/cache/yum/x86_64/7/maxamillion-origin-next/packages/origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID 669b00e2: NOKEY\nImporting GPG key 0x669B00E2:\n Userid     : \"maxamillion_origin-next (None) <maxamillion#[email protected]>\"\n Fingerprint: d035 03ff a639 e74e ddc0 430c c38b 81dd 669b 00e2\n From       : https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\n", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: origin-clients = 1.1.3-0.git.0.8edc1be.el7.centos for package: origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Processing Dependency: git for package: origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64\n--> Running transaction check\n---> Package git.x86_64 0:1.8.3.1-6.el7 will be installed\n--> Processing Dependency: perl-Git = 1.8.3.1-6.el7 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl >= 5.008 for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(warnings) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(vars) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(strict) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(lib) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Git) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Getopt::Long) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::stat) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Temp) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Spec) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Path) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Find) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Copy) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(File::Basename) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Exporter) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: perl(Error) for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: /usr/bin/perl for package: git-1.8.3.1-6.el7.x86_64\n--> Processing Dependency: libgnome-keyring.so.0()(64bit) for package: git-1.8.3.1-6.el7.x86_64\n--> Running transaction check\n---> Package libgnome-keyring.x86_64 0:3.8.0-3.el7 will be installed\n---> Package perl.x86_64 4:5.16.3-286.el7 will be installed\n--> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64\n--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64\n---> Package perl-Error.noarch 1:0.17020-2.el7 will be installed\n---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed\n---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed\n---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed\n---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed\n--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch\n--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch\n---> Package perl-Git.noarch 0:1.8.3.1-6.el7 will be installed\n---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed\n---> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed\n--> Running transaction check\n---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed\n---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed\n---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed\n--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch\n---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed\n--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch\n--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch\n---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed\n---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed\n---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed\n---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed\n---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed\n---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed\n---> Package perl-constant.noarch 0:1.27-2.el7 will be installed\n---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed\n---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed\n---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed\n--> Running transaction check\n---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed\n---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed\n---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed\n--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch\n---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed\n--> Running transaction check\n---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed\n---> Package perl-parent.noarch 1:0.225-244.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                Arch   Version            Repository               Size\n================================================================================\nInstalling:\n origin                 x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next  21 M\nInstalling for dependencies:\n git                    x86_64 1.8.3.1-6.el7      updates                 4.4 M\n libgnome-keyring       x86_64 3.8.0-3.el7        base                    109 k\n origin-clients         x86_64 1.1.3-0.git.0.8edc1be.el7.centos\n                                                  maxamillion-origin-next 9.3 M\n perl                   x86_64 4:5.16.3-286.el7   base                    8.0 M\n perl-Carp              noarch 1.26-244.el7       base                     19 k\n perl-Encode            x86_64 2.51-7.el7         base                    1.5 M\n perl-Error             noarch 1:0.17020-2.el7    base                     32 k\n perl-Exporter          noarch 5.68-3.el7         base                     28 k\n perl-File-Path         noarch 2.09-2.el7         base                     26 k\n perl-File-Temp         noarch 0.23.01-3.el7      base                     56 k\n perl-Filter            x86_64 1.49-3.el7         base                     76 k\n perl-Getopt-Long       noarch 2.40-2.el7         base                     56 k\n perl-Git               noarch 1.8.3.1-6.el7      updates                  53 k\n perl-HTTP-Tiny         noarch 0.033-3.el7        base                     38 k\n perl-PathTools         x86_64 3.40-5.el7         base                     82 k\n perl-Pod-Escapes       noarch 1:1.04-286.el7     base                     50 k\n perl-Pod-Perldoc       noarch 3.20-4.el7         base                     87 k\n perl-Pod-Simple        noarch 1:3.28-4.el7       base                    216 k\n perl-Pod-Usage         noarch 1.63-3.el7         base                     27 k\n perl-Scalar-List-Utils x86_64 1.27-248.el7       base                     36 k\n perl-Socket            x86_64 2.010-3.el7        base                     49 k\n perl-Storable          x86_64 2.45-3.el7         base                     77 k\n perl-TermReadKey       x86_64 2.30-20.el7        base                     31 k\n perl-Text-ParseWords   noarch 3.29-4.el7         base                     14 k\n perl-Time-HiRes        x86_64 4:1.9725-3.el7     base                     45 k\n perl-Time-Local        noarch 1.2300-2.el7       base                     24 k\n perl-constant          noarch 1.27-2.el7         base                     19 k\n perl-libs              x86_64 4:5.16.3-286.el7   base                    687 k\n perl-macros            x86_64 4:5.16.3-286.el7   base                     43 k\n perl-parent            noarch 1:0.225-244.el7    base                     12 k\n perl-podlators         noarch 2.5.1-3.el7        base                    112 k\n perl-threads           x86_64 1.87-4.el7         base                     49 k\n perl-threads-shared    x86_64 1.43-6.el7         base                     39 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+33 Dependent packages)\n\nTotal download size: 46 M\nInstalled size: 230 M\nDownloading packages:\nPublic key for origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64.rpm is not installed\n--------------------------------------------------------------------------------\nTotal                                              1.3 MB/s |  46 MB  00:36     \nRetrieving key from https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 1:perl-parent-0.225-244.el7.noarch                          1/34 \n  Installing : perl-HTTP-Tiny-0.033-3.el7.noarch                           2/34 \n  Installing : perl-podlators-2.5.1-3.el7.noarch                           3/34 \n  Installing : perl-Pod-Perldoc-3.20-4.el7.noarch                          4/34 \n  Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch                      5/34 \n  Installing : perl-Encode-2.51-7.el7.x86_64                               6/34 \n  Installing : perl-Text-ParseWords-3.29-4.el7.noarch                      7/34 \n  Installing : perl-Pod-Usage-1.63-3.el7.noarch                            8/34 \n  Installing : 4:perl-libs-5.16.3-286.el7.x86_64                           9/34 \n  Installing : 4:perl-macros-5.16.3-286.el7.x86_64                        10/34 \n  Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      11/34 \n  Installing : perl-Exporter-5.68-3.el7.noarch                            12/34 \n  Installing : perl-constant-1.27-2.el7.noarch                            13/34 \n  Installing : perl-Time-Local-1.2300-2.el7.noarch                        14/34 \n  Installing : perl-Socket-2.010-3.el7.x86_64                             15/34 \n  Installing : perl-Carp-1.26-244.el7.noarch                              16/34 \n  Installing : perl-Storable-2.45-3.el7.x86_64                            17/34 \n  Installing : perl-PathTools-3.40-5.el7.x86_64                           18/34 \n  Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 19/34 \n  Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch                        20/34 \n  Installing : perl-File-Temp-0.23.01-3.el7.noarch                        21/34 \n  Installing : perl-File-Path-2.09-2.el7.noarch                           22/34 \n  Installing : perl-threads-shared-1.43-6.el7.x86_64                      23/34 \n  Installing : perl-threads-1.87-4.el7.x86_64                             24/34 \n  Installing : perl-Filter-1.49-3.el7.x86_64                              25/34 \n  Installing : perl-Getopt-Long-2.40-2.el7.noarch                         26/34 \n  Installing : 4:perl-5.16.3-286.el7.x86_64                               27/34 \n  Installing : 1:perl-Error-0.17020-2.el7.noarch                          28/34 \n  Installing : perl-TermReadKey-2.30-20.el7.x86_64                        29/34 \n  Installing : libgnome-keyring-3.8.0-3.el7.x86_64                        30/34 \n  Installing : perl-Git-1.8.3.1-6.el7.noarch                              31/34 \n  Installing : git-1.8.3.1-6.el7.x86_64                                   32/34 \n  Installing : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64     33/34 \n  Installing : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             34/34 \n  Verifying  : perl-HTTP-Tiny-0.033-3.el7.noarch                           1/34 \n  Verifying  : perl-threads-shared-1.43-6.el7.x86_64                       2/34 \n  Verifying  : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                       3/34 \n  Verifying  : origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64      4/34 \n  Verifying  : perl-Exporter-5.68-3.el7.noarch                             5/34 \n  Verifying  : perl-constant-1.27-2.el7.noarch                             6/34 \n  Verifying  : perl-PathTools-3.40-5.el7.x86_64                            7/34 \n  Verifying  : 4:perl-libs-5.16.3-286.el7.x86_64                           8/34 \n  Verifying  : 4:perl-macros-5.16.3-286.el7.x86_64                         9/34 \n  Verifying  : 1:perl-Pod-Escapes-1.04-286.el7.noarch                     10/34 \n  Verifying  : 1:perl-parent-0.225-244.el7.noarch                         11/34 \n  Verifying  : perl-TermReadKey-2.30-20.el7.x86_64                        12/34 \n  Verifying  : perl-Git-1.8.3.1-6.el7.noarch                              13/34 \n  Verifying  : perl-File-Temp-0.23.01-3.el7.noarch                        14/34 \n  Verifying  : 1:perl-Pod-Simple-3.28-4.el7.noarch                        15/34 \n  Verifying  : perl-Time-Local-1.2300-2.el7.noarch                        16/34 \n  Verifying  : perl-Pod-Perldoc-3.20-4.el7.noarch                         17/34 \n  Verifying  : perl-Socket-2.010-3.el7.x86_64                             18/34 \n  Verifying  : perl-Carp-1.26-244.el7.noarch                              19/34 \n  Verifying  : origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64             20/34 \n  Verifying  : 1:perl-Error-0.17020-2.el7.noarch                          21/34 \n  Verifying  : perl-Storable-2.45-3.el7.x86_64                            22/34 \n  Verifying  : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 23/34 \n  Verifying  : git-1.8.3.1-6.el7.x86_64                                   24/34 \n  Verifying  : libgnome-keyring-3.8.0-3.el7.x86_64                        25/34 \n  Verifying  : perl-Pod-Usage-1.63-3.el7.noarch                           26/34 \n  Verifying  : perl-Encode-2.51-7.el7.x86_64                              27/34 \n  Verifying  : perl-podlators-2.5.1-3.el7.noarch                          28/34 \n  Verifying  : perl-Getopt-Long-2.40-2.el7.noarch                         29/34 \n  Verifying  : perl-File-Path-2.09-2.el7.noarch                           30/34 \n  Verifying  : perl-threads-1.87-4.el7.x86_64                             31/34 \n  Verifying  : perl-Filter-1.49-3.el7.x86_64                              32/34 \n  Verifying  : perl-Text-ParseWords-3.29-4.el7.noarch                     33/34 \n  Verifying  : 4:perl-5.16.3-286.el7.x86_64                               34/34 \n\nInstalled:\n  origin.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                              \n\nDependency Installed:\n  git.x86_64 0:1.8.3.1-6.el7                                                    \n  libgnome-keyring.x86_64 0:3.8.0-3.el7                                         \n  origin-clients.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                      \n  perl.x86_64 4:5.16.3-286.el7                                                  \n  perl-Carp.noarch 0:1.26-244.el7                                               \n  perl-Encode.x86_64 0:2.51-7.el7                                               \n  perl-Error.noarch 1:0.17020-2.el7                                             \n  perl-Exporter.noarch 0:5.68-3.el7                                             \n  perl-File-Path.noarch 0:2.09-2.el7                                            \n  perl-File-Temp.noarch 0:0.23.01-3.el7                                         \n  perl-Filter.x86_64 0:1.49-3.el7                                               \n  perl-Getopt-Long.noarch 0:2.40-2.el7                                          \n  perl-Git.noarch 0:1.8.3.1-6.el7                                               \n  perl-HTTP-Tiny.noarch 0:0.033-3.el7                                           \n  perl-PathTools.x86_64 0:3.40-5.el7                                            \n  perl-Pod-Escapes.noarch 1:1.04-286.el7                                        \n  perl-Pod-Perldoc.noarch 0:3.20-4.el7                                          \n  perl-Pod-Simple.noarch 1:3.28-4.el7                                           \n  perl-Pod-Usage.noarch 0:1.63-3.el7                                            \n  perl-Scalar-List-Utils.x86_64 0:1.27-248.el7                                  \n  perl-Socket.x86_64 0:2.010-3.el7                                              \n  perl-Storable.x86_64 0:2.45-3.el7                                             \n  perl-TermReadKey.x86_64 0:2.30-20.el7                                         \n  perl-Text-ParseWords.noarch 0:3.29-4.el7                                      \n  perl-Time-HiRes.x86_64 4:1.9725-3.el7                                         \n  perl-Time-Local.noarch 0:1.2300-2.el7                                         \n  perl-constant.noarch 0:1.27-2.el7                                             \n  perl-libs.x86_64 4:5.16.3-286.el7                                             \n  perl-macros.x86_64 4:5.16.3-286.el7                                           \n  perl-parent.noarch 1:0.225-244.el7                                            \n  perl-podlators.noarch 0:2.5.1-3.el7                                           \n  perl-threads.x86_64 0:1.87-4.el7                                              \n  perl-threads-shared.x86_64 0:1.43-6.el7                                       \n\nComplete!\n"]}
2016-03-15 11:55:05,046 p=8050 u=bpaskinc |  TASK: [openshift_common | openshift_facts] ************************************
2016-03-15 11:55:07,726 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:55:07,907 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:55:07,941 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.1", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:55:07,971 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": false}
2016-03-15 11:55:07,984 p=8050 u=bpaskinc |  TASK: [openshift_common | set_fact ] ******************************************
2016-03-15 11:55:08,030 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"set_hostname_default": "False"}}
2016-03-15 11:55:08,038 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"set_hostname_default": "False"}}
2016-03-15 11:55:08,043 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"set_hostname_default": "False"}}
2016-03-15 11:55:08,044 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"set_hostname_default": "False"}}
2016-03-15 11:55:08,053 p=8050 u=bpaskinc |  TASK: [openshift_common | Set hostname] ***************************************
2016-03-15 11:55:08,102 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:55:08,112 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:55:08,114 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:55:08,118 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:55:08,129 p=8050 u=bpaskinc |  TASK: [docker | Install docker] ***********************************************
2016-03-15 11:56:05,147 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.syn.co.il\n * extras: centos.syn.co.il\n * updates: centos.syn.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package docker.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n--> Processing Dependency: docker-forward-journald = 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: docker-selinux >= 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: lvm2 >= 2.02.112 for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: subscription-manager for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Running transaction check\n---> Package docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package lvm2.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: lvm2-libs = 7:2.02.130-5.el7_2.1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: device-mapper-persistent-data >= 0.5.5-1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n---> Package subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1 will be installed\n--> Processing Dependency: python-rhsm >= 1.15.0 for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: usermode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-ethtool for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dmidecode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dateutil for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Running transaction check\n---> Package device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package device-mapper-persistent-data.x86_64 0:0.5.5-1.el7 will be installed\n--> Processing Dependency: libaio.so.1(LIBAIO_0.4)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1(LIBAIO_0.1)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1()(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n---> Package lvm2-libs.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: device-mapper-event = 7:1.02.107-5.el7_2.1 for package: 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64\n---> Package python-dateutil.noarch 0:1.5-7.el7 will be installed\n---> Package python-dmidecode.x86_64 0:3.10.13-11.el7 will be installed\n--> Processing Dependency: libxml2-python for package: python-dmidecode-3.10.13-11.el7.x86_64\n--> Processing Dependency: libxml2mod.so()(64bit) for package: python-dmidecode-3.10.13-11.el7.x86_64\n---> Package python-ethtool.x86_64 0:0.8-5.el7 will be installed\n--> Processing Dependency: libnl.so.1()(64bit) for package: python-ethtool-0.8-5.el7.x86_64\n---> Package python-rhsm.x86_64 0:1.15.4-5.el7 will be installed\n--> Processing Dependency: m2crypto for package: python-rhsm-1.15.4-5.el7.x86_64\n---> Package usermode.x86_64 0:1.111-5.el7 will be installed\n--> Running transaction check\n---> Package device-mapper-event.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed\n---> Package libnl.x86_64 0:1.1.4-3.el7 will be installed\n---> Package libxml2-python.x86_64 0:2.9.1-6.el7_2.2 will be installed\n---> Package m2crypto.x86_64 0:0.21.1-17.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                    Arch   Version                      Repository\n                                                                           Size\n================================================================================\nInstalling:\n docker                     x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           13 M\nInstalling for dependencies:\n device-mapper-event        x86_64 7:1.02.107-5.el7_2.1         updates   167 k\n device-mapper-event-libs   x86_64 7:1.02.107-5.el7_2.1         updates   169 k\n device-mapper-persistent-data\n                            x86_64 0.5.5-1.el7                  base      350 k\n docker-forward-journald    x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                          822 k\n docker-selinux             x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           67 k\n libaio                     x86_64 0.3.109-13.el7               base       24 k\n libnl                      x86_64 1.1.4-3.el7                  base      128 k\n libxml2-python             x86_64 2.9.1-6.el7_2.2              updates   245 k\n lvm2                       x86_64 7:2.02.130-5.el7_2.1         updates   1.0 M\n lvm2-libs                  x86_64 7:2.02.130-5.el7_2.1         updates   872 k\n m2crypto                   x86_64 0.21.1-17.el7                base      429 k\n python-dateutil            noarch 1.5-7.el7                    base       85 k\n python-dmidecode           x86_64 3.10.13-11.el7               base       82 k\n python-ethtool             x86_64 0.8-5.el7                    base       33 k\n python-rhsm                x86_64 1.15.4-5.el7                 base      116 k\n subscription-manager       x86_64 1.15.9-15.el7.centos.0.1     base      823 k\n usermode                   x86_64 1.111-5.el7                  base      193 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+17 Dependent packages)\n\nTotal download size: 18 M\nInstalled size: 76 M\nDownloading packages:\n--------------------------------------------------------------------------------\nTotal                                              1.5 MB/s |  18 MB  00:12     \nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        1/18 \n  Installing : python-dateutil-1.5-7.el7.noarch                            2/18 \n  Installing : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64             3/18 \n  Installing : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                       4/18 \n  Installing : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64          5/18 \n  Installing : usermode-1.111-5.el7.x86_64                                 6/18 \n  Installing : libaio-0.3.109-13.el7.x86_64                                7/18 \n  Installing : device-mapper-persistent-data-0.5.5-1.el7.x86_64            8/18 \n  Installing : 7:lvm2-2.02.130-5.el7_2.1.x86_64                            9/18 \nCreated symlink from /etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket to /usr/lib/systemd/system/lvm2-lvmpolld.socket.\n  Installing : libnl-1.1.4-3.el7.x86_64                                   10/18 \n  Installing : python-ethtool-0.8-5.el7.x86_64                            11/18 \n  Installing : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86   12/18 \n  Installing : libxml2-python-2.9.1-6.el7_2.2.x86_64                      13/18 \n  Installing : python-dmidecode-3.10.13-11.el7.x86_64                     14/18 \n  Installing : m2crypto-0.21.1-17.el7.x86_64                              15/18 \n  Installing : python-rhsm-1.15.4-5.el7.x86_64                            16/18 \n  Installing : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64       17/18 \n  Installing : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n  Verifying  : python-rhsm-1.15.4-5.el7.x86_64                             1/18 \n  Verifying  : m2crypto-0.21.1-17.el7.x86_64                               2/18 \n  Verifying  : python-dmidecode-3.10.13-11.el7.x86_64                      3/18 \n  Verifying  : python-dateutil-1.5-7.el7.noarch                            4/18 \n  Verifying  : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64        5/18 \n  Verifying  : libxml2-python-2.9.1-6.el7_2.2.x86_64                       6/18 \n  Verifying  : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86    7/18 \n  Verifying  : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        8/18 \n  Verifying  : device-mapper-persistent-data-0.5.5-1.el7.x86_64            9/18 \n  Verifying  : python-ethtool-0.8-5.el7.x86_64                            10/18 \n  Verifying  : 7:lvm2-2.02.130-5.el7_2.1.x86_64                           11/18 \n  Verifying  : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                      12/18 \n  Verifying  : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64            13/18 \n  Verifying  : libnl-1.1.4-3.el7.x86_64                                   14/18 \n  Verifying  : libaio-0.3.109-13.el7.x86_64                               15/18 \n  Verifying  : usermode-1.111-5.el7.x86_64                                16/18 \n  Verifying  : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64         17/18 \n  Verifying  : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n\nInstalled:\n  docker.x86_64 0:1.9.1-0.origin.19.el7.centos                                  \n\nDependency Installed:\n  device-mapper-event.x86_64 7:1.02.107-5.el7_2.1                               \n  device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1                          \n  device-mapper-persistent-data.x86_64 0:0.5.5-1.el7                            \n  docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos                 \n  docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos                          \n  libaio.x86_64 0:0.3.109-13.el7                                                \n  libnl.x86_64 0:1.1.4-3.el7                                                    \n  libxml2-python.x86_64 0:2.9.1-6.el7_2.2                                       \n  lvm2.x86_64 7:2.02.130-5.el7_2.1                                              \n  lvm2-libs.x86_64 7:2.02.130-5.el7_2.1                                         \n  m2crypto.x86_64 0:0.21.1-17.el7                                               \n  python-dateutil.noarch 0:1.5-7.el7                                            \n  python-dmidecode.x86_64 0:3.10.13-11.el7                                      \n  python-ethtool.x86_64 0:0.8-5.el7                                             \n  python-rhsm.x86_64 0:1.15.4-5.el7                                             \n  subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1                        \n  usermode.x86_64 0:1.111-5.el7                                                 \n\nComplete!\n"]}
2016-03-15 11:56:10,574 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package docker.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n--> Processing Dependency: docker-forward-journald = 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: docker-selinux >= 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: lvm2 >= 2.02.112 for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: subscription-manager for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Running transaction check\n---> Package docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package lvm2.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: lvm2-libs = 7:2.02.130-5.el7_2.1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: device-mapper-persistent-data >= 0.5.5-1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n---> Package subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1 will be installed\n--> Processing Dependency: python-rhsm >= 1.15.0 for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: usermode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-ethtool for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dmidecode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dateutil for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Running transaction check\n---> Package device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package device-mapper-persistent-data.x86_64 0:0.5.5-1.el7 will be installed\n--> Processing Dependency: libaio.so.1(LIBAIO_0.4)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1(LIBAIO_0.1)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1()(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n---> Package lvm2-libs.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: device-mapper-event = 7:1.02.107-5.el7_2.1 for package: 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64\n---> Package python-dateutil.noarch 0:1.5-7.el7 will be installed\n---> Package python-dmidecode.x86_64 0:3.10.13-11.el7 will be installed\n--> Processing Dependency: libxml2-python for package: python-dmidecode-3.10.13-11.el7.x86_64\n--> Processing Dependency: libxml2mod.so()(64bit) for package: python-dmidecode-3.10.13-11.el7.x86_64\n---> Package python-ethtool.x86_64 0:0.8-5.el7 will be installed\n--> Processing Dependency: libnl.so.1()(64bit) for package: python-ethtool-0.8-5.el7.x86_64\n---> Package python-rhsm.x86_64 0:1.15.4-5.el7 will be installed\n--> Processing Dependency: m2crypto for package: python-rhsm-1.15.4-5.el7.x86_64\n---> Package usermode.x86_64 0:1.111-5.el7 will be installed\n--> Running transaction check\n---> Package device-mapper-event.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed\n---> Package libnl.x86_64 0:1.1.4-3.el7 will be installed\n---> Package libxml2-python.x86_64 0:2.9.1-6.el7_2.2 will be installed\n---> Package m2crypto.x86_64 0:0.21.1-17.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                    Arch   Version                      Repository\n                                                                           Size\n================================================================================\nInstalling:\n docker                     x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           13 M\nInstalling for dependencies:\n device-mapper-event        x86_64 7:1.02.107-5.el7_2.1         updates   167 k\n device-mapper-event-libs   x86_64 7:1.02.107-5.el7_2.1         updates   169 k\n device-mapper-persistent-data\n                            x86_64 0.5.5-1.el7                  base      350 k\n docker-forward-journald    x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                          822 k\n docker-selinux             x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           67 k\n libaio                     x86_64 0.3.109-13.el7               base       24 k\n libnl                      x86_64 1.1.4-3.el7                  base      128 k\n libxml2-python             x86_64 2.9.1-6.el7_2.2              updates   245 k\n lvm2                       x86_64 7:2.02.130-5.el7_2.1         updates   1.0 M\n lvm2-libs                  x86_64 7:2.02.130-5.el7_2.1         updates   872 k\n m2crypto                   x86_64 0.21.1-17.el7                base      429 k\n python-dateutil            noarch 1.5-7.el7                    base       85 k\n python-dmidecode           x86_64 3.10.13-11.el7               base       82 k\n python-ethtool             x86_64 0.8-5.el7                    base       33 k\n python-rhsm                x86_64 1.15.4-5.el7                 base      116 k\n subscription-manager       x86_64 1.15.9-15.el7.centos.0.1     base      823 k\n usermode                   x86_64 1.111-5.el7                  base      193 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+17 Dependent packages)\n\nTotal download size: 18 M\nInstalled size: 76 M\nDownloading packages:\n--------------------------------------------------------------------------------\nTotal                                              1.2 MB/s |  18 MB  00:14     \nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        1/18 \n  Installing : python-dateutil-1.5-7.el7.noarch                            2/18 \n  Installing : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64             3/18 \n  Installing : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                       4/18 \n  Installing : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64          5/18 \n  Installing : usermode-1.111-5.el7.x86_64                                 6/18 \n  Installing : libaio-0.3.109-13.el7.x86_64                                7/18 \n  Installing : device-mapper-persistent-data-0.5.5-1.el7.x86_64            8/18 \n  Installing : 7:lvm2-2.02.130-5.el7_2.1.x86_64                            9/18 \nCreated symlink from /etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket to /usr/lib/systemd/system/lvm2-lvmpolld.socket.\n  Installing : libnl-1.1.4-3.el7.x86_64                                   10/18 \n  Installing : python-ethtool-0.8-5.el7.x86_64                            11/18 \n  Installing : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86   12/18 \n  Installing : libxml2-python-2.9.1-6.el7_2.2.x86_64                      13/18 \n  Installing : python-dmidecode-3.10.13-11.el7.x86_64                     14/18 \n  Installing : m2crypto-0.21.1-17.el7.x86_64                              15/18 \n  Installing : python-rhsm-1.15.4-5.el7.x86_64                            16/18 \n  Installing : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64       17/18 \n  Installing : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n  Verifying  : python-rhsm-1.15.4-5.el7.x86_64                             1/18 \n  Verifying  : m2crypto-0.21.1-17.el7.x86_64                               2/18 \n  Verifying  : python-dmidecode-3.10.13-11.el7.x86_64                      3/18 \n  Verifying  : python-dateutil-1.5-7.el7.noarch                            4/18 \n  Verifying  : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64        5/18 \n  Verifying  : libxml2-python-2.9.1-6.el7_2.2.x86_64                       6/18 \n  Verifying  : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86    7/18 \n  Verifying  : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        8/18 \n  Verifying  : device-mapper-persistent-data-0.5.5-1.el7.x86_64            9/18 \n  Verifying  : python-ethtool-0.8-5.el7.x86_64                            10/18 \n  Verifying  : 7:lvm2-2.02.130-5.el7_2.1.x86_64                           11/18 \n  Verifying  : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                      12/18 \n  Verifying  : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64            13/18 \n  Verifying  : libnl-1.1.4-3.el7.x86_64                                   14/18 \n  Verifying  : libaio-0.3.109-13.el7.x86_64                               15/18 \n  Verifying  : usermode-1.111-5.el7.x86_64                                16/18 \n  Verifying  : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64         17/18 \n  Verifying  : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n\nInstalled:\n  docker.x86_64 0:1.9.1-0.origin.19.el7.centos                                  \n\nDependency Installed:\n  device-mapper-event.x86_64 7:1.02.107-5.el7_2.1                               \n  device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1                          \n  device-mapper-persistent-data.x86_64 0:0.5.5-1.el7                            \n  docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos                 \n  docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos                          \n  libaio.x86_64 0:0.3.109-13.el7                                                \n  libnl.x86_64 0:1.1.4-3.el7                                                    \n  libxml2-python.x86_64 0:2.9.1-6.el7_2.2                                       \n  lvm2.x86_64 7:2.02.130-5.el7_2.1                                              \n  lvm2-libs.x86_64 7:2.02.130-5.el7_2.1                                         \n  m2crypto.x86_64 0:0.21.1-17.el7                                               \n  python-dateutil.noarch 0:1.5-7.el7                                            \n  python-dmidecode.x86_64 0:3.10.13-11.el7                                      \n  python-ethtool.x86_64 0:0.8-5.el7                                             \n  python-rhsm.x86_64 0:1.15.4-5.el7                                             \n  subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1                        \n  usermode.x86_64 0:1.111-5.el7                                                 \n\nComplete!\n"]}
2016-03-15 11:56:16,106 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.joinweb.co.il\n * extras: centos.joinweb.co.il\n * updates: centos.joinweb.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package docker.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n--> Processing Dependency: docker-forward-journald = 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: docker-selinux >= 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: lvm2 >= 2.02.112 for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: subscription-manager for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Running transaction check\n---> Package docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package lvm2.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: lvm2-libs = 7:2.02.130-5.el7_2.1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: device-mapper-persistent-data >= 0.5.5-1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n---> Package subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1 will be installed\n--> Processing Dependency: python-rhsm >= 1.15.0 for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: usermode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-ethtool for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dmidecode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dateutil for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Running transaction check\n---> Package device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package device-mapper-persistent-data.x86_64 0:0.5.5-1.el7 will be installed\n--> Processing Dependency: libaio.so.1(LIBAIO_0.4)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1(LIBAIO_0.1)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1()(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n---> Package lvm2-libs.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: device-mapper-event = 7:1.02.107-5.el7_2.1 for package: 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64\n---> Package python-dateutil.noarch 0:1.5-7.el7 will be installed\n---> Package python-dmidecode.x86_64 0:3.10.13-11.el7 will be installed\n--> Processing Dependency: libxml2-python for package: python-dmidecode-3.10.13-11.el7.x86_64\n--> Processing Dependency: libxml2mod.so()(64bit) for package: python-dmidecode-3.10.13-11.el7.x86_64\n---> Package python-ethtool.x86_64 0:0.8-5.el7 will be installed\n--> Processing Dependency: libnl.so.1()(64bit) for package: python-ethtool-0.8-5.el7.x86_64\n---> Package python-rhsm.x86_64 0:1.15.4-5.el7 will be installed\n--> Processing Dependency: m2crypto for package: python-rhsm-1.15.4-5.el7.x86_64\n---> Package usermode.x86_64 0:1.111-5.el7 will be installed\n--> Running transaction check\n---> Package device-mapper-event.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed\n---> Package libnl.x86_64 0:1.1.4-3.el7 will be installed\n---> Package libxml2-python.x86_64 0:2.9.1-6.el7_2.2 will be installed\n---> Package m2crypto.x86_64 0:0.21.1-17.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                    Arch   Version                      Repository\n                                                                           Size\n================================================================================\nInstalling:\n docker                     x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           13 M\nInstalling for dependencies:\n device-mapper-event        x86_64 7:1.02.107-5.el7_2.1         updates   167 k\n device-mapper-event-libs   x86_64 7:1.02.107-5.el7_2.1         updates   169 k\n device-mapper-persistent-data\n                            x86_64 0.5.5-1.el7                  base      350 k\n docker-forward-journald    x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                          822 k\n docker-selinux             x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           67 k\n libaio                     x86_64 0.3.109-13.el7               base       24 k\n libnl                      x86_64 1.1.4-3.el7                  base      128 k\n libxml2-python             x86_64 2.9.1-6.el7_2.2              updates   245 k\n lvm2                       x86_64 7:2.02.130-5.el7_2.1         updates   1.0 M\n lvm2-libs                  x86_64 7:2.02.130-5.el7_2.1         updates   872 k\n m2crypto                   x86_64 0.21.1-17.el7                base      429 k\n python-dateutil            noarch 1.5-7.el7                    base       85 k\n python-dmidecode           x86_64 3.10.13-11.el7               base       82 k\n python-ethtool             x86_64 0.8-5.el7                    base       33 k\n python-rhsm                x86_64 1.15.4-5.el7                 base      116 k\n subscription-manager       x86_64 1.15.9-15.el7.centos.0.1     base      823 k\n usermode                   x86_64 1.111-5.el7                  base      193 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+17 Dependent packages)\n\nTotal download size: 18 M\nInstalled size: 76 M\nDownloading packages:\n--------------------------------------------------------------------------------\nTotal                                              890 kB/s |  18 MB  00:20     \nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        1/18 \n  Installing : python-dateutil-1.5-7.el7.noarch                            2/18 \n  Installing : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64             3/18 \n  Installing : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                       4/18 \n  Installing : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64          5/18 \n  Installing : usermode-1.111-5.el7.x86_64                                 6/18 \n  Installing : libaio-0.3.109-13.el7.x86_64                                7/18 \n  Installing : device-mapper-persistent-data-0.5.5-1.el7.x86_64            8/18 \n  Installing : 7:lvm2-2.02.130-5.el7_2.1.x86_64                            9/18 \nCreated symlink from /etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket to /usr/lib/systemd/system/lvm2-lvmpolld.socket.\n  Installing : libnl-1.1.4-3.el7.x86_64                                   10/18 \n  Installing : python-ethtool-0.8-5.el7.x86_64                            11/18 \n  Installing : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86   12/18 \n  Installing : libxml2-python-2.9.1-6.el7_2.2.x86_64                      13/18 \n  Installing : python-dmidecode-3.10.13-11.el7.x86_64                     14/18 \n  Installing : m2crypto-0.21.1-17.el7.x86_64                              15/18 \n  Installing : python-rhsm-1.15.4-5.el7.x86_64                            16/18 \n  Installing : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64       17/18 \n  Installing : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n  Verifying  : python-rhsm-1.15.4-5.el7.x86_64                             1/18 \n  Verifying  : m2crypto-0.21.1-17.el7.x86_64                               2/18 \n  Verifying  : python-dmidecode-3.10.13-11.el7.x86_64                      3/18 \n  Verifying  : python-dateutil-1.5-7.el7.noarch                            4/18 \n  Verifying  : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64        5/18 \n  Verifying  : libxml2-python-2.9.1-6.el7_2.2.x86_64                       6/18 \n  Verifying  : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86    7/18 \n  Verifying  : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        8/18 \n  Verifying  : device-mapper-persistent-data-0.5.5-1.el7.x86_64            9/18 \n  Verifying  : python-ethtool-0.8-5.el7.x86_64                            10/18 \n  Verifying  : 7:lvm2-2.02.130-5.el7_2.1.x86_64                           11/18 \n  Verifying  : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                      12/18 \n  Verifying  : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64            13/18 \n  Verifying  : libnl-1.1.4-3.el7.x86_64                                   14/18 \n  Verifying  : libaio-0.3.109-13.el7.x86_64                               15/18 \n  Verifying  : usermode-1.111-5.el7.x86_64                                16/18 \n  Verifying  : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64         17/18 \n  Verifying  : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n\nInstalled:\n  docker.x86_64 0:1.9.1-0.origin.19.el7.centos                                  \n\nDependency Installed:\n  device-mapper-event.x86_64 7:1.02.107-5.el7_2.1                               \n  device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1                          \n  device-mapper-persistent-data.x86_64 0:0.5.5-1.el7                            \n  docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos                 \n  docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos                          \n  libaio.x86_64 0:0.3.109-13.el7                                                \n  libnl.x86_64 0:1.1.4-3.el7                                                    \n  libxml2-python.x86_64 0:2.9.1-6.el7_2.2                                       \n  lvm2.x86_64 7:2.02.130-5.el7_2.1                                              \n  lvm2-libs.x86_64 7:2.02.130-5.el7_2.1                                         \n  m2crypto.x86_64 0:0.21.1-17.el7                                               \n  python-dateutil.noarch 0:1.5-7.el7                                            \n  python-dmidecode.x86_64 0:3.10.13-11.el7                                      \n  python-ethtool.x86_64 0:0.8-5.el7                                             \n  python-rhsm.x86_64 0:1.15.4-5.el7                                             \n  subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1                        \n  usermode.x86_64 0:1.111-5.el7                                                 \n\nComplete!\n"]}
2016-03-15 11:56:22,376 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package docker.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n--> Processing Dependency: docker-forward-journald = 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: docker-selinux >= 1.9.1-0.origin.19.el7.centos for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: lvm2 >= 2.02.112 for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Processing Dependency: subscription-manager for package: docker-1.9.1-0.origin.19.el7.centos.x86_64\n--> Running transaction check\n---> Package docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos will be installed\n---> Package lvm2.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: lvm2-libs = 7:2.02.130-5.el7_2.1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: device-mapper-persistent-data >= 0.5.5-1 for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02(Base)(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: liblvm2app.so.2.2()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n--> Processing Dependency: libdevmapper-event.so.1.02()(64bit) for package: 7:lvm2-2.02.130-5.el7_2.1.x86_64\n---> Package subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1 will be installed\n--> Processing Dependency: python-rhsm >= 1.15.0 for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: usermode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-ethtool for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dmidecode for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Processing Dependency: python-dateutil for package: subscription-manager-1.15.9-15.el7.centos.0.1.x86_64\n--> Running transaction check\n---> Package device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package device-mapper-persistent-data.x86_64 0:0.5.5-1.el7 will be installed\n--> Processing Dependency: libaio.so.1(LIBAIO_0.4)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1(LIBAIO_0.1)(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n--> Processing Dependency: libaio.so.1()(64bit) for package: device-mapper-persistent-data-0.5.5-1.el7.x86_64\n---> Package lvm2-libs.x86_64 7:2.02.130-5.el7_2.1 will be installed\n--> Processing Dependency: device-mapper-event = 7:1.02.107-5.el7_2.1 for package: 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64\n---> Package python-dateutil.noarch 0:1.5-7.el7 will be installed\n---> Package python-dmidecode.x86_64 0:3.10.13-11.el7 will be installed\n--> Processing Dependency: libxml2-python for package: python-dmidecode-3.10.13-11.el7.x86_64\n--> Processing Dependency: libxml2mod.so()(64bit) for package: python-dmidecode-3.10.13-11.el7.x86_64\n---> Package python-ethtool.x86_64 0:0.8-5.el7 will be installed\n--> Processing Dependency: libnl.so.1()(64bit) for package: python-ethtool-0.8-5.el7.x86_64\n---> Package python-rhsm.x86_64 0:1.15.4-5.el7 will be installed\n--> Processing Dependency: m2crypto for package: python-rhsm-1.15.4-5.el7.x86_64\n---> Package usermode.x86_64 0:1.111-5.el7 will be installed\n--> Running transaction check\n---> Package device-mapper-event.x86_64 7:1.02.107-5.el7_2.1 will be installed\n---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed\n---> Package libnl.x86_64 0:1.1.4-3.el7 will be installed\n---> Package libxml2-python.x86_64 0:2.9.1-6.el7_2.2 will be installed\n---> Package m2crypto.x86_64 0:0.21.1-17.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                    Arch   Version                      Repository\n                                                                           Size\n================================================================================\nInstalling:\n docker                     x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           13 M\nInstalling for dependencies:\n device-mapper-event        x86_64 7:1.02.107-5.el7_2.1         updates   167 k\n device-mapper-event-libs   x86_64 7:1.02.107-5.el7_2.1         updates   169 k\n device-mapper-persistent-data\n                            x86_64 0.5.5-1.el7                  base      350 k\n docker-forward-journald    x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                          822 k\n docker-selinux             x86_64 1.9.1-0.origin.19.el7.centos maxamillion-origin-next\n                                                                           67 k\n libaio                     x86_64 0.3.109-13.el7               base       24 k\n libnl                      x86_64 1.1.4-3.el7                  base      128 k\n libxml2-python             x86_64 2.9.1-6.el7_2.2              updates   245 k\n lvm2                       x86_64 7:2.02.130-5.el7_2.1         updates   1.0 M\n lvm2-libs                  x86_64 7:2.02.130-5.el7_2.1         updates   872 k\n m2crypto                   x86_64 0.21.1-17.el7                base      429 k\n python-dateutil            noarch 1.5-7.el7                    base       85 k\n python-dmidecode           x86_64 3.10.13-11.el7               base       82 k\n python-ethtool             x86_64 0.8-5.el7                    base       33 k\n python-rhsm                x86_64 1.15.4-5.el7                 base      116 k\n subscription-manager       x86_64 1.15.9-15.el7.centos.0.1     base      823 k\n usermode                   x86_64 1.111-5.el7                  base      193 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package (+17 Dependent packages)\n\nTotal download size: 18 M\nInstalled size: 76 M\nDownloading packages:\n--------------------------------------------------------------------------------\nTotal                                              592 kB/s |  18 MB  00:31     \nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        1/18 \n  Installing : python-dateutil-1.5-7.el7.noarch                            2/18 \n  Installing : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64             3/18 \n  Installing : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                       4/18 \n  Installing : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64          5/18 \n  Installing : usermode-1.111-5.el7.x86_64                                 6/18 \n  Installing : libaio-0.3.109-13.el7.x86_64                                7/18 \n  Installing : device-mapper-persistent-data-0.5.5-1.el7.x86_64            8/18 \n  Installing : 7:lvm2-2.02.130-5.el7_2.1.x86_64                            9/18 \nCreated symlink from /etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket to /usr/lib/systemd/system/lvm2-lvmpolld.socket.\n  Installing : libnl-1.1.4-3.el7.x86_64                                   10/18 \n  Installing : python-ethtool-0.8-5.el7.x86_64                            11/18 \n  Installing : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86   12/18 \n  Installing : libxml2-python-2.9.1-6.el7_2.2.x86_64                      13/18 \n  Installing : python-dmidecode-3.10.13-11.el7.x86_64                     14/18 \n  Installing : m2crypto-0.21.1-17.el7.x86_64                              15/18 \n  Installing : python-rhsm-1.15.4-5.el7.x86_64                            16/18 \n  Installing : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64       17/18 \n  Installing : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n  Verifying  : python-rhsm-1.15.4-5.el7.x86_64                             1/18 \n  Verifying  : m2crypto-0.21.1-17.el7.x86_64                               2/18 \n  Verifying  : python-dmidecode-3.10.13-11.el7.x86_64                      3/18 \n  Verifying  : python-dateutil-1.5-7.el7.noarch                            4/18 \n  Verifying  : subscription-manager-1.15.9-15.el7.centos.0.1.x86_64        5/18 \n  Verifying  : libxml2-python-2.9.1-6.el7_2.2.x86_64                       6/18 \n  Verifying  : docker-forward-journald-1.9.1-0.origin.19.el7.centos.x86    7/18 \n  Verifying  : 7:device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64        8/18 \n  Verifying  : device-mapper-persistent-data-0.5.5-1.el7.x86_64            9/18 \n  Verifying  : python-ethtool-0.8-5.el7.x86_64                            10/18 \n  Verifying  : 7:lvm2-2.02.130-5.el7_2.1.x86_64                           11/18 \n  Verifying  : 7:lvm2-libs-2.02.130-5.el7_2.1.x86_64                      12/18 \n  Verifying  : 7:device-mapper-event-1.02.107-5.el7_2.1.x86_64            13/18 \n  Verifying  : libnl-1.1.4-3.el7.x86_64                                   14/18 \n  Verifying  : libaio-0.3.109-13.el7.x86_64                               15/18 \n  Verifying  : usermode-1.111-5.el7.x86_64                                16/18 \n  Verifying  : docker-selinux-1.9.1-0.origin.19.el7.centos.x86_64         17/18 \n  Verifying  : docker-1.9.1-0.origin.19.el7.centos.x86_64                 18/18 \n\nInstalled:\n  docker.x86_64 0:1.9.1-0.origin.19.el7.centos                                  \n\nDependency Installed:\n  device-mapper-event.x86_64 7:1.02.107-5.el7_2.1                               \n  device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.1                          \n  device-mapper-persistent-data.x86_64 0:0.5.5-1.el7                            \n  docker-forward-journald.x86_64 0:1.9.1-0.origin.19.el7.centos                 \n  docker-selinux.x86_64 0:1.9.1-0.origin.19.el7.centos                          \n  libaio.x86_64 0:0.3.109-13.el7                                                \n  libnl.x86_64 0:1.1.4-3.el7                                                    \n  libxml2-python.x86_64 0:2.9.1-6.el7_2.2                                       \n  lvm2.x86_64 7:2.02.130-5.el7_2.1                                              \n  lvm2-libs.x86_64 7:2.02.130-5.el7_2.1                                         \n  m2crypto.x86_64 0:0.21.1-17.el7                                               \n  python-dateutil.noarch 0:1.5-7.el7                                            \n  python-dmidecode.x86_64 0:3.10.13-11.el7                                      \n  python-ethtool.x86_64 0:0.8-5.el7                                             \n  python-rhsm.x86_64 0:1.15.4-5.el7                                             \n  subscription-manager.x86_64 0:1.15.9-15.el7.centos.0.1                        \n  usermode.x86_64 0:1.111-5.el7                                                 \n\nComplete!\n"]}
2016-03-15 11:56:22,386 p=8050 u=bpaskinc |  TASK: [docker | enable and start the docker service] **************************
2016-03-15 11:56:29,047 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "enabled": true, "name": "docker", "state": "started"}
2016-03-15 11:56:29,074 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "enabled": true, "name": "docker", "state": "started"}
2016-03-15 11:56:29,135 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "enabled": true, "name": "docker", "state": "started"}
2016-03-15 11:56:29,239 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "enabled": true, "name": "docker", "state": "started"}
2016-03-15 11:56:29,249 p=8050 u=bpaskinc |  TASK: [docker | set_fact ] ****************************************************
2016-03-15 11:56:29,293 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"docker_service_status_changed": "start_result | changed"}}
2016-03-15 11:56:29,296 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"docker_service_status_changed": "start_result | changed"}}
2016-03-15 11:56:29,299 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"docker_service_status_changed": "start_result | changed"}}
2016-03-15 11:56:29,299 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"docker_service_status_changed": "start_result | changed"}}
2016-03-15 11:56:29,312 p=8050 u=bpaskinc |  TASK: [docker | Getting current systemd-udevd exec command] *******************
2016-03-15 11:56:29,364 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:29,369 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:56:29,376 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:56:29,377 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:56:29,391 p=8050 u=bpaskinc |  TASK: [docker | Assure systemd-udevd.service.d directory exists] **************
2016-03-15 11:56:29,429 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:29,432 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:56:29,433 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:56:29,437 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:56:29,454 p=8050 u=bpaskinc |  TASK: [docker | Create systemd-udevd override file] ***************************
2016-03-15 11:56:29,503 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:29,507 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:56:29,507 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:56:29,509 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:56:29,523 p=8050 u=bpaskinc |  TASK: [docker | reload systemd config files] **********************************
2016-03-15 11:56:29,567 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:29,567 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:56:29,570 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:56:29,573 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:56:29,585 p=8050 u=bpaskinc |  TASK: [openshift_docker | Set docker facts] ***********************************
2016-03-15 11:56:32,423 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item={'local_facts': {'deployment_type': u'origin', 'docker_blocked_registries': [''], 'docker_options': u'', 'docker_additional_registries': [''], 'docker_insecure_registries': ['']}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true, "item": {"local_facts": {"deployment_type": "origin", "docker_additional_registries": [""], "docker_blocked_registries": [""], "docker_insecure_registries": [""], "docker_options": ""}, "role": "common"}}
2016-03-15 11:56:32,441 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item={'local_facts': {'deployment_type': u'origin', 'docker_blocked_registries': [''], 'docker_options': u'', 'docker_additional_registries': [''], 'docker_insecure_registries': ['']}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true, "item": {"local_facts": {"deployment_type": "origin", "docker_additional_registries": [""], "docker_blocked_registries": [""], "docker_insecure_registries": [""], "docker_options": ""}, "role": "common"}}
2016-03-15 11:56:32,537 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'local_facts': {'deployment_type': u'origin', 'docker_blocked_registries': [''], 'docker_options': u'', 'docker_additional_registries': [''], 'docker_insecure_registries': ['']}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true, "item": {"local_facts": {"deployment_type": "origin", "docker_additional_registries": [""], "docker_blocked_registries": [""], "docker_insecure_registries": [""], "docker_options": ""}, "role": "common"}}
2016-03-15 11:56:32,665 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item={'local_facts': {'deployment_type': u'origin', 'docker_blocked_registries': [''], 'docker_options': u'', 'docker_additional_registries': [''], 'docker_insecure_registries': ['']}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}}}, "changed": true, "item": {"local_facts": {"deployment_type": "origin", "docker_additional_registries": [""], "docker_blocked_registries": [""], "docker_insecure_registries": [""], "docker_options": ""}, "role": "common"}}
2016-03-15 11:56:35,035 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item={'local_facts': {'portal_net': u'', 'docker_log_driver': u'', 'docker_log_options': u''}, 'role': 'node'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"docker_log_driver": "", "docker_log_options": "", "portal_net": ""}, "role": "node"}}
2016-03-15 11:56:35,080 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'local_facts': {'portal_net': u'', 'docker_log_driver': u'', 'docker_log_options': u''}, 'role': 'node'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"docker_log_driver": "", "docker_log_options": "", "portal_net": ""}, "role": "node"}}
2016-03-15 11:56:35,139 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item={'local_facts': {'portal_net': u'', 'docker_log_driver': u'', 'docker_log_options': u''}, 'role': 'node'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"docker_log_driver": "", "docker_log_options": "", "portal_net": ""}, "role": "node"}}
2016-03-15 11:56:35,366 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item={'local_facts': {'portal_net': u'', 'docker_log_driver': u'', 'docker_log_options': u''}, 'role': 'node'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"docker_log_driver": "", "docker_log_options": "", "portal_net": ""}, "role": "node"}}
2016-03-15 11:56:35,380 p=8050 u=bpaskinc |  TASK: [openshift_docker | stat path=/etc/sysconfig/docker] ********************
2016-03-15 11:56:35,794 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "stat": {"atime": 1458035783.5634332, "checksum": "fa349b8ee2f625de4dd125134249c9d52a2ddd84", "ctime": 1458035778.1114082, "dev": 64769, "exists": true, "gid": 0, "gr_name": "root", "inode": 26556914, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "md5": "a18721a97fcebd4e465dea401b28dde6", "mode": "0644", "mtime": 1457644215.0, "nlink": 1, "path": "/etc/sysconfig/docker", "pw_name": "root", "rgrp": true, "roth": true, "rusr": true, "size": 1548, "uid": 0, "wgrp": false, "woth": false, "wusr": true, "xgrp": false, "xoth": false, "xusr": false}}
2016-03-15 11:56:35,838 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "stat": {"atime": 1458035783.5129993, "checksum": "fa349b8ee2f625de4dd125134249c9d52a2ddd84", "ctime": 1458035770.7679842, "dev": 64769, "exists": true, "gid": 0, "gr_name": "root", "inode": 26556882, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "md5": "a18721a97fcebd4e465dea401b28dde6", "mode": "0644", "mtime": 1457644215.0, "nlink": 1, "path": "/etc/sysconfig/docker", "pw_name": "root", "rgrp": true, "roth": true, "rusr": true, "size": 1548, "uid": 0, "wgrp": false, "woth": false, "wusr": true, "xgrp": false, "xoth": false, "xusr": false}}
2016-03-15 11:56:35,881 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "stat": {"atime": 1458035783.6314313, "checksum": "fa349b8ee2f625de4dd125134249c9d52a2ddd84", "ctime": 1458035765.080432, "dev": 64769, "exists": true, "gid": 0, "gr_name": "root", "inode": 26314833, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "md5": "a18721a97fcebd4e465dea401b28dde6", "mode": "0644", "mtime": 1457644215.0, "nlink": 1, "path": "/etc/sysconfig/docker", "pw_name": "root", "rgrp": true, "roth": true, "rusr": true, "size": 1548, "uid": 0, "wgrp": false, "woth": false, "wusr": true, "xgrp": false, "xoth": false, "xusr": false}}
2016-03-15 11:56:35,886 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "stat": {"atime": 1458035783.5258338, "checksum": "fa349b8ee2f625de4dd125134249c9d52a2ddd84", "ctime": 1458035758.2328038, "dev": 64769, "exists": true, "gid": 0, "gr_name": "root", "inode": 26572881, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "md5": "a18721a97fcebd4e465dea401b28dde6", "mode": "0644", "mtime": 1457644215.0, "nlink": 1, "path": "/etc/sysconfig/docker", "pw_name": "root", "rgrp": true, "roth": true, "rusr": true, "size": 1548, "uid": 0, "wgrp": false, "woth": false, "wusr": true, "xgrp": false, "xoth": false, "xusr": false}}
2016-03-15 11:56:35,901 p=8050 u=bpaskinc |  TASK: [openshift_docker | Set registry params] ********************************
2016-03-15 11:56:36,394 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item={'reg_conf_var': 'ADD_REGISTRY', 'reg_flag': '--add-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "ADD_REGISTRY", "reg_fact_val": [], "reg_flag": "--add-registry"}, "msg": "line replaced"}
2016-03-15 11:56:36,410 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item={'reg_conf_var': 'ADD_REGISTRY', 'reg_flag': '--add-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "ADD_REGISTRY", "reg_fact_val": [], "reg_flag": "--add-registry"}, "msg": "line replaced"}
2016-03-15 11:56:36,497 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item={'reg_conf_var': 'ADD_REGISTRY', 'reg_flag': '--add-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "ADD_REGISTRY", "reg_fact_val": [], "reg_flag": "--add-registry"}, "msg": "line replaced"}
2016-03-15 11:56:36,592 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'reg_conf_var': 'ADD_REGISTRY', 'reg_flag': '--add-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "ADD_REGISTRY", "reg_fact_val": [], "reg_flag": "--add-registry"}, "msg": "line replaced"}
2016-03-15 11:56:36,822 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item={'reg_conf_var': 'BLOCK_REGISTRY', 'reg_flag': '--block-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "BLOCK_REGISTRY", "reg_fact_val": [], "reg_flag": "--block-registry"}, "msg": "line added"}
2016-03-15 11:56:37,015 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'reg_conf_var': 'BLOCK_REGISTRY', 'reg_flag': '--block-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "BLOCK_REGISTRY", "reg_fact_val": [], "reg_flag": "--block-registry"}, "msg": "line added"}
2016-03-15 11:56:37,019 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item={'reg_conf_var': 'BLOCK_REGISTRY', 'reg_flag': '--block-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "BLOCK_REGISTRY", "reg_fact_val": [], "reg_flag": "--block-registry"}, "msg": "line added"}
2016-03-15 11:56:37,087 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item={'reg_conf_var': 'BLOCK_REGISTRY', 'reg_flag': '--block-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "BLOCK_REGISTRY", "reg_fact_val": [], "reg_flag": "--block-registry"}, "msg": "line added"}
2016-03-15 11:56:37,247 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item={'reg_conf_var': 'INSECURE_REGISTRY', 'reg_flag': '--insecure-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "INSECURE_REGISTRY", "reg_fact_val": [], "reg_flag": "--insecure-registry"}, "msg": "line added"}
2016-03-15 11:56:37,437 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item={'reg_conf_var': 'INSECURE_REGISTRY', 'reg_flag': '--insecure-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "INSECURE_REGISTRY", "reg_fact_val": [], "reg_flag": "--insecure-registry"}, "msg": "line added"}
2016-03-15 11:56:37,459 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'reg_conf_var': 'INSECURE_REGISTRY', 'reg_flag': '--insecure-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "INSECURE_REGISTRY", "reg_fact_val": [], "reg_flag": "--insecure-registry"}, "msg": "line added"}
2016-03-15 11:56:37,488 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item={'reg_conf_var': 'INSECURE_REGISTRY', 'reg_flag': '--insecure-registry', 'reg_fact_val': []}) => {"backup": "", "changed": true, "item": {"reg_conf_var": "INSECURE_REGISTRY", "reg_fact_val": [], "reg_flag": "--insecure-registry"}, "msg": "line added"}
2016-03-15 11:56:37,501 p=8050 u=bpaskinc |  TASK: [openshift_docker | Secure Registry and Logs Options] *******************
2016-03-15 11:56:37,916 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"backup": "", "changed": true, "msg": "line replaced"}
2016-03-15 11:56:37,926 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"backup": "", "changed": true, "msg": "line replaced"}
2016-03-15 11:56:37,969 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"backup": "", "changed": true, "msg": "line replaced"}
2016-03-15 11:56:38,034 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"backup": "", "changed": true, "msg": "line replaced"}
2016-03-15 11:56:38,044 p=8050 u=bpaskinc |  NOTIFIED: [openshift_docker | restart openshift_docker] ***********************
2016-03-15 11:56:39,851 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "name": "docker", "state": "started"}
2016-03-15 11:56:40,064 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => {"changed": true, "name": "docker", "state": "started"}
2016-03-15 11:56:40,176 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => {"changed": true, "name": "docker", "state": "started"}
2016-03-15 11:56:40,206 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => {"changed": true, "name": "docker", "state": "started"}
2016-03-15 11:56:40,222 p=8050 u=bpaskinc |  PLAY [Set etcd facts needed for generating certs] *****************************
2016-03-15 11:56:40,222 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:56:40,222 p=8050 u=bpaskinc |  PLAY [Create temp directory for syncing certs] ********************************
2016-03-15 11:56:40,223 p=8050 u=bpaskinc |  TASK: [Create local temp directory for syncing certs] *************************
2016-03-15 11:56:40,330 p=8050 u=bpaskinc |  ok: [localhost -> 127.0.0.1] => {"changed": false, "cmd": ["mktemp", "-d", "/tmp/openshift-ansible-XXXXXXX"], "delta": "0:00:00.003609", "end": "2016-03-15 11:56:40.319592", "rc": 0, "start": "2016-03-15 11:56:40.315983", "stderr": "", "stdout": "/tmp/openshift-ansible-JfTpp6g", "stdout_lines": ["/tmp/openshift-ansible-JfTpp6g"], "warnings": []}
2016-03-15 11:56:40,331 p=8050 u=bpaskinc |  PLAY [Configure etcd certificates] ********************************************
2016-03-15 11:56:40,332 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:56:40,332 p=8050 u=bpaskinc |  PLAY [Configure first etcd host] **********************************************
2016-03-15 11:56:40,332 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:56:40,332 p=8050 u=bpaskinc |  PLAY [Configure remaining etcd hosts] *****************************************
2016-03-15 11:56:40,333 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:56:40,333 p=8050 u=bpaskinc |  PLAY [Delete temporary directory on localhost] ********************************
2016-03-15 11:56:40,335 p=8050 u=bpaskinc |  TASK: [file name={{ g_etcd_mktemp.stdout }} state=absent] *********************
2016-03-15 11:56:40,419 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "path": "/tmp/openshift-ansible-JfTpp6g", "state": "absent"}
2016-03-15 11:56:40,419 p=8050 u=bpaskinc |  PLAY [Configure nfs hosts] ****************************************************
2016-03-15 11:56:40,420 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:56:40,421 p=8050 u=bpaskinc |  PLAY [Set master facts and determine if external etcd certs need to be generated] ***
2016-03-15 11:56:40,421 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:56:40,698 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:56:40,699 p=8050 u=bpaskinc |  TASK: [Check for RPM generated config marker file .config_managed] ************
2016-03-15 11:56:40,876 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "stat": {"exists": false}}
2016-03-15 11:56:40,877 p=8050 u=bpaskinc |  TASK: [Remove RPM generated config files if present] **************************
2016-03-15 11:56:40,898 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=master)
2016-03-15 11:56:40,904 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=node)
2016-03-15 11:56:40,908 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=.config_managed)
2016-03-15 11:56:40,909 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:40,922 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift_master_pod_eviction_timeout": ""}}
2016-03-15 11:56:40,922 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:40,939 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift_master_etcd_hosts": "", "openshift_master_etcd_port": ""}}
2016-03-15 11:56:40,939 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:40,954 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift_master_debug_level": "2"}}
2016-03-15 11:56:40,954 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:40,967 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"use_openshift_metrics": "true"}}
2016-03-15 11:56:40,968 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:56:40,983 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:40,984 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:56:41,149 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.004456", "end": "2016-03-15 09:56:41.144967", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:56:41.140511", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:56:41,150 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:56:41,163 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:56:41,163 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:56:41,185 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:56:41,186 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:56:41,821 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:56:41,822 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:56:42,718 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:56:42,719 p=8050 u=bpaskinc |  TASK: [openshift_facts ] ******************************************************
2016-03-15 11:56:43,701 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item={'local_facts': {'public_ip': u'', 'ip': u'', 'public_hostname': u'', 'hostname': u'', 'deployment_type': u'origin'}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.98", "metrics4-master-d780a.example.com"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false, "item": {"local_facts": {"deployment_type": "origin", "hostname": "", "ip": "", "public_hostname": "", "public_ip": ""}, "role": "common"}}
2016-03-15 11:56:44,645 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'local_facts': {'api_use_ssl': u'', 'public_api_url': u'', 'api_url': u'', 'cluster_public_hostname': u'', 'controllers_port': u'', 'console_url': u'', 'public_console_url': u'', 'portal_net': u'', 'api_port': u'', 'console_port': u'', 'console_path': u'', 'ha': u'False', 'master_count': u'1', 'cluster_hostname': u'', 'console_use_ssl': u''}, 'role': 'master'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"api_port": "", "api_url": "", "api_use_ssl": "", "cluster_hostname": "", "cluster_public_hostname": "", "console_path": "", "console_port": "", "console_url": "", "console_use_ssl": "", "controllers_port": "", "ha": "False", "master_count": "1", "portal_net": "", "public_api_url": "", "public_console_url": ""}, "role": "master"}}
2016-03-15 11:56:44,646 p=8050 u=bpaskinc |  TASK: [openshift_facts ] ******************************************************
2016-03-15 11:56:44,663 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:44,663 p=8050 u=bpaskinc |  TASK: [Check status of external etcd certificatees] ***************************
2016-03-15 11:56:44,849 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=master.etcd-client.crt) => {"changed": false, "item": "master.etcd-client.crt", "stat": {"exists": false}}
2016-03-15 11:56:45,089 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=master.etcd-ca.crt) => {"changed": false, "item": "master.etcd-ca.crt", "stat": {"exists": false}}
2016-03-15 11:56:45,090 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:45,107 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:45,108 p=8050 u=bpaskinc |  PLAY [Create temp directory for syncing certs] ********************************
2016-03-15 11:56:45,109 p=8050 u=bpaskinc |  TASK: [Create local temp directory for syncing certs] *************************
2016-03-15 11:56:45,205 p=8050 u=bpaskinc |  ok: [localhost -> 127.0.0.1] => {"changed": false, "cmd": ["mktemp", "-d", "/tmp/openshift-ansible-XXXXXXX"], "delta": "0:00:00.002739", "end": "2016-03-15 11:56:45.193398", "rc": 0, "start": "2016-03-15 11:56:45.190659", "stderr": "", "stdout": "/tmp/openshift-ansible-TM9t0Tm", "stdout_lines": ["/tmp/openshift-ansible-TM9t0Tm"], "warnings": []}
2016-03-15 11:56:45,206 p=8050 u=bpaskinc |  PLAY [Configure etcd certificates] ********************************************
2016-03-15 11:56:45,206 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:56:45,206 p=8050 u=bpaskinc |  PLAY [Copy the external etcd certs to the masters] ****************************
2016-03-15 11:56:45,206 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:56:45,472 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:56:45,472 p=8050 u=bpaskinc |  TASK: [Ensure certificate directory exists] ***********************************
2016-03-15 11:56:45,485 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:45,485 p=8050 u=bpaskinc |  TASK: [Unarchive the tarball on the master] ***********************************
2016-03-15 11:56:45,506 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:45,507 p=8050 u=bpaskinc |  TASK: [file ] *****************************************************************
2016-03-15 11:56:45,521 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=master.etcd-client.crt)
2016-03-15 11:56:45,524 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=master.etcd-client.key)
2016-03-15 11:56:45,527 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=master.etcd-ca.crt)
2016-03-15 11:56:45,528 p=8050 u=bpaskinc |  PLAY [Determine if master certificates need to be generated] ******************
2016-03-15 11:56:45,529 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:56:45,775 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:56:45,776 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:45,795 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift_master_certs_etcd": ["master.etcd-client.crt"], "openshift_master_certs_no_etcd": ["admin.crt", "master.kubelet-client.crt", "master.proxy-client.crt", "master.server.crt", "openshift-master.crt", "openshift-registry.crt", "openshift-router.crt", "etcd.server.crt"]}}
2016-03-15 11:56:45,795 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:45,814 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift_master_certs": ["admin.crt", "master.kubelet-client.crt", "master.proxy-client.crt", "master.server.crt", "openshift-master.crt", "openshift-registry.crt", "openshift-router.crt", "etcd.server.crt"]}}
2016-03-15 11:56:45,814 p=8050 u=bpaskinc |  TASK: [Check status of master certificates] ***********************************
2016-03-15 11:56:45,966 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=admin.crt) => {"changed": false, "item": "admin.crt", "stat": {"exists": false}}
2016-03-15 11:56:46,124 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=master.kubelet-client.crt) => {"changed": false, "item": "master.kubelet-client.crt", "stat": {"exists": false}}
2016-03-15 11:56:46,279 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=master.proxy-client.crt) => {"changed": false, "item": "master.proxy-client.crt", "stat": {"exists": false}}
2016-03-15 11:56:46,431 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=master.server.crt) => {"changed": false, "item": "master.server.crt", "stat": {"exists": false}}
2016-03-15 11:56:46,599 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=openshift-master.crt) => {"changed": false, "item": "openshift-master.crt", "stat": {"exists": false}}
2016-03-15 11:56:46,780 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=openshift-registry.crt) => {"changed": false, "item": "openshift-registry.crt", "stat": {"exists": false}}
2016-03-15 11:56:46,931 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=openshift-router.crt) => {"changed": false, "item": "openshift-router.crt", "stat": {"exists": false}}
2016-03-15 11:56:47,114 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=etcd.server.crt) => {"changed": false, "item": "etcd.server.crt", "stat": {"exists": false}}
2016-03-15 11:56:47,114 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:47,133 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"master_cert_config_dir": "/etc/origin/master", "master_cert_subdir": "master-metrics4-master-d780a.example.com", "master_certs_missing": "True"}}
2016-03-15 11:56:47,133 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:56:47,163 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:47,164 p=8050 u=bpaskinc |  PLAY [Configure master certificates] ******************************************
2016-03-15 11:56:47,164 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:56:47,451 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:56:47,452 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:56:47,481 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:47,482 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:56:47,689 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.004206", "end": "2016-03-15 09:56:47.683118", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:56:47.678912", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:56:47,690 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:56:47,723 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:56:47,723 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:56:47,761 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:56:47,761 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:56:48,472 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:56:48,472 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:56:49,474 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:56:49,475 p=8050 u=bpaskinc |  TASK: [openshift_repos | assert ] *********************************************
2016-03-15 11:56:49,517 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"msg": "all assertions passed"}
2016-03-15 11:56:49,518 p=8050 u=bpaskinc |  TASK: [openshift_repos | Ensure libselinux-python is installed] ***************
2016-03-15 11:56:50,128 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:56:50,129 p=8050 u=bpaskinc |  TASK: [openshift_repos | Create any additional repos that are defined] ********
2016-03-15 11:56:50,153 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:50,153 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove the additional repos if no longer defined] ****
2016-03-15 11:56:50,346 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:56:50,347 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types RHEL/CentOS] ***
2016-03-15 11:56:50,573 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:56:50,775 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:56:51,133 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:56:51,140 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:56:51,341 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:56:51,543 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:56:51,737 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:56:51,738 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types Fedora] ***
2016-03-15 11:56:51,769 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:56:51,773 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:56:51,778 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:56:51,783 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:56:51,787 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:56:51,792 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:56:51,797 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:56:51,798 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure gpg keys if needed] ************************
2016-03-15 11:56:51,830 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:51,830 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories RHEL/CentOS] **************
2016-03-15 11:56:52,074 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": false, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "mode": "0644", "owner": "root", "path": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "state": "file", "uid": 0}
2016-03-15 11:56:52,075 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories Fedora] *******************
2016-03-15 11:56:52,102 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:56:52,103 p=8050 u=bpaskinc |  TASK: [os_firewall | Install firewalld packages] ******************************
2016-03-15 11:56:52,130 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:52,130 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if iptables-services is installed] *****************
2016-03-15 11:56:52,157 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:52,157 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure iptables services are not enabled] ****************
2016-03-15 11:56:52,182 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:56:52,184 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:56:52,185 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:56:52,213 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:52,214 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable firewalld service] **********************
2016-03-15 11:56:52,238 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:52,238 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the firewalld service starting can sometimes cause ssh to fail] ***
2016-03-15 11:56:52,269 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:52,270 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask iptables services] **********************************
2016-03-15 11:56:52,309 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:56:52,313 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:56:52,315 p=8050 u=bpaskinc |  TASK: [os_firewall | Add firewalld allow rules] *******************************
2016-03-15 11:56:52,352 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:56:52,353 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist firewalld allow rules] ***************************
2016-03-15 11:56:52,384 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:56:52,384 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove firewalld allow rules] ****************************
2016-03-15 11:56:52,414 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:56:52,415 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist removal of firewalld allow rules] ****************
2016-03-15 11:56:52,440 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:56:52,441 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if firewalld is installed] *************************
2016-03-15 11:56:52,666 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.030746", "end": "2016-03-15 09:56:52.658676", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:56:52.627930", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}
2016-03-15 11:56:52,666 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure firewalld service is not enabled] *****************
2016-03-15 11:56:52,709 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:52,709 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask firewalld service] **********************************
2016-03-15 11:56:52,755 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:52,756 p=8050 u=bpaskinc |  TASK: [os_firewall | Install iptables packages] *******************************
2016-03-15 11:56:53,378 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=iptables) => {"changed": false, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}
2016-03-15 11:56:54,046 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=iptables-services) => {"changed": false, "item": "iptables-services", "msg": "", "rc": 0, "results": ["iptables-services-1.4.21-16.el7.x86_64 providing iptables-services is already installed"]}
2016-03-15 11:56:54,046 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:56:54,081 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:54,081 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable iptables service] ***********************
2016-03-15 11:56:54,289 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "enabled": true, "name": "iptables", "state": "started"}
2016-03-15 11:56:54,290 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail] ***
2016-03-15 11:56:54,321 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:54,323 p=8050 u=bpaskinc |  TASK: [os_firewall | Add iptables allow rules] ********************************
2016-03-15 11:56:54,351 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:56:54,352 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove iptables rules] ***********************************
2016-03-15 11:56:54,380 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:56:54,380 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:56:54,418 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:54,419 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:56:54,457 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:54,458 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:56:54,488 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:54,489 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:56:54,517 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:54,518 p=8050 u=bpaskinc |  TASK: [openshift_common | Set common Cluster facts] ***************************
2016-03-15 11:56:55,518 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:56:55,518 p=8050 u=bpaskinc |  TASK: [openshift_common | Install the base package for versioning] ************
2016-03-15 11:56:56,158 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64 providing origin is already installed"]}
2016-03-15 11:56:56,159 p=8050 u=bpaskinc |  TASK: [openshift_common | openshift_facts] ************************************
2016-03-15 11:56:57,153 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:56:57,154 p=8050 u=bpaskinc |  TASK: [openshift_common | set_fact ] ******************************************
2016-03-15 11:56:57,189 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"set_hostname_default": "False"}}
2016-03-15 11:56:57,189 p=8050 u=bpaskinc |  TASK: [openshift_common | Set hostname] ***************************************
2016-03-15 11:56:57,214 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:57,215 p=8050 u=bpaskinc |  TASK: [docker | Install docker] ***********************************************
2016-03-15 11:56:57,825 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["docker-1.9.1-0.origin.19.el7.centos.x86_64 providing docker is already installed"]}
2016-03-15 11:56:57,826 p=8050 u=bpaskinc |  TASK: [docker | enable and start the docker service] **************************
2016-03-15 11:56:58,057 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "enabled": true, "name": "docker", "state": "started"}
2016-03-15 11:56:58,057 p=8050 u=bpaskinc |  TASK: [docker | set_fact ] ****************************************************
2016-03-15 11:56:58,092 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"docker_service_status_changed": "start_result | changed"}}
2016-03-15 11:56:58,092 p=8050 u=bpaskinc |  TASK: [docker | Getting current systemd-udevd exec command] *******************
2016-03-15 11:56:58,116 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:58,116 p=8050 u=bpaskinc |  TASK: [docker | Assure systemd-udevd.service.d directory exists] **************
2016-03-15 11:56:58,150 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:58,151 p=8050 u=bpaskinc |  TASK: [docker | Create systemd-udevd override file] ***************************
2016-03-15 11:56:58,191 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:58,192 p=8050 u=bpaskinc |  TASK: [docker | reload systemd config files] **********************************
2016-03-15 11:56:58,221 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:56:58,222 p=8050 u=bpaskinc |  TASK: [openshift_cli | openshift_facts ] **************************************
2016-03-15 11:56:59,354 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:56:59,355 p=8050 u=bpaskinc |  TASK: [openshift_cli | Install clients] ***************************************
2016-03-15 11:57:00,096 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64 providing origin-clients is already installed"]}
2016-03-15 11:57:00,097 p=8050 u=bpaskinc |  TASK: [openshift_cli | Pull CLI Image] ****************************************
2016-03-15 11:57:00,140 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:00,141 p=8050 u=bpaskinc |  TASK: [openshift_cli | Create /usr/local/bin/openshift cli wrapper] ***********
2016-03-15 11:57:00,169 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:00,170 p=8050 u=bpaskinc |  TASK: [openshift_cli | Create client symlinks] ********************************
2016-03-15 11:57:00,205 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/usr/local/bin/oadm)
2016-03-15 11:57:00,209 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/usr/local/bin/oc)
2016-03-15 11:57:00,213 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/usr/local/bin/kubectl)
2016-03-15 11:57:00,214 p=8050 u=bpaskinc |  TASK: [openshift_master_ca | Install the base package for admin tooling] ******
2016-03-15 11:57:00,793 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64 providing origin is already installed"]}
2016-03-15 11:57:00,793 p=8050 u=bpaskinc |  TASK: [openshift_master_ca | Reload generated facts] **************************
2016-03-15 11:57:00,829 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:00,830 p=8050 u=bpaskinc |  TASK: [openshift_master_ca | Create openshift_master_config_dir if it doesn't exist] ***
2016-03-15 11:57:01,006 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "gid": 0, "group": "root", "mode": "0755", "owner": "root", "path": "/etc/origin/master", "secontext": "unconfined_u:object_r:etc_t:s0", "size": 6, "state": "directory", "uid": 0}
2016-03-15 11:57:01,006 p=8050 u=bpaskinc |  TASK: [openshift_master_ca | Create the master certificates if they do not already exist] ***
2016-03-15 11:57:08,933 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": ["oadm", "create-master-certs", "--hostnames=kubernetes.default,kubernetes.default.svc.cluster.local,kubernetes,openshift.default,192.168.55.98,metrics4-master-d780a.example.com,openshift.default.svc,172.30.0.1,openshift.default.svc.cluster.local,kubernetes.default.svc,openshift", "--master=https://metrics4-master-d780a.example.com:8443", "--public-master=https://metrics4-master-d780a.example.com:8443", "--cert-dir=/etc/origin/master", "--overwrite=false"], "delta": "0:00:07.717595", "end": "2016-03-15 09:57:08.924129", "rc": 0, "start": "2016-03-15 09:57:01.206534", "stderr": "Command \"create-master-certs\" is deprecated, Use 'oadm ca' instead.", "stdout": "Generated new key pair as /etc/origin/master/serviceaccounts.public.key and /etc/origin/master/serviceaccounts.private.key", "warnings": []}
2016-03-15 11:57:08,934 p=8050 u=bpaskinc |  TASK: [openshift_master_certificates | Ensure the generated_configs directory present] ***
2016-03-15 11:57:08,970 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:08,971 p=8050 u=bpaskinc |  TASK: [openshift_master_certificates | file ] *********************************
2016-03-15 11:57:08,995 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:08,995 p=8050 u=bpaskinc |  TASK: [openshift_master_certificates | Create the master certificates if they do not already exist] ***
2016-03-15 11:57:09,018 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:09,019 p=8050 u=bpaskinc |  TASK: [openshift_master_certificates | file ] *********************************
2016-03-15 11:57:09,040 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:09,041 p=8050 u=bpaskinc |  TASK: [Remove generated etcd client certs when using external etcd] ***********
2016-03-15 11:57:09,054 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:09,054 p=8050 u=bpaskinc |  TASK: [Create a tarball of the master certs] **********************************
2016-03-15 11:57:09,069 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:09,069 p=8050 u=bpaskinc |  TASK: [Retrieve the master cert tarball from the master] **********************
2016-03-15 11:57:09,084 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:09,085 p=8050 u=bpaskinc |  PLAY [Configure load balancers] ***********************************************
2016-03-15 11:57:09,086 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:57:09,086 p=8050 u=bpaskinc |  PLAY [Check for cached session secrets] ***************************************
2016-03-15 11:57:09,086 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:57:09,359 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:57:09,359 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:57:09,372 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:09,372 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:57:09,557 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.003830", "end": "2016-03-15 09:57:09.551879", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:57:09.548049", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:57:09,558 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:09,570 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:57:09,570 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:09,588 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:57:09,588 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:57:10,262 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:57:10,263 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:57:11,355 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:11,356 p=8050 u=bpaskinc |  TASK: [openshift_facts ] ******************************************************
2016-03-15 11:57:12,437 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:12,438 p=8050 u=bpaskinc |  PLAY [Generate master session secrets] ****************************************
2016-03-15 11:57:12,438 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:57:12,972 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:57:12,973 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:57:12,994 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:12,995 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:57:13,271 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.005409", "end": "2016-03-15 09:57:13.251970", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:57:13.246561", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:57:13,272 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:13,291 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:57:13,291 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:13,319 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:57:13,320 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:57:14,142 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:57:14,143 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:57:15,552 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:15,552 p=8050 u=bpaskinc |  TASK: [openshift_facts ] ******************************************************
2016-03-15 11:57:16,536 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true}
2016-03-15 11:57:16,537 p=8050 u=bpaskinc |  PLAY [Parse named certificates] ***********************************************
2016-03-15 11:57:16,537 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:57:16,933 p=8050 u=bpaskinc |  ok: [localhost]
2016-03-15 11:57:16,933 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:57:16,941 p=8050 u=bpaskinc |  skipping: [localhost]
2016-03-15 11:57:16,942 p=8050 u=bpaskinc |  PLAY [Deploy named certificates] **********************************************
2016-03-15 11:57:16,942 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:57:18,238 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:57:18,240 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:57:18,263 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:18,270 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:57:18,480 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.003594", "end": "2016-03-15 09:57:18.475309", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:57:18.471715", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:57:18,480 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:18,492 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:57:18,493 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:18,508 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:57:18,509 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:57:19,118 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:57:19,119 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:57:20,092 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:20,093 p=8050 u=bpaskinc |  TASK: [openshift_facts ] ******************************************************
2016-03-15 11:57:21,165 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true}
2016-03-15 11:57:21,166 p=8050 u=bpaskinc |  TASK: [Clear named certificates] **********************************************
2016-03-15 11:57:21,182 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,182 p=8050 u=bpaskinc |  TASK: [Ensure named certificate directory exists] *****************************
2016-03-15 11:57:21,203 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,204 p=8050 u=bpaskinc |  TASK: [Land named certificates] ***********************************************
2016-03-15 11:57:21,223 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=openshift_master_named_certificates)
2016-03-15 11:57:21,226 p=8050 u=bpaskinc |  TASK: [Land named certificate keys] *******************************************
2016-03-15 11:57:21,243 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=openshift_master_named_certificates)
2016-03-15 11:57:21,243 p=8050 u=bpaskinc |  PLAY [Configure master instances] *********************************************
2016-03-15 11:57:21,244 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:57:21,522 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:57:21,523 p=8050 u=bpaskinc |  TASK: [Ensure certificate directory exists] ***********************************
2016-03-15 11:57:21,536 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,537 p=8050 u=bpaskinc |  TASK: [Unarchive the tarball on the master] ***********************************
2016-03-15 11:57:21,555 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,556 p=8050 u=bpaskinc |  TASK: [os_firewall | Install firewalld packages] ******************************
2016-03-15 11:57:21,599 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,600 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if iptables-services is installed] *****************
2016-03-15 11:57:21,641 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,642 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure iptables services are not enabled] ****************
2016-03-15 11:57:21,705 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:57:21,709 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:57:21,710 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:57:21,756 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,757 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable firewalld service] **********************
2016-03-15 11:57:21,794 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,795 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the firewalld service starting can sometimes cause ssh to fail] ***
2016-03-15 11:57:21,830 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:21,830 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask iptables services] **********************************
2016-03-15 11:57:21,872 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:57:21,875 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:57:21,876 p=8050 u=bpaskinc |  TASK: [os_firewall | Add firewalld allow rules] *******************************
2016-03-15 11:57:21,937 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '4001/tcp', 'service': 'etcd embedded'})
2016-03-15 11:57:21,942 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': u'8443/tcp', 'service': 'api server https'})
2016-03-15 11:57:21,946 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': u'8444/tcp', 'service': 'api controllers https'})
2016-03-15 11:57:21,949 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '53/tcp', 'service': 'dns tcp'})
2016-03-15 11:57:21,953 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '53/udp', 'service': 'dns udp'})
2016-03-15 11:57:21,957 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '24224/tcp', 'service': 'Fluentd td-agent tcp'})
2016-03-15 11:57:21,960 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '24224/udp', 'service': 'Fluentd td-agent udp'})
2016-03-15 11:57:21,963 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '2224/tcp', 'service': 'pcsd'})
2016-03-15 11:57:21,969 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '5404/udp', 'service': 'Corosync UDP'})
2016-03-15 11:57:21,973 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '5405/udp', 'service': 'Corosync UDP'})
2016-03-15 11:57:21,974 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist firewalld allow rules] ***************************
2016-03-15 11:57:22,031 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '4001/tcp', 'service': 'etcd embedded'})
2016-03-15 11:57:22,034 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': u'8443/tcp', 'service': 'api server https'})
2016-03-15 11:57:22,037 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': u'8444/tcp', 'service': 'api controllers https'})
2016-03-15 11:57:22,039 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '53/tcp', 'service': 'dns tcp'})
2016-03-15 11:57:22,041 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '53/udp', 'service': 'dns udp'})
2016-03-15 11:57:22,043 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '24224/tcp', 'service': 'Fluentd td-agent tcp'})
2016-03-15 11:57:22,045 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '24224/udp', 'service': 'Fluentd td-agent udp'})
2016-03-15 11:57:22,050 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '2224/tcp', 'service': 'pcsd'})
2016-03-15 11:57:22,055 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '5404/udp', 'service': 'Corosync UDP'})
2016-03-15 11:57:22,057 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '5405/udp', 'service': 'Corosync UDP'})
2016-03-15 11:57:22,058 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove firewalld allow rules] ****************************
2016-03-15 11:57:22,104 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '8080/tcp', 'service': 'api server http'})
2016-03-15 11:57:22,106 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '7001/tcp', 'service': 'former etcd peer port'})
2016-03-15 11:57:22,106 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist removal of firewalld allow rules] ****************
2016-03-15 11:57:22,138 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '8080/tcp', 'service': 'api server http'})
2016-03-15 11:57:22,140 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '7001/tcp', 'service': 'former etcd peer port'})
2016-03-15 11:57:22,140 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if firewalld is installed] *************************
2016-03-15 11:57:22,407 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.029635", "end": "2016-03-15 09:57:22.395815", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:57:22.366180", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}
2016-03-15 11:57:22,408 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure firewalld service is not enabled] *****************
2016-03-15 11:57:22,460 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:22,460 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask firewalld service] **********************************
2016-03-15 11:57:22,514 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:22,514 p=8050 u=bpaskinc |  TASK: [os_firewall | Install iptables packages] *******************************
2016-03-15 11:57:23,170 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=iptables) => {"changed": false, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}
2016-03-15 11:57:23,801 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=iptables-services) => {"changed": false, "item": "iptables-services", "msg": "", "rc": 0, "results": ["iptables-services-1.4.21-16.el7.x86_64 providing iptables-services is already installed"]}
2016-03-15 11:57:23,801 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:57:23,849 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:23,850 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable iptables service] ***********************
2016-03-15 11:57:24,164 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "enabled": true, "name": "iptables", "state": "started"}
2016-03-15 11:57:24,165 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail] ***
2016-03-15 11:57:24,210 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:24,210 p=8050 u=bpaskinc |  TASK: [os_firewall | Add iptables allow rules] ********************************
2016-03-15 11:57:24,576 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '4001/tcp', 'service': 'etcd embedded'}) => {"changed": true, "item": {"port": "4001/tcp", "service": "etcd embedded"}, "output": ["", "Successfully created chain OS_FIREWALL_ALLOW", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n", "", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n", "", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:24,863 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': u'8443/tcp', 'service': 'api server https'}) => {"changed": true, "item": {"port": "8443/tcp", "service": "api server https"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:25,111 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': u'8444/tcp', 'service': 'api controllers https'}) => {"changed": true, "item": {"port": "8444/tcp", "service": "api controllers https"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:25,402 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '53/tcp', 'service': 'dns tcp'}) => {"changed": true, "item": {"port": "53/tcp", "service": "dns tcp"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:25,686 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '53/udp', 'service': 'dns udp'}) => {"changed": true, "item": {"port": "53/udp", "service": "dns udp"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:25,948 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '24224/tcp', 'service': 'Fluentd td-agent tcp'}) => {"changed": true, "item": {"port": "24224/tcp", "service": "Fluentd td-agent tcp"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:26,246 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '24224/udp', 'service': 'Fluentd td-agent udp'}) => {"changed": true, "item": {"port": "24224/udp", "service": "Fluentd td-agent udp"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:26,474 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '2224/tcp', 'service': 'pcsd'}) => {"changed": true, "item": {"port": "2224/tcp", "service": "pcsd"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:26,752 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '5404/udp', 'service': 'Corosync UDP'}) => {"changed": true, "item": {"port": "5404/udp", "service": "Corosync UDP"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:27,094 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '5405/udp', 'service': 'Corosync UDP'}) => {"changed": true, "item": {"port": "5405/udp", "service": "Corosync UDP"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:57:27,095 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove iptables rules] ***********************************
2016-03-15 11:57:27,332 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item={'port': '8080/tcp', 'service': 'api server http'}) => {"changed": false, "item": {"port": "8080/tcp", "service": "api server http"}, "output": []}
2016-03-15 11:57:27,515 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item={'port': '7001/tcp', 'service': 'former etcd peer port'}) => {"changed": false, "item": {"port": "7001/tcp", "service": "former etcd peer port"}, "output": []}
2016-03-15 11:57:27,516 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:57:27,569 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:27,570 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:57:27,806 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.003884", "end": "2016-03-15 09:57:27.801184", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:57:27.797300", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:57:27,807 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:27,858 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:57:27,858 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:57:27,914 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:57:27,914 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:57:28,540 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:57:28,540 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:57:29,534 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:29,534 p=8050 u=bpaskinc |  TASK: [openshift_repos | assert ] *********************************************
2016-03-15 11:57:29,581 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"msg": "all assertions passed"}
2016-03-15 11:57:29,581 p=8050 u=bpaskinc |  TASK: [openshift_repos | Ensure libselinux-python is installed] ***************
2016-03-15 11:57:30,354 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed"]}
2016-03-15 11:57:30,354 p=8050 u=bpaskinc |  TASK: [openshift_repos | Create any additional repos that are defined] ********
2016-03-15 11:57:30,403 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:30,403 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove the additional repos if no longer defined] ****
2016-03-15 11:57:30,603 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "path": "/etc/yum.repos.d/openshift_additional.repo", "state": "absent"}
2016-03-15 11:57:30,604 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types RHEL/CentOS] ***
2016-03-15 11:57:30,818 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/enterprise-v3.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/enterprise-v3.repo", "path": "/etc/yum.repos.d/enterprise-v3.repo", "state": "absent"}
2016-03-15 11:57:31,009 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo", "path": "/etc/yum.repos.d/rhel-7-libra-candidate.repo", "state": "absent"}
2016-03-15 11:57:31,201 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo", "path": "/etc/yum.repos.d/maxamillion-fedora-openshift-fedora.repo", "state": "absent"}
2016-03-15 11:57:31,211 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:57:31,419 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-server.repo", "state": "absent"}
2016-03-15 11:57:31,617 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo", "path": "/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo", "state": "absent"}
2016-03-15 11:57:31,807 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/epel7-openshift.repo) => {"changed": false, "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/epel7-openshift.repo", "path": "/etc/yum.repos.d/epel7-openshift.repo", "state": "absent"}
2016-03-15 11:57:31,807 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types Fedora] ***
2016-03-15 11:57:31,863 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:57:31,872 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:57:31,879 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:57:31,885 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:57:31,891 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:57:31,898 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:57:31,906 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:57:31,906 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure gpg keys if needed] ************************
2016-03-15 11:57:31,941 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:31,941 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories RHEL/CentOS] **************
2016-03-15 11:57:32,208 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo) => {"changed": false, "checksum": "aca7a82c80ff433b6f750787d1c18306fd960667", "dest": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "gid": 0, "group": "root", "item": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo", "mode": "0644", "owner": "root", "path": "/etc/yum.repos.d/maxamillion-origin-next-epel-7.repo", "secontext": "system_u:object_r:system_conf_t:s0", "size": 312, "state": "file", "uid": 0}
2016-03-15 11:57:32,208 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories Fedora] *******************
2016-03-15 11:57:32,249 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-master/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:57:32,250 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:57:32,284 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:32,284 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:57:32,318 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:32,318 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:57:32,350 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:32,351 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:57:32,381 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:32,382 p=8050 u=bpaskinc |  TASK: [openshift_common | Set common Cluster facts] ***************************
2016-03-15 11:57:33,395 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:33,395 p=8050 u=bpaskinc |  TASK: [openshift_common | Install the base package for versioning] ************
2016-03-15 11:57:34,046 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64 providing origin is already installed"]}
2016-03-15 11:57:34,046 p=8050 u=bpaskinc |  TASK: [openshift_common | openshift_facts] ************************************
2016-03-15 11:57:34,978 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:34,979 p=8050 u=bpaskinc |  TASK: [openshift_common | set_fact ] ******************************************
2016-03-15 11:57:35,034 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"set_hostname_default": "False"}}
2016-03-15 11:57:35,034 p=8050 u=bpaskinc |  TASK: [openshift_common | Set hostname] ***************************************
2016-03-15 11:57:35,068 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:35,068 p=8050 u=bpaskinc |  TASK: [docker | Install docker] ***********************************************
2016-03-15 11:57:35,859 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["docker-1.9.1-0.origin.19.el7.centos.x86_64 providing docker is already installed"]}
2016-03-15 11:57:35,860 p=8050 u=bpaskinc |  TASK: [docker | enable and start the docker service] **************************
2016-03-15 11:57:36,132 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "enabled": true, "name": "docker", "state": "started"}
2016-03-15 11:57:36,133 p=8050 u=bpaskinc |  TASK: [docker | set_fact ] ****************************************************
2016-03-15 11:57:36,168 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"docker_service_status_changed": "start_result | changed"}}
2016-03-15 11:57:36,168 p=8050 u=bpaskinc |  TASK: [docker | Getting current systemd-udevd exec command] *******************
2016-03-15 11:57:36,211 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:36,212 p=8050 u=bpaskinc |  TASK: [docker | Assure systemd-udevd.service.d directory exists] **************
2016-03-15 11:57:36,246 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:36,247 p=8050 u=bpaskinc |  TASK: [docker | Create systemd-udevd override file] ***************************
2016-03-15 11:57:36,280 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:36,281 p=8050 u=bpaskinc |  TASK: [docker | reload systemd config files] **********************************
2016-03-15 11:57:36,315 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:36,315 p=8050 u=bpaskinc |  TASK: [openshift_cli | openshift_facts ] **************************************
2016-03-15 11:57:37,258 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_url": "openshift/origin-${component}:${version}", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:37,258 p=8050 u=bpaskinc |  TASK: [openshift_cli | Install clients] ***************************************
2016-03-15 11:57:37,955 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["origin-clients-1.1.3-0.git.0.8edc1be.el7.centos.x86_64 providing origin-clients is already installed"]}
2016-03-15 11:57:37,956 p=8050 u=bpaskinc |  TASK: [openshift_cli | Pull CLI Image] ****************************************
2016-03-15 11:57:38,025 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:38,027 p=8050 u=bpaskinc |  TASK: [openshift_cli | Create /usr/local/bin/openshift cli wrapper] ***********
2016-03-15 11:57:38,083 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:38,084 p=8050 u=bpaskinc |  TASK: [openshift_cli | Create client symlinks] ********************************
2016-03-15 11:57:38,123 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/usr/local/bin/oadm)
2016-03-15 11:57:38,126 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/usr/local/bin/oc)
2016-03-15 11:57:38,128 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/usr/local/bin/kubectl)
2016-03-15 11:57:38,129 p=8050 u=bpaskinc |  TASK: [openshift_master | fail ] **********************************************
2016-03-15 11:57:38,180 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:38,182 p=8050 u=bpaskinc |  TASK: [openshift_master | fail ] **********************************************
2016-03-15 11:57:38,224 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:38,225 p=8050 u=bpaskinc |  TASK: [openshift_master | fail ] **********************************************
2016-03-15 11:57:38,277 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:38,277 p=8050 u=bpaskinc |  TASK: [openshift_master | fail ] **********************************************
2016-03-15 11:57:38,315 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:38,315 p=8050 u=bpaskinc |  TASK: [openshift_master | fail ] **********************************************
2016-03-15 11:57:38,379 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:38,381 p=8050 u=bpaskinc |  TASK: [openshift_master | Set master facts] ***********************************
2016-03-15 11:57:39,653 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "cluster_method": "native", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "debug_level": "2", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "infra_nodes": ["metrics4-node-infra-48f49"], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_selector": "type=infra", "registry_url": "openshift/origin-${component}:${version}", "router_selector": "type=infra", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "/etc/origin/master/session-secrets.yaml", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true}
2016-03-15 11:57:39,653 p=8050 u=bpaskinc |  TASK: [openshift_master | Install Master package] *****************************
2016-03-15 11:57:46,561 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-\n              : manager\nThis system is not registered with Subscription Management. You can use subscription-manager to register.\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package origin-master.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package  Arch   Version                          Repository               Size\n================================================================================\nInstalling:\n origin-master\n          x86_64 1.1.3-0.git.0.8edc1be.el7.centos maxamillion-origin-next 385 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 385 k\nInstalled size: 856  \nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : origin-master-1.1.3-0.git.0.8edc1be.el7.centos.x86_64        1/1 \n  Verifying  : origin-master-1.1.3-0.git.0.8edc1be.el7.centos.x86_64        1/1 \n\nInstalled:\n  origin-master.x86_64 0:1.1.3-0.git.0.8edc1be.el7.centos                       \n\nComplete!\n"]}
2016-03-15 11:57:46,561 p=8050 u=bpaskinc |  TASK: [openshift_master | Pull master image] **********************************
2016-03-15 11:57:46,607 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:46,608 p=8050 u=bpaskinc |  TASK: [openshift_master | Install Master docker service file] *****************
2016-03-15 11:57:46,650 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:46,651 p=8050 u=bpaskinc |  TASK: [openshift_master | Create openshift.common.data_dir] *******************
2016-03-15 11:57:46,689 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:46,689 p=8050 u=bpaskinc |  TASK: [openshift_master | Reload systemd units] *******************************
2016-03-15 11:57:46,733 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:46,734 p=8050 u=bpaskinc |  TASK: [openshift_master | Re-gather package dependent master facts] ***********
2016-03-15 11:57:47,679 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-master", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "cluster_method": "native", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "debug_level": "2", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "infra_nodes": ["metrics4-node-infra-48f49"], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_selector": "type=infra", "registry_url": "openshift/origin-${component}:${version}", "router_selector": "type=infra", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "/etc/origin/master/session-secrets.yaml", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:57:47,680 p=8050 u=bpaskinc |  TASK: [openshift_master | Create config parent directory if it does not exist] ***
2016-03-15 11:57:47,887 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "gid": 0, "group": "root", "mode": "0755", "owner": "root", "path": "/etc/origin/master", "secontext": "system_u:object_r:etc_t:s0", "size": 4096, "state": "directory", "uid": 0}
2016-03-15 11:57:47,888 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the policy file if it does not already exist] ***
2016-03-15 11:57:48,197 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": ["oadm", "create-bootstrap-policy-file", "--filename=/etc/origin/master/policy.json"], "delta": "0:00:00.082178", "end": "2016-03-15 09:57:48.191168", "rc": 0, "start": "2016-03-15 09:57:48.108990", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:57:48,197 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the scheduler config] ************************
2016-03-15 11:57:48,475 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "checksum": "8561cc6713edb7c8c72a0a71b15329b17ae5e1f4", "dest": "/etc/origin/master/scheduler.json", "gid": 0, "group": "root", "md5sum": "2a261ebf04676e2259895dbcbd7cd72c", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:etc_t:s0", "size": 501, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035868.24-249372030337183/source", "state": "file", "uid": 0}
2016-03-15 11:57:48,476 p=8050 u=bpaskinc |  TASK: [openshift_master | Install httpd-tools if needed] **********************
2016-03-15 11:57:48,529 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={u'login': True, u'challenge': True, u'kind': u'AllowAllPasswordIdentityProvider', u'name': u'allow_all'})
2016-03-15 11:57:48,530 p=8050 u=bpaskinc |  TASK: [openshift_master | Ensure htpasswd directory exists] *******************
2016-03-15 11:57:48,564 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={u'login': True, u'challenge': True, u'kind': u'AllowAllPasswordIdentityProvider', u'name': u'allow_all'})
2016-03-15 11:57:48,565 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the htpasswd file if needed] *****************
2016-03-15 11:57:48,600 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={u'login': True, u'challenge': True, u'kind': u'AllowAllPasswordIdentityProvider', u'name': u'allow_all'})
2016-03-15 11:57:48,600 p=8050 u=bpaskinc |  TASK: [openshift_master | Init HA Service Info] *******************************
2016-03-15 11:57:48,631 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"ha_suffix": "", "ha_svcdir": "/usr/lib/systemd/system"}}
2016-03-15 11:57:48,632 p=8050 u=bpaskinc |  TASK: [openshift_master | Set HA Service Info for containerized installs] *****
2016-03-15 11:57:48,665 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:48,666 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the systemd unit files] **********************
2016-03-15 11:57:48,700 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=api)
2016-03-15 11:57:48,706 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=controllers)
2016-03-15 11:57:48,707 p=8050 u=bpaskinc |  TASK: [openshift_master | command systemctl daemon-reload] ********************
2016-03-15 11:57:48,741 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:48,742 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the master api service env file] *************
2016-03-15 11:57:48,779 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:48,779 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the master controllers service env file] *****
2016-03-15 11:57:48,816 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:48,817 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the master service env file] *****************
2016-03-15 11:57:49,086 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "checksum": "381fcaccd7e89968d0258f2f4c082109207fdd91", "dest": "/etc/sysconfig/origin-master", "gid": 0, "group": "root", "md5sum": "b33619c68393e72ceb82a4047c38084b", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:etc_t:s0", "size": 314, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035868.85-222367031531374/source", "state": "file", "uid": 0}
2016-03-15 11:57:49,087 p=8050 u=bpaskinc |  TASK: [openshift_master | Create session secrets file] ************************
2016-03-15 11:57:49,359 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "checksum": "1f5c017bf924e3466149f3ebcaa6a94656140db3", "dest": "/etc/origin/master/session-secrets.yaml", "gid": 0, "group": "root", "md5sum": "56df020367fc4d095d87fcf042dbed4a", "mode": "0600", "owner": "root", "secontext": "system_u:object_r:etc_t:s0", "size": 147, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035869.12-252457861274525/source", "state": "file", "uid": 0}
2016-03-15 11:57:49,360 p=8050 u=bpaskinc |  TASK: [openshift_master | set_fact ] ******************************************
2016-03-15 11:57:49,422 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"translated_identity_providers": "- challenge: true\n  login: true\n  mappingMethod: claim\n  name: allow_all\n  provider:\n    apiVersion: v1\n    kind: AllowAllPasswordIdentityProvider\n"}}
2016-03-15 11:57:49,424 p=8050 u=bpaskinc |  TASK: [openshift_master | Create master config] *******************************
2016-03-15 11:57:49,821 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "checksum": "0e6b4ab73920c9af1067d2aa6ed11bef1e1817e5", "dest": "/etc/origin/master/master-config.yaml", "gid": 0, "group": "root", "md5sum": "a011f8073a26aa8d0af00575585a7ffc", "mode": "0600", "owner": "root", "secontext": "system_u:object_r:etc_t:s0", "size": 4070, "src": "/home/openshift/.ansible/tmp/ansible-tmp-1458035869.48-274152367531706/source", "state": "file", "uid": 0}
2016-03-15 11:57:49,822 p=8050 u=bpaskinc |  TASK: [openshift_master | Test local loopback context] ************************
2016-03-15 11:57:49,870 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:49,879 p=8050 u=bpaskinc |  TASK: [openshift_master | command {{ openshift.common.client_binary }} config set-cluster --certificate-authority={{ openshift_master_config_dir }}/ca.crt --embed-certs=true --server={{ openshift.master.loopback_api_url }} {{ openshift.master.loopback_cluster_name }} --config={{ openshift_master_loopback_config }}] ***
2016-03-15 11:57:49,926 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:49,931 p=8050 u=bpaskinc |  TASK: [openshift_master | command {{ openshift.common.client_binary }} config set-context --cluster={{ openshift.master.loopback_cluster_name }} --namespace=default --user={{ openshift.master.loopback_user }} {{ openshift.master.loopback_context_name }} --config={{ openshift_master_loopback_config }}] ***
2016-03-15 11:57:49,969 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:49,974 p=8050 u=bpaskinc |  TASK: [openshift_master | command {{ openshift.common.client_binary }} config use-context {{ openshift.master.loopback_context_name }} --config={{ openshift_master_loopback_config }}] ***
2016-03-15 11:57:50,009 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:50,010 p=8050 u=bpaskinc |  TASK: [openshift_master | Start and enable master] ****************************
2016-03-15 11:57:56,560 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "enabled": true, "name": "origin-master", "state": "started"}
2016-03-15 11:57:56,561 p=8050 u=bpaskinc |  TASK: [openshift_master | Stop and disable non HA master when running HA] *****
2016-03-15 11:57:56,619 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:56,620 p=8050 u=bpaskinc |  TASK: [openshift_master | set_fact ] ******************************************
2016-03-15 11:57:56,682 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"master_service_status_changed": "True"}}
2016-03-15 11:57:56,682 p=8050 u=bpaskinc |  TASK: [openshift_master | Mask master service] ********************************
2016-03-15 11:57:56,787 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:56,798 p=8050 u=bpaskinc |  TASK: [openshift_master | Start and enable master api] ************************
2016-03-15 11:57:56,878 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:56,879 p=8050 u=bpaskinc |  TASK: [openshift_master | set_fact ] ******************************************
2016-03-15 11:57:56,974 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:56,974 p=8050 u=bpaskinc |  TASK: [openshift_master | Wait for API to become available] *******************
2016-03-15 11:57:57,069 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:57,069 p=8050 u=bpaskinc |  TASK: [openshift_master | Start and enable master controller] *****************
2016-03-15 11:57:57,128 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:57,128 p=8050 u=bpaskinc |  TASK: [openshift_master | set_fact ] ******************************************
2016-03-15 11:57:57,186 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:57,187 p=8050 u=bpaskinc |  TASK: [openshift_master | Install cluster packages] ***************************
2016-03-15 11:57:57,252 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:57,253 p=8050 u=bpaskinc |  TASK: [openshift_master | Start and enable cluster service] *******************
2016-03-15 11:57:57,324 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:57,324 p=8050 u=bpaskinc |  TASK: [openshift_master | Set the cluster user password] **********************
2016-03-15 11:57:57,385 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:57:57,386 p=8050 u=bpaskinc |  TASK: [openshift_master | Lookup default group for ansible_ssh_user] **********
2016-03-15 11:57:57,805 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["/usr/bin/id", "-g", "openshift"], "delta": "0:00:00.003090", "end": "2016-03-15 09:57:57.792687", "rc": 0, "start": "2016-03-15 09:57:57.789597", "stderr": "", "stdout": "1000", "stdout_lines": ["1000"], "warnings": []}
2016-03-15 11:57:57,806 p=8050 u=bpaskinc |  TASK: [openshift_master | Create the client config dir(s)] ********************
2016-03-15 11:57:58,206 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=root) => {"changed": true, "gid": 0, "group": "root", "item": "root", "mode": "0700", "owner": "root", "path": "/root/.kube", "secontext": "unconfined_u:object_r:admin_home_t:s0", "size": 6, "state": "directory", "uid": 0}
2016-03-15 11:57:58,518 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=openshift) => {"changed": true, "gid": 1000, "group": "openshift", "item": "openshift", "mode": "0700", "owner": "openshift", "path": "/home/openshift/.kube", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 6, "state": "directory", "uid": 1000}
2016-03-15 11:57:58,519 p=8050 u=bpaskinc |  TASK: [openshift_master | Copy the admin client config(s)] ********************
2016-03-15 11:57:58,944 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=root) => {"changed": true, "cmd": ["cp", "/etc/origin/master/admin.kubeconfig", "~root/.kube/config"], "delta": "0:00:00.002900", "end": "2016-03-15 09:57:58.941443", "item": "root", "rc": 0, "start": "2016-03-15 09:57:58.938543", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:57:59,758 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=openshift) => {"changed": true, "cmd": ["cp", "/etc/origin/master/admin.kubeconfig", "~openshift/.kube/config"], "delta": "0:00:00.016188", "end": "2016-03-15 09:57:59.712826", "item": "openshift", "rc": 0, "start": "2016-03-15 09:57:59.696638", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:57:59,758 p=8050 u=bpaskinc |  TASK: [openshift_master | Update the permissions on the admin client config(s)] ***
2016-03-15 11:58:00,432 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=root) => {"changed": true, "gid": 0, "group": "root", "item": "root", "mode": "0700", "owner": "root", "path": "/root/.kube/config", "secontext": "unconfined_u:object_r:admin_home_t:s0", "size": 5782, "state": "file", "uid": 0}
2016-03-15 11:58:00,748 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=openshift) => {"changed": true, "gid": 1000, "group": "openshift", "item": "openshift", "mode": "0700", "owner": "openshift", "path": "/home/openshift/.kube/config", "secontext": "unconfined_u:object_r:user_home_t:s0", "size": 5782, "state": "file", "uid": 1000}
2016-03-15 11:58:00,749 p=8050 u=bpaskinc |  TASK: [nickhammond.logrotate | nickhammond.logrotate | Install logrotate] *****
2016-03-15 11:58:01,527 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["logrotate-3.8.6-7.el7_2.x86_64 providing logrotate is already installed"]}
2016-03-15 11:58:01,528 p=8050 u=bpaskinc |  TASK: [nickhammond.logrotate | nickhammond.logrotate | Setup logrotate.d scripts] ***
2016-03-15 11:58:01,543 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=logrotate_scripts)
2016-03-15 11:58:01,544 p=8050 u=bpaskinc |  TASK: [nuage_ca | Install openssl] ********************************************
2016-03-15 11:58:01,586 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,587 p=8050 u=bpaskinc |  TASK: [nuage_ca | Create CA directory] ****************************************
2016-03-15 11:58:01,618 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,618 p=8050 u=bpaskinc |  TASK: [nuage_ca | Create certificate directory] *******************************
2016-03-15 11:58:01,661 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,662 p=8050 u=bpaskinc |  TASK: [nuage_ca | Check if the CA key already exists] *************************
2016-03-15 11:58:01,710 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,711 p=8050 u=bpaskinc |  TASK: [nuage_ca | Create CA key] **********************************************
2016-03-15 11:58:01,741 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,742 p=8050 u=bpaskinc |  TASK: [nuage_ca | Check if the CA crt already exists] *************************
2016-03-15 11:58:01,773 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,773 p=8050 u=bpaskinc |  TASK: [nuage_ca | Create CA crt] **********************************************
2016-03-15 11:58:01,812 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,812 p=8050 u=bpaskinc |  TASK: [nuage_ca | Create the serial file] *************************************
2016-03-15 11:58:01,844 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,845 p=8050 u=bpaskinc |  TASK: [nuage_ca | Copy SSL config file] ***************************************
2016-03-15 11:58:01,876 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,877 p=8050 u=bpaskinc |  TASK: [nuage_master | Create directory /usr/share/nuage-openshift-monitor] ****
2016-03-15 11:58:01,905 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,906 p=8050 u=bpaskinc |  TASK: [nuage_master | Create the log directory] *******************************
2016-03-15 11:58:01,937 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,938 p=8050 u=bpaskinc |  TASK: [nuage_master | Install Nuage Openshift Monitor] ************************
2016-03-15 11:58:01,968 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:01,969 p=8050 u=bpaskinc |  TASK: [nuage_master | Run the service account creation script] ****************
2016-03-15 11:58:02,002 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,003 p=8050 u=bpaskinc |  TASK: [nuage_master | Download the certs and keys] ****************************
2016-03-15 11:58:02,036 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ca.crt)
2016-03-15 11:58:02,039 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=nuage.crt)
2016-03-15 11:58:02,041 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=nuage.key)
2016-03-15 11:58:02,044 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=nuage.kubeconfig)
2016-03-15 11:58:02,045 p=8050 u=bpaskinc |  TASK: [nuage_master | Create a directory to hold the certificates] ************
2016-03-15 11:58:02,081 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,081 p=8050 u=bpaskinc |  TASK: [nuage_master | Create the key] *****************************************
2016-03-15 11:58:02,113 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,113 p=8050 u=bpaskinc |  TASK: [nuage_master | Create the req file] ************************************
2016-03-15 11:58:02,146 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,146 p=8050 u=bpaskinc |  TASK: [nuage_master | Generate the crt file] **********************************
2016-03-15 11:58:02,176 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,177 p=8050 u=bpaskinc |  TASK: [nuage_master | Remove the req file] ************************************
2016-03-15 11:58:02,210 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,210 p=8050 u=bpaskinc |  TASK: [nuage_master | Copy nuage CA crt] **************************************
2016-03-15 11:58:02,242 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,242 p=8050 u=bpaskinc |  TASK: [nuage_master | Archive the certificate dir] ****************************
2016-03-15 11:58:02,272 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,273 p=8050 u=bpaskinc |  TASK: [nuage_master | Create a temp directory for the certificates] ***********
2016-03-15 11:58:02,297 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,297 p=8050 u=bpaskinc |  TASK: [nuage_master | Download the certificates] ******************************
2016-03-15 11:58:02,330 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,331 p=8050 u=bpaskinc |  TASK: [nuage_master | Extract the certificates] *******************************
2016-03-15 11:58:02,362 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,362 p=8050 u=bpaskinc |  TASK: [nuage_master | Delete the certificates after copy] *********************
2016-03-15 11:58:02,397 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,397 p=8050 u=bpaskinc |  TASK: [nuage_master | Delete the temp directory] ******************************
2016-03-15 11:58:02,439 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,440 p=8050 u=bpaskinc |  TASK: [nuage_master | Create nuage-openshift-monitor.yaml] ********************
2016-03-15 11:58:02,480 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,481 p=8050 u=bpaskinc |  NOTIFIED: [openshift_master | restart master] *********************************
2016-03-15 11:58:02,526 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,526 p=8050 u=bpaskinc |  NOTIFIED: [openshift_master | restart master api] *****************************
2016-03-15 11:58:02,575 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,576 p=8050 u=bpaskinc |  NOTIFIED: [openshift_master | restart master controllers] *********************
2016-03-15 11:58:02,620 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:02,620 p=8050 u=bpaskinc |  NOTIFIED: [openshift_master | Verify API Server] ******************************
2016-03-15 11:58:02,974 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"attempts": 0, "changed": false, "cmd": ["curl", "-k", "--silent", "https://metrics4-master-d780a.example.com:8443/healthz/ready"], "delta": "0:00:00.143005", "end": "2016-03-15 09:58:02.954185", "rc": 0, "start": "2016-03-15 09:58:02.811180", "stderr": "", "stdout": "ok", "stdout_lines": ["ok"], "warnings": ["Consider using get_url module rather than running curl"]}
2016-03-15 11:58:02,975 p=8050 u=bpaskinc |  TASK: [Create group for deployment type] **************************************
2016-03-15 11:58:03,006 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "groups": {"oo_masters_deployment_type_origin": ["metrics4-master-d780a"]}}
2016-03-15 11:58:03,006 p=8050 u=bpaskinc |  PLAY [Additional instance config] *********************************************
2016-03-15 11:58:03,009 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:58:03,009 p=8050 u=bpaskinc |  PLAY [Delete temporary directory on localhost] ********************************
2016-03-15 11:58:03,011 p=8050 u=bpaskinc |  TASK: [file name={{ g_master_mktemp.stdout }} state=absent] *******************
2016-03-15 11:58:03,097 p=8050 u=bpaskinc |  ok: [localhost] => {"changed": false, "path": "/tmp/openshift-ansible-TM9t0Tm", "state": "absent"}
2016-03-15 11:58:03,097 p=8050 u=bpaskinc |  PLAY [Configure flannel] ******************************************************
2016-03-15 11:58:03,098 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:58:03,374 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:58:03,375 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:58:03,388 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,388 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:58:03,402 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,402 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:58:03,421 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,421 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:58:03,433 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,434 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:58:03,451 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,454 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:58:03,468 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,469 p=8050 u=bpaskinc |  TASK: [flannel_register | Assures /etc/flannel dir exists] ********************
2016-03-15 11:58:03,483 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,484 p=8050 u=bpaskinc |  TASK: [flannel_register | Generate etcd configuration for etcd] ***************
2016-03-15 11:58:03,499 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,500 p=8050 u=bpaskinc |  TASK: [flannel_register | Insert flannel configuration into etcd] *************
2016-03-15 11:58:03,514 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,515 p=8050 u=bpaskinc |  PLAY [Additional master configuration] ****************************************
2016-03-15 11:58:03,515 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:58:03,776 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:58:03,777 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:58:03,792 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,793 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:58:03,812 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,813 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:58:03,827 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,827 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:58:03,847 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,848 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:58:03,865 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,865 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:58:03,881 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,882 p=8050 u=bpaskinc |  TASK: [openshift_repos | assert ] *********************************************
2016-03-15 11:58:03,897 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,897 p=8050 u=bpaskinc |  TASK: [openshift_repos | Ensure libselinux-python is installed] ***************
2016-03-15 11:58:03,915 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,915 p=8050 u=bpaskinc |  TASK: [openshift_repos | Create any additional repos that are defined] ********
2016-03-15 11:58:03,929 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,929 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove the additional repos if no longer defined] ****
2016-03-15 11:58:03,946 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:03,947 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types RHEL/CentOS] ***
2016-03-15 11:58:03,967 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:58:03,972 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:58:03,977 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:58:03,982 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:58:03,987 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:58:03,992 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:58:03,996 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:58:03,997 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types Fedora] ***
2016-03-15 11:58:04,020 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:58:04,027 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:58:04,035 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:58:04,042 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:58:04,049 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:58:04,055 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:58:04,062 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:58:04,063 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure gpg keys if needed] ************************
2016-03-15 11:58:04,080 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,080 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories RHEL/CentOS] **************
2016-03-15 11:58:04,099 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:58:04,100 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories Fedora] *******************
2016-03-15 11:58:04,117 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:58:04,117 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | fail ] **************************************
2016-03-15 11:58:04,132 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,132 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Test if cluster is already configured] ******
2016-03-15 11:58:04,147 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,147 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | fail ] **************************************
2016-03-15 11:58:04,163 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,164 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | fail ] **************************************
2016-03-15 11:58:04,180 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,181 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Authenticate to the cluster] ****************
2016-03-15 11:58:04,195 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,196 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Create the cluster] *************************
2016-03-15 11:58:04,212 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,212 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Start the cluster] **************************
2016-03-15 11:58:04,228 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,228 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Enable the cluster on all nodes] ************
2016-03-15 11:58:04,245 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,245 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Set default resource stickiness] ************
2016-03-15 11:58:04,259 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,260 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Add the cluster VIP resource] ***************
2016-03-15 11:58:04,277 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,278 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Add the cluster public VIP resource] ********
2016-03-15 11:58:04,292 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,292 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Add the cluster master service resource] ****
2016-03-15 11:58:04,311 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,311 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Disable stonith] ****************************
2016-03-15 11:58:04,324 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,325 p=8050 u=bpaskinc |  TASK: [openshift_master_cluster | Wait for the clustered master service to be available] ***
2016-03-15 11:58:04,339 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,340 p=8050 u=bpaskinc |  TASK: [os_firewall | Install firewalld packages] ******************************
2016-03-15 11:58:04,369 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,369 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if iptables-services is installed] *****************
2016-03-15 11:58:04,399 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,399 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure iptables services are not enabled] ****************
2016-03-15 11:58:04,431 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:58:04,446 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:58:04,447 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:58:04,475 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,476 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable firewalld service] **********************
2016-03-15 11:58:04,520 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,521 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the firewalld service starting can sometimes cause ssh to fail] ***
2016-03-15 11:58:04,550 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:04,550 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask iptables services] **********************************
2016-03-15 11:58:04,579 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:58:04,597 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:58:04,598 p=8050 u=bpaskinc |  TASK: [os_firewall | Add firewalld allow rules] *******************************
2016-03-15 11:58:04,628 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '9090/tcp', 'service': 'cockpit-ws'})
2016-03-15 11:58:04,629 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist firewalld allow rules] ***************************
2016-03-15 11:58:04,669 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item={'port': '9090/tcp', 'service': 'cockpit-ws'})
2016-03-15 11:58:04,670 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove firewalld allow rules] ****************************
2016-03-15 11:58:04,711 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:58:04,712 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist removal of firewalld allow rules] ****************
2016-03-15 11:58:04,745 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:58:04,746 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if firewalld is installed] *************************
2016-03-15 11:58:04,970 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.025188", "end": "2016-03-15 09:58:04.956728", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:58:04.931540", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}
2016-03-15 11:58:04,971 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure firewalld service is not enabled] *****************
2016-03-15 11:58:05,003 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:05,003 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask firewalld service] **********************************
2016-03-15 11:58:05,038 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:05,038 p=8050 u=bpaskinc |  TASK: [os_firewall | Install iptables packages] *******************************
2016-03-15 11:58:05,700 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=iptables) => {"changed": false, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}
2016-03-15 11:58:06,366 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=iptables-services) => {"changed": false, "item": "iptables-services", "msg": "", "rc": 0, "results": ["iptables-services-1.4.21-16.el7.x86_64 providing iptables-services is already installed"]}
2016-03-15 11:58:06,367 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:58:06,413 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:06,413 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable iptables service] ***********************
2016-03-15 11:58:06,658 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "enabled": true, "name": "iptables", "state": "started"}
2016-03-15 11:58:06,659 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail] ***
2016-03-15 11:58:06,705 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:06,705 p=8050 u=bpaskinc |  TASK: [os_firewall | Add iptables allow rules] ********************************
2016-03-15 11:58:07,005 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={'port': '9090/tcp', 'service': 'cockpit-ws'}) => {"changed": true, "item": {"port": "9090/tcp", "service": "cockpit-ws"}, "output": ["", "iptables: Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]\r\n"]}
2016-03-15 11:58:07,006 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove iptables rules] ***********************************
2016-03-15 11:58:07,052 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:58:07,053 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:07,081 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:07,082 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:07,107 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:07,108 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:07,130 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:07,130 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:07,155 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:07,155 p=8050 u=bpaskinc |  TASK: [openshift_common | Set common Cluster facts] ***************************
2016-03-15 11:58:08,225 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-master", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "etcd": {"etcd_data_dir": "/var/lib/origin/openshift.local.etcd", "etcd_image": "registry.access.redhat.com/rhel7/etcd"}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "cluster_method": "native", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "debug_level": "2", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "infra_nodes": ["metrics4-node-infra-48f49"], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_selector": "type=infra", "registry_url": "openshift/origin-${component}:${version}", "router_selector": "type=infra", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "/etc/origin/master/session-secrets.yaml", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:58:08,225 p=8050 u=bpaskinc |  TASK: [openshift_common | Install the base package for versioning] ************
2016-03-15 11:58:08,893 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["origin-1.1.3-0.git.0.8edc1be.el7.centos.x86_64 providing origin is already installed"]}
2016-03-15 11:58:08,893 p=8050 u=bpaskinc |  TASK: [openshift_common | openshift_facts] ************************************
2016-03-15 11:58:10,027 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-master", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "etcd": {"etcd_data_dir": "/var/lib/origin/openshift.local.etcd", "etcd_image": "registry.access.redhat.com/rhel7/etcd"}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "cluster_method": "native", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "debug_level": "2", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "infra_nodes": ["metrics4-node-infra-48f49"], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_selector": "type=infra", "registry_url": "openshift/origin-${component}:${version}", "router_selector": "type=infra", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "/etc/origin/master/session-secrets.yaml", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:58:10,027 p=8050 u=bpaskinc |  TASK: [openshift_common | set_fact ] ******************************************
2016-03-15 11:58:10,046 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"set_hostname_default": "False"}}
2016-03-15 11:58:10,046 p=8050 u=bpaskinc |  TASK: [openshift_common | Set hostname] ***************************************
2016-03-15 11:58:10,068 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:10,069 p=8050 u=bpaskinc |  TASK: [openshift_examples | Copy openshift examples] **************************
2016-03-15 11:58:24,401 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "dest": "/usr/share/openshift/examples/", "src": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_examples/files/examples/v1.1"}
2016-03-15 11:58:24,402 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import RHEL streams] ******************************
2016-03-15 11:58:24,423 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:24,424 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import Centos Image streams] **********************
2016-03-15 11:58:25,092 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/image-streams/image-streams-centos7.json"], "delta": "0:00:00.475226", "end": "2016-03-15 09:58:25.082710", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:58:24.607484", "stderr": "", "stdout": "imagestream \"ruby\" created\nimagestream \"nodejs\" created\nimagestream \"perl\" created\nimagestream \"php\" created\nimagestream \"python\" created\nimagestream \"wildfly\" created\nimagestream \"mysql\" created\nimagestream \"postgresql\" created\nimagestream \"mongodb\" created\nimagestream \"jenkins\" created", "stdout_lines": ["imagestream \"ruby\" created", "imagestream \"nodejs\" created", "imagestream \"perl\" created", "imagestream \"php\" created", "imagestream \"python\" created", "imagestream \"wildfly\" created", "imagestream \"mysql\" created", "imagestream \"postgresql\" created", "imagestream \"mongodb\" created", "imagestream \"jenkins\" created"], "warnings": []}
2016-03-15 11:58:25,093 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import db templates] ******************************
2016-03-15 11:58:25,568 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/db-templates"], "delta": "0:00:00.279164", "end": "2016-03-15 09:58:25.559980", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:58:25.280816", "stderr": "", "stdout": "template \"mongodb-ephemeral\" created\ntemplate \"mongodb-persistent\" created\ntemplate \"mysql-ephemeral\" created\ntemplate \"mysql-persistent\" created\ntemplate \"postgresql-ephemeral\" created\ntemplate \"postgresql-persistent\" created", "stdout_lines": ["template \"mongodb-ephemeral\" created", "template \"mongodb-persistent\" created", "template \"mysql-ephemeral\" created", "template \"mysql-persistent\" created", "template \"postgresql-ephemeral\" created", "template \"postgresql-persistent\" created"], "warnings": []}
2016-03-15 11:58:25,568 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import quickstart-templates] **********************
2016-03-15 11:58:26,138 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/quickstart-templates"], "delta": "0:00:00.354162", "end": "2016-03-15 09:58:26.128352", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:58:25.774190", "stderr": "", "stdout": "template \"cakephp-mysql-example\" created\ntemplate \"cakephp-example\" created\ntemplate \"dancer-mysql-example\" created\ntemplate \"dancer-example\" created\ntemplate \"django-psql-example\" created\ntemplate \"django-example\" created\ntemplate \"jenkins-ephemeral\" created\ntemplate \"jenkins-persistent\" created\ntemplate \"nodejs-mongodb-example\" created\ntemplate \"nodejs-example\" created\ntemplate \"rails-postgresql-example\" created", "stdout_lines": ["template \"cakephp-mysql-example\" created", "template \"cakephp-example\" created", "template \"dancer-mysql-example\" created", "template \"dancer-example\" created", "template \"django-psql-example\" created", "template \"django-example\" created", "template \"jenkins-ephemeral\" created", "template \"jenkins-persistent\" created", "template \"nodejs-mongodb-example\" created", "template \"nodejs-example\" created", "template \"rails-postgresql-example\" created"], "warnings": []}
2016-03-15 11:58:26,139 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import origin infrastructure-templates] ***********
2016-03-15 11:58:26,574 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/infrastructure-templates/origin"], "delta": "0:00:00.234174", "end": "2016-03-15 09:58:26.566089", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:58:26.331915", "stderr": "", "stdout": "template \"logging-deployer-template\" created\ntemplate \"metrics-deployer-template\" created", "stdout_lines": ["template \"logging-deployer-template\" created", "template \"metrics-deployer-template\" created"], "warnings": []}
2016-03-15 11:58:26,575 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import enterprise infrastructure-templates] *******
2016-03-15 11:58:26,597 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:26,598 p=8050 u=bpaskinc |  TASK: [openshift_examples | Remove old xpaas templates from filesystem] *******
2016-03-15 11:58:26,791 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=amq6-persistent.json) => {"changed": false, "item": "amq6-persistent.json", "path": "/usr/share/openshift/examples/xpaas-templates/amq6-persistent.json", "state": "absent"}
2016-03-15 11:58:27,031 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=amq6.json) => {"changed": false, "item": "amq6.json", "path": "/usr/share/openshift/examples/xpaas-templates/amq6.json", "state": "absent"}
2016-03-15 11:58:27,204 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-amq-persistent-sti.json) => {"changed": false, "item": "eap6-amq-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-amq-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:27,372 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-amq-sti.json) => {"changed": false, "item": "eap6-amq-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-amq-sti.json", "state": "absent"}
2016-03-15 11:58:27,539 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-basic-sti.json) => {"changed": false, "item": "eap6-basic-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-basic-sti.json", "state": "absent"}
2016-03-15 11:58:27,717 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-https-sti.json) => {"changed": false, "item": "eap6-https-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-https-sti.json", "state": "absent"}
2016-03-15 11:58:27,908 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mongodb-persistent-sti.json) => {"changed": false, "item": "eap6-mongodb-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mongodb-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:28,131 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mongodb-sti.json) => {"changed": false, "item": "eap6-mongodb-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mongodb-sti.json", "state": "absent"}
2016-03-15 11:58:28,317 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mysql-persistent-sti.json) => {"changed": false, "item": "eap6-mysql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mysql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:28,481 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mysql-sti.json) => {"changed": false, "item": "eap6-mysql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mysql-sti.json", "state": "absent"}
2016-03-15 11:58:28,668 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-postgresql-persistent-sti.json) => {"changed": false, "item": "eap6-postgresql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-postgresql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:28,832 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-postgresql-sti.json) => {"changed": false, "item": "eap6-postgresql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-postgresql-sti.json", "state": "absent"}
2016-03-15 11:58:29,026 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-basic-sti.json) => {"changed": false, "item": "jws-tomcat7-basic-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-basic-sti.json", "state": "absent"}
2016-03-15 11:58:29,266 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-https-sti.json) => {"changed": false, "item": "jws-tomcat7-https-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-https-sti.json", "state": "absent"}
2016-03-15 11:58:29,452 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mongodb-sti.json) => {"changed": false, "item": "jws-tomcat7-mongodb-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mongodb-sti.json", "state": "absent"}
2016-03-15 11:58:29,615 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mongodb-persistent-sti.json) => {"changed": false, "item": "jws-tomcat7-mongodb-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mongodb-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:29,791 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mysql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat7-mysql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mysql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:29,998 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mysql-sti.json) => {"changed": false, "item": "jws-tomcat7-mysql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mysql-sti.json", "state": "absent"}
2016-03-15 11:58:30,186 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-postgresql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat7-postgresql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-postgresql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:30,350 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-postgresql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat8-postgresql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-postgresql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:30,527 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-basic-sti.json) => {"changed": false, "item": "jws-tomcat8-basic-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-basic-sti.json", "state": "absent"}
2016-03-15 11:58:30,688 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-https-sti.json) => {"changed": false, "item": "jws-tomcat8-https-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-https-sti.json", "state": "absent"}
2016-03-15 11:58:30,849 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mongodb-sti.json) => {"changed": false, "item": "jws-tomcat8-mongodb-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mongodb-sti.json", "state": "absent"}
2016-03-15 11:58:31,045 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mongodb-persistent-sti.json) => {"changed": false, "item": "jws-tomcat8-mongodb-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mongodb-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:31,219 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mysql-sti.json) => {"changed": false, "item": "jws-tomcat8-mysql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mysql-sti.json", "state": "absent"}
2016-03-15 11:58:31,389 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mysql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat8-mysql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mysql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:31,566 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-postgresql-sti.json) => {"changed": false, "item": "jws-tomcat8-postgresql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-postgresql-sti.json", "state": "absent"}
2016-03-15 11:58:31,749 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-postgresql-sti.json) => {"changed": false, "item": "jws-tomcat7-postgresql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-postgresql-sti.json", "state": "absent"}
2016-03-15 11:58:31,750 p=8050 u=bpaskinc |  TASK: [openshift_examples | Remove old xpaas templates from openshift namespace] ***
2016-03-15 11:58:31,766 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,767 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import xPaas image streams] ***********************
2016-03-15 11:58:31,786 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,786 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import xPaas templates] ***************************
2016-03-15 11:58:31,806 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,806 p=8050 u=bpaskinc |  TASK: [openshift_cluster_metrics | Install cluster metrics templates] *********
2016-03-15 11:58:31,824 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,825 p=8050 u=bpaskinc |  TASK: [openshift_cluster_metrics | Create InfluxDB Services] ******************
2016-03-15 11:58:31,839 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,840 p=8050 u=bpaskinc |  TASK: [openshift_cluster_metrics | Create Heapster Service Account] ***********
2016-03-15 11:58:31,856 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,857 p=8050 u=bpaskinc |  TASK: [openshift_cluster_metrics | Add cluster-reader role to Heapster] *******
2016-03-15 11:58:31,871 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,872 p=8050 u=bpaskinc |  TASK: [openshift_cluster_metrics | Create Heapster Services] ******************
2016-03-15 11:58:31,886 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,886 p=8050 u=bpaskinc |  TASK: [openshift_cluster_metrics | Create Grafana Services] *******************
2016-03-15 11:58:31,899 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,899 p=8050 u=bpaskinc |  TASK: [openshift_manageiq | fail ] ********************************************
2016-03-15 11:58:31,916 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:31,916 p=8050 u=bpaskinc |  TASK: [openshift_manageiq | Copy Configuration to temporary conf] *************
2016-03-15 11:58:32,083 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["cp", "/etc/origin/master/admin.kubeconfig", "/tmp/manageiq_admin.kubeconfig"], "delta": "0:00:00.003052", "end": "2016-03-15 09:58:32.078280", "rc": 0, "start": "2016-03-15 09:58:32.075228", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:58:32,083 p=8050 u=bpaskinc |  TASK: [openshift_manageiq | Add Managment Infrastructure project] *************
2016-03-15 11:58:32,997 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": ["oadm", "new-project", "management-infra", "--description=Management Infrastructure", "--config=/tmp/manageiq_admin.kubeconfig"], "delta": "0:00:00.706435", "end": "2016-03-15 09:58:32.970437", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:58:32.264002", "stderr": "", "stdout": "Created project management-infra", "stdout_lines": ["Created project management-infra"], "warnings": []}
2016-03-15 11:58:32,998 p=8050 u=bpaskinc |  TASK: [openshift_manageiq | Create Service Account] ***************************
2016-03-15 11:58:33,475 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": "echo '{\"kind\": \"ServiceAccount\", \"apiVersion\": \"v1\", \"metadata\": {\"name\": \"management-admin\"}}' | oc create -n management-infra --config=/tmp/manageiq_admin.kubeconfig -f -", "delta": "0:00:00.261602", "end": "2016-03-15 09:58:33.466515", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:58:33.204913", "stderr": "", "stdout": "serviceaccount \"management-admin\" created", "stdout_lines": ["serviceaccount \"management-admin\" created"], "warnings": []}
2016-03-15 11:58:33,476 p=8050 u=bpaskinc |  TASK: [openshift_manageiq | Create Cluster Role] ******************************
2016-03-15 11:58:33,968 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": "echo '{\"rules\": [{\"verbs\": [\"*\"], \"resources\": [\"pods/proxy\"]}], \"kind\": \"ClusterRole\", \"apiVersion\": \"v1\", \"metadata\": {\"name\": \"management-infra-admin\"}}' | oc create --config=/tmp/manageiq_admin.kubeconfig -f -", "delta": "0:00:00.271783", "end": "2016-03-15 09:58:33.955897", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:58:33.684114", "stderr": "", "stdout": "clusterrole \"management-infra-admin\" created", "stdout_lines": ["clusterrole \"management-infra-admin\" created"], "warnings": []}
2016-03-15 11:58:33,968 p=8050 u=bpaskinc |  TASK: [openshift_manageiq | Configure role/user permissions] ******************
2016-03-15 11:58:34,494 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=policy add-role-to-user -n management-infra admin -z management-admin) => {"changed": true, "cmd": ["oadm", "policy", "add-role-to-user", "-n", "management-infra", "admin", "-z", "management-admin", "--config=/tmp/manageiq_admin.kubeconfig"], "delta": "0:00:00.294537", "end": "2016-03-15 09:58:34.480054", "failed": false, "failed_when_result": false, "item": "policy add-role-to-user -n management-infra admin -z management-admin", "rc": 0, "start": "2016-03-15 09:58:34.185517", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:35,020 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=policy add-role-to-user -n management-infra management-infra-admin -z management-admin) => {"changed": true, "cmd": ["oadm", "policy", "add-role-to-user", "-n", "management-infra", "management-infra-admin", "-z", "management-admin", "--config=/tmp/manageiq_admin.kubeconfig"], "delta": "0:00:00.332649", "end": "2016-03-15 09:58:35.006787", "failed": false, "failed_when_result": false, "item": "policy add-role-to-user -n management-infra management-infra-admin -z management-admin", "rc": 0, "start": "2016-03-15 09:58:34.674138", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:35,568 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=policy add-cluster-role-to-user cluster-reader system:serviceaccount:management-infra:management-admin) => {"changed": true, "cmd": ["oadm", "policy", "add-cluster-role-to-user", "cluster-reader", "system:serviceaccount:management-infra:management-admin", "--config=/tmp/manageiq_admin.kubeconfig"], "delta": "0:00:00.367567", "end": "2016-03-15 09:58:35.557737", "failed": false, "failed_when_result": false, "item": "policy add-cluster-role-to-user cluster-reader system:serviceaccount:management-infra:management-admin", "rc": 0, "start": "2016-03-15 09:58:35.190170", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:36,061 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=policy add-scc-to-user privileged system:serviceaccount:management-infra:management-admin) => {"changed": true, "cmd": ["oadm", "policy", "add-scc-to-user", "privileged", "system:serviceaccount:management-infra:management-admin", "--config=/tmp/manageiq_admin.kubeconfig"], "delta": "0:00:00.317640", "end": "2016-03-15 09:58:36.040870", "failed": false, "failed_when_result": false, "item": "policy add-scc-to-user privileged system:serviceaccount:management-infra:management-admin", "rc": 0, "start": "2016-03-15 09:58:35.723230", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:36,062 p=8050 u=bpaskinc |  TASK: [openshift_manageiq | Clean temporary configuration file] ***************
2016-03-15 11:58:36,258 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["rm", "-f", "/tmp/manageiq_admin.kubeconfig"], "delta": "0:00:00.002577", "end": "2016-03-15 09:58:36.252856", "rc": 0, "start": "2016-03-15 09:58:36.250279", "stderr": "", "stdout": "", "warnings": ["Consider using file module with state=absent rather than running rm"]}
2016-03-15 11:58:36,258 p=8050 u=bpaskinc |  TASK: [cockpit | Install cockpit-ws] ******************************************
2016-03-15 11:58:36,284 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=cockpit-ws)
2016-03-15 11:58:36,293 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=cockpit-shell)
2016-03-15 11:58:36,298 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=cockpit-bridge)
2016-03-15 11:58:36,302 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=cockpit-docker)
2016-03-15 11:58:36,306 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=cockpit-kubernetes)
2016-03-15 11:58:36,307 p=8050 u=bpaskinc |  TASK: [cockpit | Enable cockpit-ws] *******************************************
2016-03-15 11:58:36,324 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,325 p=8050 u=bpaskinc |  TASK: [flannel_register | Assures /etc/flannel dir exists] ********************
2016-03-15 11:58:36,338 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,338 p=8050 u=bpaskinc |  TASK: [flannel_register | Generate etcd configuration for etcd] ***************
2016-03-15 11:58:36,351 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,351 p=8050 u=bpaskinc |  TASK: [flannel_register | Insert flannel configuration into etcd] *************
2016-03-15 11:58:36,368 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,369 p=8050 u=bpaskinc |  TASK: [pods | Transfer the fedora_apache pod template] ************************
2016-03-15 11:58:36,382 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,382 p=8050 u=bpaskinc |  TASK: [pods | Transfer the fedora_apache pod template] ************************
2016-03-15 11:58:36,398 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,399 p=8050 u=bpaskinc |  TASK: [os_env_extras | Ensure irbrc is installed for user root] ***************
2016-03-15 11:58:36,412 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,413 p=8050 u=bpaskinc |  TASK: [os_env_extras | Ensure vimrc is installed for user root] ***************
2016-03-15 11:58:36,430 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,431 p=8050 u=bpaskinc |  TASK: [os_env_extras | Bash Completion] ***************************************
2016-03-15 11:58:36,447 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,447 p=8050 u=bpaskinc |  PLAY [Create persistent volumes and create hosted services] *******************
2016-03-15 11:58:36,447 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:58:36,722 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:58:36,723 p=8050 u=bpaskinc |  TASK: [os_firewall | Install firewalld packages] ******************************
2016-03-15 11:58:36,751 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,752 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if iptables-services is installed] *****************
2016-03-15 11:58:36,777 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,778 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure iptables services are not enabled] ****************
2016-03-15 11:58:36,810 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:58:36,819 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:58:36,819 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:58:36,850 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,851 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable firewalld service] **********************
2016-03-15 11:58:36,877 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,877 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the firewalld service starting can sometimes cause ssh to fail] ***
2016-03-15 11:58:36,903 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:36,903 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask iptables services] **********************************
2016-03-15 11:58:36,932 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:58:36,938 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=ip6tables)
2016-03-15 11:58:36,939 p=8050 u=bpaskinc |  TASK: [os_firewall | Add firewalld allow rules] *******************************
2016-03-15 11:58:36,969 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:58:36,970 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist firewalld allow rules] ***************************
2016-03-15 11:58:36,995 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:58:36,995 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove firewalld allow rules] ****************************
2016-03-15 11:58:37,021 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:58:37,021 p=8050 u=bpaskinc |  TASK: [os_firewall | Persist removal of firewalld allow rules] ****************
2016-03-15 11:58:37,044 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:58:37,045 p=8050 u=bpaskinc |  TASK: [os_firewall | Check if firewalld is installed] *************************
2016-03-15 11:58:37,070 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,070 p=8050 u=bpaskinc |  TASK: [os_firewall | Ensure firewalld service is not enabled] *****************
2016-03-15 11:58:37,100 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,101 p=8050 u=bpaskinc |  TASK: [os_firewall | Mask firewalld service] **********************************
2016-03-15 11:58:37,127 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,127 p=8050 u=bpaskinc |  TASK: [os_firewall | Install iptables packages] *******************************
2016-03-15 11:58:37,151 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables)
2016-03-15 11:58:37,158 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=iptables-services)
2016-03-15 11:58:37,158 p=8050 u=bpaskinc |  TASK: [os_firewall | Reload systemd units] ************************************
2016-03-15 11:58:37,183 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,183 p=8050 u=bpaskinc |  TASK: [os_firewall | Start and enable iptables service] ***********************
2016-03-15 11:58:37,205 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,206 p=8050 u=bpaskinc |  TASK: [os_firewall | need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail] ***
2016-03-15 11:58:37,230 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,231 p=8050 u=bpaskinc |  TASK: [os_firewall | Add iptables allow rules] ********************************
2016-03-15 11:58:37,256 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_allow)
2016-03-15 11:58:37,257 p=8050 u=bpaskinc |  TASK: [os_firewall | Remove iptables rules] ***********************************
2016-03-15 11:58:37,282 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=os_firewall_deny)
2016-03-15 11:58:37,282 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:58:37,308 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,308 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:58:37,339 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,340 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:58:37,374 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,375 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:58:37,408 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,409 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:58:37,432 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,432 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:58:37,456 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,457 p=8050 u=bpaskinc |  TASK: [openshift_repos | assert ] *********************************************
2016-03-15 11:58:37,482 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,483 p=8050 u=bpaskinc |  TASK: [openshift_repos | Ensure libselinux-python is installed] ***************
2016-03-15 11:58:37,512 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,513 p=8050 u=bpaskinc |  TASK: [openshift_repos | Create any additional repos that are defined] ********
2016-03-15 11:58:37,539 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,540 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove the additional repos if no longer defined] ****
2016-03-15 11:58:37,572 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,573 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types RHEL/CentOS] ***
2016-03-15 11:58:37,602 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:58:37,609 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:58:37,615 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:58:37,621 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:58:37,628 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:58:37,637 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:58:37,644 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:58:37,645 p=8050 u=bpaskinc |  TASK: [openshift_repos | Remove any yum repo files for other deployment types Fedora] ***
2016-03-15 11:58:37,672 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/enterprise-v3.repo)
2016-03-15 11:58:37,680 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/online/repos/rhel-7-libra-candidate.repo)
2016-03-15 11:58:37,687 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:58:37,695 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:58:37,704 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-server.repo)
2016-03-15 11:58:37,711 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/oso-rhui-rhel-7-extras.repo)
2016-03-15 11:58:37,717 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/removed/repos/epel7-openshift.repo)
2016-03-15 11:58:37,717 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure gpg keys if needed] ************************
2016-03-15 11:58:37,735 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,736 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories RHEL/CentOS] **************
2016-03-15 11:58:37,767 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo)
2016-03-15 11:58:37,768 p=8050 u=bpaskinc |  TASK: [openshift_repos | Configure yum repositories Fedora] *******************
2016-03-15 11:58:37,797 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_repos/files/fedora-origin/repos/maxamillion-fedora-openshift-fedora.repo)
2016-03-15 11:58:37,797 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:37,829 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,829 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:37,862 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,863 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:37,887 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,887 p=8050 u=bpaskinc |  TASK: [openshift_common | fail ] **********************************************
2016-03-15 11:58:37,913 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,914 p=8050 u=bpaskinc |  TASK: [openshift_common | Set common Cluster facts] ***************************
2016-03-15 11:58:37,936 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,936 p=8050 u=bpaskinc |  TASK: [openshift_common | Install the base package for versioning] ************
2016-03-15 11:58:37,966 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,967 p=8050 u=bpaskinc |  TASK: [openshift_common | openshift_facts] ************************************
2016-03-15 11:58:37,993 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:37,994 p=8050 u=bpaskinc |  TASK: [openshift_common | set_fact ] ******************************************
2016-03-15 11:58:38,017 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,018 p=8050 u=bpaskinc |  TASK: [openshift_common | Set hostname] ***************************************
2016-03-15 11:58:38,049 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,050 p=8050 u=bpaskinc |  TASK: [openshift_persistent_volumes | Create temp directory for volume definitions] ***
2016-03-15 11:58:38,076 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,077 p=8050 u=bpaskinc |  TASK: [openshift_persistent_volumes | Copy the admin client config(s)] ********
2016-03-15 11:58:38,098 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,098 p=8050 u=bpaskinc |  TASK: [openshift_persistent_volumes | Deploy PersistentVolume definitions] ****
2016-03-15 11:58:38,121 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,121 p=8050 u=bpaskinc |  TASK: [openshift_persistent_volumes | Create PersistentVolumes] ***************
2016-03-15 11:58:38,150 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,152 p=8050 u=bpaskinc |  TASK: [openshift_persistent_volumes | Deploy PersistentVolumeClaim definitions] ***
2016-03-15 11:58:38,175 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,176 p=8050 u=bpaskinc |  TASK: [openshift_persistent_volumes | Create PersistentVolumeClaims] **********
2016-03-15 11:58:38,197 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,197 p=8050 u=bpaskinc |  TASK: [openshift_persistent_volumes | Delete temp directory] ******************
2016-03-15 11:58:38,222 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:38,223 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | test if service accounts exists] ***********
2016-03-15 11:58:38,684 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=router) => {"changed": false, "cmd": ["oc", "get", "sa", "router", "-n", "default"], "delta": "0:00:00.247750", "end": "2016-03-15 09:58:38.677509", "failed": false, "failed_when_result": false, "item": "router", "rc": 1, "start": "2016-03-15 09:58:38.429759", "stderr": "Error from server: serviceaccounts \"router\" not found", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:39,127 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=registry) => {"changed": false, "cmd": ["oc", "get", "sa", "registry", "-n", "default"], "delta": "0:00:00.262667", "end": "2016-03-15 09:58:39.121017", "failed": false, "failed_when_result": false, "item": "registry", "rc": 1, "start": "2016-03-15 09:58:38.858350", "stderr": "Error from server: serviceaccounts \"registry\" not found", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:39,128 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | create the service account] ****************
2016-03-15 11:58:39,597 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=['router', {u'cmd': [u'oc', u'get', u'sa', u'router', u'-n', u'default'], u'end': u'2016-03-15 09:58:38.677509', u'stderr': u'Error from server: serviceaccounts "router" not found', u'stdout': u'', 'item': 'router', u'changed': False, u'rc': 1, 'failed': False, u'warnings': [], u'delta': u'0:00:00.247750', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'oc get sa router -n default'}, 'stdout_lines': [], 'failed_when_result': False, u'start': u'2016-03-15 09:58:38.429759'}]) => {"changed": true, "cmd": "echo '{\"kind\": \"ServiceAccount\", \"apiVersion\": \"v1\", \"metadata\": {\"name\": \"router\"}}' | oc create -f -", "delta": "0:00:00.284161", "end": "2016-03-15 09:58:39.591933", "item": ["router", {"changed": false, "cmd": ["oc", "get", "sa", "router", "-n", "default"], "delta": "0:00:00.247750", "end": "2016-03-15 09:58:38.677509", "failed": false, "failed_when_result": false, "invocation": {"module_args": "oc get sa router -n default", "module_complex_args": {}, "module_name": "command"}, "item": "router", "rc": 1, "start": "2016-03-15 09:58:38.429759", "stderr": "Error from server: serviceaccounts \"router\" not found", "stdout": "", "stdout_lines": [], "warnings": []}], "rc": 0, "start": "2016-03-15 09:58:39.307772", "stderr": "", "stdout": "serviceaccount \"router\" created", "warnings": []}
2016-03-15 11:58:40,090 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=['registry', {u'cmd': [u'oc', u'get', u'sa', u'registry', u'-n', u'default'], u'end': u'2016-03-15 09:58:39.121017', u'stderr': u'Error from server: serviceaccounts "registry" not found', u'stdout': u'', 'item': 'registry', u'changed': False, u'rc': 1, 'failed': False, u'warnings': [], u'delta': u'0:00:00.262667', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'oc get sa registry -n default'}, 'stdout_lines': [], 'failed_when_result': False, u'start': u'2016-03-15 09:58:38.858350'}]) => {"changed": true, "cmd": "echo '{\"kind\": \"ServiceAccount\", \"apiVersion\": \"v1\", \"metadata\": {\"name\": \"registry\"}}' | oc create -f -", "delta": "0:00:00.281885", "end": "2016-03-15 09:58:40.084883", "item": ["registry", {"changed": false, "cmd": ["oc", "get", "sa", "registry", "-n", "default"], "delta": "0:00:00.262667", "end": "2016-03-15 09:58:39.121017", "failed": false, "failed_when_result": false, "invocation": {"module_args": "oc get sa registry -n default", "module_complex_args": {}, "module_name": "command"}, "item": "registry", "rc": 1, "start": "2016-03-15 09:58:38.858350", "stderr": "Error from server: serviceaccounts \"registry\" not found", "stdout": "", "stdout_lines": [], "warnings": []}], "rc": 0, "start": "2016-03-15 09:58:39.802998", "stderr": "", "stdout": "serviceaccount \"registry\" created", "warnings": []}
2016-03-15 11:58:40,092 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | test if scc needs to be updated] ***********
2016-03-15 11:58:40,597 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=privileged) => {"changed": false, "cmd": ["oc", "get", "scc", "privileged", "-o", "yaml"], "delta": "0:00:00.285900", "end": "2016-03-15 09:58:40.589057", "failed": false, "failed_when_result": false, "item": "privileged", "rc": 0, "start": "2016-03-15 09:58:40.303157", "stderr": "", "stdout": "allowEmptyDirVolumePlugin: true\nallowHostDirVolumePlugin: true\nallowHostIPC: true\nallowHostNetwork: true\nallowHostPID: true\nallowHostPorts: true\nallowPrivilegedContainer: true\nallowedCapabilities: null\napiVersion: v1\ndefaultAddCapabilities: null\nfsGroup:\n  type: RunAsAny\ngroups:\n- system:cluster-admins\n- system:nodes\nkind: SecurityContextConstraints\nmetadata:\n  annotations:\n    kubernetes.io/description: 'privileged allows access to all privileged and host\n      features and the ability to run as any user, any group, any fsGroup, and with\n      any SELinux context.  WARNING: this is the most relaxed SCC and should be used\n      only for cluster administration. Grant with caution.'\n  creationTimestamp: 2016-03-15T09:57:54Z\n  name: privileged\n  resourceVersion: \"309\"\n  selfLink: /api/v1/securitycontextconstraints/privileged\n  uid: 6367c145-ea94-11e5-aad2-5254007c5af4\npriority: null\nrequiredDropCapabilities: null\nrunAsUser:\n  type: RunAsAny\nseLinuxContext:\n  type: RunAsAny\nsupplementalGroups:\n  type: RunAsAny\nusers:\n- system:serviceaccount:openshift-infra:build-controller\n- system:serviceaccount:management-infra:management-admin", "stdout_lines": ["allowEmptyDirVolumePlugin: true", "allowHostDirVolumePlugin: true", "allowHostIPC: true", "allowHostNetwork: true", "allowHostPID: true", "allowHostPorts: true", "allowPrivilegedContainer: true", "allowedCapabilities: null", "apiVersion: v1", "defaultAddCapabilities: null", "fsGroup:", "  type: RunAsAny", "groups:", "- system:cluster-admins", "- system:nodes", "kind: SecurityContextConstraints", "metadata:", "  annotations:", "    kubernetes.io/description: 'privileged allows access to all privileged and host", "      features and the ability to run as any user, any group, any fsGroup, and with", "      any SELinux context.  WARNING: this is the most relaxed SCC and should be used", "      only for cluster administration. Grant with caution.'", "  creationTimestamp: 2016-03-15T09:57:54Z", "  name: privileged", "  resourceVersion: \"309\"", "  selfLink: /api/v1/securitycontextconstraints/privileged", "  uid: 6367c145-ea94-11e5-aad2-5254007c5af4", "priority: null", "requiredDropCapabilities: null", "runAsUser:", "  type: RunAsAny", "seLinuxContext:", "  type: RunAsAny", "supplementalGroups:", "  type: RunAsAny", "users:", "- system:serviceaccount:openshift-infra:build-controller", "- system:serviceaccount:management-infra:management-admin"], "warnings": []}
2016-03-15 11:58:40,597 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | Grant the user access to the privileged scc] ***
2016-03-15 11:58:41,089 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=['router', {u'cmd': [u'oc', u'get', u'scc', u'privileged', u'-o', u'yaml'], u'end': u'2016-03-15 09:58:40.589057', u'stderr': u'', u'stdout': u'allowEmptyDirVolumePlugin: true\nallowHostDirVolumePlugin: true\nallowHostIPC: true\nallowHostNetwork: true\nallowHostPID: true\nallowHostPorts: true\nallowPrivilegedContainer: true\nallowedCapabilities: null\napiVersion: v1\ndefaultAddCapabilities: null\nfsGroup:\n  type: RunAsAny\ngroups:\n- system:cluster-admins\n- system:nodes\nkind: SecurityContextConstraints\nmetadata:\n  annotations:\n    kubernetes.io/description: \'privileged allows access to all privileged and host\n      features and the ability to run as any user, any group, any fsGroup, and with\n      any SELinux context.  WARNING: this is the most relaxed SCC and should be used\n      only for cluster administration. Grant with caution.\'\n  creationTimestamp: 2016-03-15T09:57:54Z\n  name: privileged\n  resourceVersion: "309"\n  selfLink: /api/v1/securitycontextconstraints/privileged\n  uid: 6367c145-ea94-11e5-aad2-5254007c5af4\npriority: null\nrequiredDropCapabilities: null\nrunAsUser:\n  type: RunAsAny\nseLinuxContext:\n  type: RunAsAny\nsupplementalGroups:\n  type: RunAsAny\nusers:\n- system:serviceaccount:openshift-infra:build-controller\n- system:serviceaccount:management-infra:management-admin', 'item': 'privileged', u'changed': False, u'rc': 0, 'failed': False, u'warnings': [], u'delta': u'0:00:00.285900', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'oc get scc privileged -o yaml'}, 'stdout_lines': [u'allowEmptyDirVolumePlugin: true', u'allowHostDirVolumePlugin: true', u'allowHostIPC: true', u'allowHostNetwork: true', u'allowHostPID: true', u'allowHostPorts: true', u'allowPrivilegedContainer: true', u'allowedCapabilities: null', u'apiVersion: v1', u'defaultAddCapabilities: null', u'fsGroup:', u'  type: RunAsAny', u'groups:', u'- system:cluster-admins', u'- system:nodes', u'kind: SecurityContextConstraints', u'metadata:', u'  annotations:', u"    kubernetes.io/description: 'privileged allows access to all privileged and host", u'      features and the ability to run as any user, any group, any fsGroup, and with', u'      any SELinux context.  WARNING: this is the most relaxed SCC and should be used', u"      only for cluster administration. Grant with caution.'", u'  creationTimestamp: 2016-03-15T09:57:54Z', u'  name: privileged', u'  resourceVersion: "309"', u'  selfLink: /api/v1/securitycontextconstraints/privileged', u'  uid: 6367c145-ea94-11e5-aad2-5254007c5af4', u'priority: null', u'requiredDropCapabilities: null', u'runAsUser:', u'  type: RunAsAny', u'seLinuxContext:', u'  type: RunAsAny', u'supplementalGroups:', u'  type: RunAsAny', u'users:', u'- system:serviceaccount:openshift-infra:build-controller', u'- system:serviceaccount:management-infra:management-admin'], 'failed_when_result': False, u'start': u'2016-03-15 09:58:40.303157'}]) => {"changed": true, "cmd": ["oadm", "policy", "add-scc-to-user", "privileged", "system:serviceaccount:default:router"], "delta": "0:00:00.288598", "end": "2016-03-15 09:58:41.083599", "item": ["router", {"changed": false, "cmd": ["oc", "get", "scc", "privileged", "-o", "yaml"], "delta": "0:00:00.285900", "end": "2016-03-15 09:58:40.589057", "failed": false, "failed_when_result": false, "invocation": {"module_args": "oc get scc privileged -o yaml", "module_complex_args": {}, "module_name": "command"}, "item": "privileged", "rc": 0, "start": "2016-03-15 09:58:40.303157", "stderr": "", "stdout": "allowEmptyDirVolumePlugin: true\nallowHostDirVolumePlugin: true\nallowHostIPC: true\nallowHostNetwork: true\nallowHostPID: true\nallowHostPorts: true\nallowPrivilegedContainer: true\nallowedCapabilities: null\napiVersion: v1\ndefaultAddCapabilities: null\nfsGroup:\n  type: RunAsAny\ngroups:\n- system:cluster-admins\n- system:nodes\nkind: SecurityContextConstraints\nmetadata:\n  annotations:\n    kubernetes.io/description: 'privileged allows access to all privileged and host\n      features and the ability to run as any user, any group, any fsGroup, and with\n      any SELinux context.  WARNING: this is the most relaxed SCC and should be used\n      only for cluster administration. Grant with caution.'\n  creationTimestamp: 2016-03-15T09:57:54Z\n  name: privileged\n  resourceVersion: \"309\"\n  selfLink: /api/v1/securitycontextconstraints/privileged\n  uid: 6367c145-ea94-11e5-aad2-5254007c5af4\npriority: null\nrequiredDropCapabilities: null\nrunAsUser:\n  type: RunAsAny\nseLinuxContext:\n  type: RunAsAny\nsupplementalGroups:\n  type: RunAsAny\nusers:\n- system:serviceaccount:openshift-infra:build-controller\n- system:serviceaccount:management-infra:management-admin", "stdout_lines": ["allowEmptyDirVolumePlugin: true", "allowHostDirVolumePlugin: true", "allowHostIPC: true", "allowHostNetwork: true", "allowHostPID: true", "allowHostPorts: true", "allowPrivilegedContainer: true", "allowedCapabilities: null", "apiVersion: v1", "defaultAddCapabilities: null", "fsGroup:", "  type: RunAsAny", "groups:", "- system:cluster-admins", "- system:nodes", "kind: SecurityContextConstraints", "metadata:", "  annotations:", "    kubernetes.io/description: 'privileged allows access to all privileged and host", "      features and the ability to run as any user, any group, any fsGroup, and with", "      any SELinux context.  WARNING: this is the most relaxed SCC and should be used", "      only for cluster administration. Grant with caution.'", "  creationTimestamp: 2016-03-15T09:57:54Z", "  name: privileged", "  resourceVersion: \"309\"", "  selfLink: /api/v1/securitycontextconstraints/privileged", "  uid: 6367c145-ea94-11e5-aad2-5254007c5af4", "priority: null", "requiredDropCapabilities: null", "runAsUser:", "  type: RunAsAny", "seLinuxContext:", "  type: RunAsAny", "supplementalGroups:", "  type: RunAsAny", "users:", "- system:serviceaccount:openshift-infra:build-controller", "- system:serviceaccount:management-infra:management-admin"], "warnings": []}], "rc": 0, "start": "2016-03-15 09:58:40.795001", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:58:41,500 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=['registry', {u'cmd': [u'oc', u'get', u'scc', u'privileged', u'-o', u'yaml'], u'end': u'2016-03-15 09:58:40.589057', u'stderr': u'', u'stdout': u'allowEmptyDirVolumePlugin: true\nallowHostDirVolumePlugin: true\nallowHostIPC: true\nallowHostNetwork: true\nallowHostPID: true\nallowHostPorts: true\nallowPrivilegedContainer: true\nallowedCapabilities: null\napiVersion: v1\ndefaultAddCapabilities: null\nfsGroup:\n  type: RunAsAny\ngroups:\n- system:cluster-admins\n- system:nodes\nkind: SecurityContextConstraints\nmetadata:\n  annotations:\n    kubernetes.io/description: \'privileged allows access to all privileged and host\n      features and the ability to run as any user, any group, any fsGroup, and with\n      any SELinux context.  WARNING: this is the most relaxed SCC and should be used\n      only for cluster administration. Grant with caution.\'\n  creationTimestamp: 2016-03-15T09:57:54Z\n  name: privileged\n  resourceVersion: "309"\n  selfLink: /api/v1/securitycontextconstraints/privileged\n  uid: 6367c145-ea94-11e5-aad2-5254007c5af4\npriority: null\nrequiredDropCapabilities: null\nrunAsUser:\n  type: RunAsAny\nseLinuxContext:\n  type: RunAsAny\nsupplementalGroups:\n  type: RunAsAny\nusers:\n- system:serviceaccount:openshift-infra:build-controller\n- system:serviceaccount:management-infra:management-admin', 'item': 'privileged', u'changed': False, u'rc': 0, 'failed': False, u'warnings': [], u'delta': u'0:00:00.285900', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'oc get scc privileged -o yaml'}, 'stdout_lines': [u'allowEmptyDirVolumePlugin: true', u'allowHostDirVolumePlugin: true', u'allowHostIPC: true', u'allowHostNetwork: true', u'allowHostPID: true', u'allowHostPorts: true', u'allowPrivilegedContainer: true', u'allowedCapabilities: null', u'apiVersion: v1', u'defaultAddCapabilities: null', u'fsGroup:', u'  type: RunAsAny', u'groups:', u'- system:cluster-admins', u'- system:nodes', u'kind: SecurityContextConstraints', u'metadata:', u'  annotations:', u"    kubernetes.io/description: 'privileged allows access to all privileged and host", u'      features and the ability to run as any user, any group, any fsGroup, and with', u'      any SELinux context.  WARNING: this is the most relaxed SCC and should be used', u"      only for cluster administration. Grant with caution.'", u'  creationTimestamp: 2016-03-15T09:57:54Z', u'  name: privileged', u'  resourceVersion: "309"', u'  selfLink: /api/v1/securitycontextconstraints/privileged', u'  uid: 6367c145-ea94-11e5-aad2-5254007c5af4', u'priority: null', u'requiredDropCapabilities: null', u'runAsUser:', u'  type: RunAsAny', u'seLinuxContext:', u'  type: RunAsAny', u'supplementalGroups:', u'  type: RunAsAny', u'users:', u'- system:serviceaccount:openshift-infra:build-controller', u'- system:serviceaccount:management-infra:management-admin'], 'failed_when_result': False, u'start': u'2016-03-15 09:58:40.303157'}]) => {"changed": true, "cmd": ["oadm", "policy", "add-scc-to-user", "privileged", "system:serviceaccount:default:registry"], "delta": "0:00:00.234799", "end": "2016-03-15 09:58:41.495149", "item": ["registry", {"changed": false, "cmd": ["oc", "get", "scc", "privileged", "-o", "yaml"], "delta": "0:00:00.285900", "end": "2016-03-15 09:58:40.589057", "failed": false, "failed_when_result": false, "invocation": {"module_args": "oc get scc privileged -o yaml", "module_complex_args": {}, "module_name": "command"}, "item": "privileged", "rc": 0, "start": "2016-03-15 09:58:40.303157", "stderr": "", "stdout": "allowEmptyDirVolumePlugin: true\nallowHostDirVolumePlugin: true\nallowHostIPC: true\nallowHostNetwork: true\nallowHostPID: true\nallowHostPorts: true\nallowPrivilegedContainer: true\nallowedCapabilities: null\napiVersion: v1\ndefaultAddCapabilities: null\nfsGroup:\n  type: RunAsAny\ngroups:\n- system:cluster-admins\n- system:nodes\nkind: SecurityContextConstraints\nmetadata:\n  annotations:\n    kubernetes.io/description: 'privileged allows access to all privileged and host\n      features and the ability to run as any user, any group, any fsGroup, and with\n      any SELinux context.  WARNING: this is the most relaxed SCC and should be used\n      only for cluster administration. Grant with caution.'\n  creationTimestamp: 2016-03-15T09:57:54Z\n  name: privileged\n  resourceVersion: \"309\"\n  selfLink: /api/v1/securitycontextconstraints/privileged\n  uid: 6367c145-ea94-11e5-aad2-5254007c5af4\npriority: null\nrequiredDropCapabilities: null\nrunAsUser:\n  type: RunAsAny\nseLinuxContext:\n  type: RunAsAny\nsupplementalGroups:\n  type: RunAsAny\nusers:\n- system:serviceaccount:openshift-infra:build-controller\n- system:serviceaccount:management-infra:management-admin", "stdout_lines": ["allowEmptyDirVolumePlugin: true", "allowHostDirVolumePlugin: true", "allowHostIPC: true", "allowHostNetwork: true", "allowHostPID: true", "allowHostPorts: true", "allowPrivilegedContainer: true", "allowedCapabilities: null", "apiVersion: v1", "defaultAddCapabilities: null", "fsGroup:", "  type: RunAsAny", "groups:", "- system:cluster-admins", "- system:nodes", "kind: SecurityContextConstraints", "metadata:", "  annotations:", "    kubernetes.io/description: 'privileged allows access to all privileged and host", "      features and the ability to run as any user, any group, any fsGroup, and with", "      any SELinux context.  WARNING: this is the most relaxed SCC and should be used", "      only for cluster administration. Grant with caution.'", "  creationTimestamp: 2016-03-15T09:57:54Z", "  name: privileged", "  resourceVersion: \"309\"", "  selfLink: /api/v1/securitycontextconstraints/privileged", "  uid: 6367c145-ea94-11e5-aad2-5254007c5af4", "priority: null", "requiredDropCapabilities: null", "runAsUser:", "  type: RunAsAny", "seLinuxContext:", "  type: RunAsAny", "supplementalGroups:", "  type: RunAsAny", "users:", "- system:serviceaccount:openshift-infra:build-controller", "- system:serviceaccount:management-infra:management-admin"], "warnings": []}], "rc": 0, "start": "2016-03-15 09:58:41.260350", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:58:41,501 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | tmp dir for openshift] *********************
2016-03-15 11:58:41,515 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:41,515 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | Create service account configs] ************
2016-03-15 11:58:41,538 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=router)
2016-03-15 11:58:41,541 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=registry)
2016-03-15 11:58:41,541 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | Get current security context constraints] ***
2016-03-15 11:58:41,553 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:41,554 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | Add security context constraint for {{ item }}] ***
2016-03-15 11:58:41,573 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=['router', {u'cmd': [u'oc', u'get', u'scc', u'privileged', u'-o', u'yaml'], u'end': u'2016-03-15 09:58:40.589057', u'stderr': u'', u'stdout': u'allowEmptyDirVolumePlugin: true\nallowHostDirVolumePlugin: true\nallowHostIPC: true\nallowHostNetwork: true\nallowHostPID: true\nallowHostPorts: true\nallowPrivilegedContainer: true\nallowedCapabilities: null\napiVersion: v1\ndefaultAddCapabilities: null\nfsGroup:\n  type: RunAsAny\ngroups:\n- system:cluster-admins\n- system:nodes\nkind: SecurityContextConstraints\nmetadata:\n  annotations:\n    kubernetes.io/description: \'privileged allows access to all privileged and host\n      features and the ability to run as any user, any group, any fsGroup, and with\n      any SELinux context.  WARNING: this is the most relaxed SCC and should be used\n      only for cluster administration. Grant with caution.\'\n  creationTimestamp: 2016-03-15T09:57:54Z\n  name: privileged\n  resourceVersion: "309"\n  selfLink: /api/v1/securitycontextconstraints/privileged\n  uid: 6367c145-ea94-11e5-aad2-5254007c5af4\npriority: null\nrequiredDropCapabilities: null\nrunAsUser:\n  type: RunAsAny\nseLinuxContext:\n  type: RunAsAny\nsupplementalGroups:\n  type: RunAsAny\nusers:\n- system:serviceaccount:openshift-infra:build-controller\n- system:serviceaccount:management-infra:management-admin', 'item': 'privileged', u'changed': False, u'rc': 0, 'failed': False, u'warnings': [], u'delta': u'0:00:00.285900', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'oc get scc privileged -o yaml'}, 'stdout_lines': [u'allowEmptyDirVolumePlugin: true', u'allowHostDirVolumePlugin: true', u'allowHostIPC: true', u'allowHostNetwork: true', u'allowHostPID: true', u'allowHostPorts: true', u'allowPrivilegedContainer: true', u'allowedCapabilities: null', u'apiVersion: v1', u'defaultAddCapabilities: null', u'fsGroup:', u'  type: RunAsAny', u'groups:', u'- system:cluster-admins', u'- system:nodes', u'kind: SecurityContextConstraints', u'metadata:', u'  annotations:', u"    kubernetes.io/description: 'privileged allows access to all privileged and host", u'      features and the ability to run as any user, any group, any fsGroup, and with', u'      any SELinux context.  WARNING: this is the most relaxed SCC and should be used', u"      only for cluster administration. Grant with caution.'", u'  creationTimestamp: 2016-03-15T09:57:54Z', u'  name: privileged', u'  resourceVersion: "309"', u'  selfLink: /api/v1/securitycontextconstraints/privileged', u'  uid: 6367c145-ea94-11e5-aad2-5254007c5af4', u'priority: null', u'requiredDropCapabilities: null', u'runAsUser:', u'  type: RunAsAny', u'seLinuxContext:', u'  type: RunAsAny', u'supplementalGroups:', u'  type: RunAsAny', u'users:', u'- system:serviceaccount:openshift-infra:build-controller', u'- system:serviceaccount:management-infra:management-admin'], 'failed_when_result': False, u'start': u'2016-03-15 09:58:40.303157'}])
2016-03-15 11:58:41,576 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a] => (item=['registry', {u'cmd': [u'oc', u'get', u'scc', u'privileged', u'-o', u'yaml'], u'end': u'2016-03-15 09:58:40.589057', u'stderr': u'', u'stdout': u'allowEmptyDirVolumePlugin: true\nallowHostDirVolumePlugin: true\nallowHostIPC: true\nallowHostNetwork: true\nallowHostPID: true\nallowHostPorts: true\nallowPrivilegedContainer: true\nallowedCapabilities: null\napiVersion: v1\ndefaultAddCapabilities: null\nfsGroup:\n  type: RunAsAny\ngroups:\n- system:cluster-admins\n- system:nodes\nkind: SecurityContextConstraints\nmetadata:\n  annotations:\n    kubernetes.io/description: \'privileged allows access to all privileged and host\n      features and the ability to run as any user, any group, any fsGroup, and with\n      any SELinux context.  WARNING: this is the most relaxed SCC and should be used\n      only for cluster administration. Grant with caution.\'\n  creationTimestamp: 2016-03-15T09:57:54Z\n  name: privileged\n  resourceVersion: "309"\n  selfLink: /api/v1/securitycontextconstraints/privileged\n  uid: 6367c145-ea94-11e5-aad2-5254007c5af4\npriority: null\nrequiredDropCapabilities: null\nrunAsUser:\n  type: RunAsAny\nseLinuxContext:\n  type: RunAsAny\nsupplementalGroups:\n  type: RunAsAny\nusers:\n- system:serviceaccount:openshift-infra:build-controller\n- system:serviceaccount:management-infra:management-admin', 'item': 'privileged', u'changed': False, u'rc': 0, 'failed': False, u'warnings': [], u'delta': u'0:00:00.285900', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'oc get scc privileged -o yaml'}, 'stdout_lines': [u'allowEmptyDirVolumePlugin: true', u'allowHostDirVolumePlugin: true', u'allowHostIPC: true', u'allowHostNetwork: true', u'allowHostPID: true', u'allowHostPorts: true', u'allowPrivilegedContainer: true', u'allowedCapabilities: null', u'apiVersion: v1', u'defaultAddCapabilities: null', u'fsGroup:', u'  type: RunAsAny', u'groups:', u'- system:cluster-admins', u'- system:nodes', u'kind: SecurityContextConstraints', u'metadata:', u'  annotations:', u"    kubernetes.io/description: 'privileged allows access to all privileged and host", u'      features and the ability to run as any user, any group, any fsGroup, and with', u'      any SELinux context.  WARNING: this is the most relaxed SCC and should be used', u"      only for cluster administration. Grant with caution.'", u'  creationTimestamp: 2016-03-15T09:57:54Z', u'  name: privileged', u'  resourceVersion: "309"', u'  selfLink: /api/v1/securitycontextconstraints/privileged', u'  uid: 6367c145-ea94-11e5-aad2-5254007c5af4', u'priority: null', u'requiredDropCapabilities: null', u'runAsUser:', u'  type: RunAsAny', u'seLinuxContext:', u'  type: RunAsAny', u'supplementalGroups:', u'  type: RunAsAny', u'users:', u'- system:serviceaccount:openshift-infra:build-controller', u'- system:serviceaccount:management-infra:management-admin'], 'failed_when_result': False, u'start': u'2016-03-15 09:58:40.303157'}])
2016-03-15 11:58:41,577 p=8050 u=bpaskinc |  TASK: [openshift_serviceaccounts | Apply new scc rules for service accounts] ***
2016-03-15 11:58:41,589 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:41,589 p=8050 u=bpaskinc |  TASK: [openshift_router | Deploy OpenShift Router] ****************************
2016-03-15 11:58:42,155 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": ["oadm", "router", "--create", "--replicas=1", "--namespace=default", "--service-account=router", "--selector=type=infra", "--credentials=/etc/origin/master/openshift-router.kubeconfig", "--images=openshift/origin-${component}:${version}"], "delta": "0:00:00.346874", "end": "2016-03-15 09:58:42.116138", "rc": 0, "start": "2016-03-15 09:58:41.769264", "stderr": "", "stdout": "password for stats user admin has been set to 5XwUNnfzkC\ndeploymentconfig \"router\" created\nservice \"router\" created", "stdout_lines": ["password for stats user admin has been set to 5XwUNnfzkC", "deploymentconfig \"router\" created", "service \"router\" created"], "warnings": []}
2016-03-15 11:58:42,156 p=8050 u=bpaskinc |  TASK: [openshift_registry | Deploy OpenShift Registry] ************************
2016-03-15 11:58:42,206 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:42,207 p=8050 u=bpaskinc |  TASK: [openshift_registry | Determine if volume is already attached to dc/docker-registry] ***
2016-03-15 11:58:42,252 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:42,253 p=8050 u=bpaskinc |  TASK: [openshift_registry | set_fact ] ****************************************
2016-03-15 11:58:42,292 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:42,293 p=8050 u=bpaskinc |  TASK: [openshift_registry | Add volume to dc/docker-registry] *****************
2016-03-15 11:58:42,316 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:42,317 p=8050 u=bpaskinc |  TASK: [openshift_examples | Copy openshift examples] **************************
2016-03-15 11:58:55,184 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "dest": "/usr/share/openshift/examples/", "src": "/home/bpaskinc/openshift-ansible/playbooks/common/openshift-cluster/roles/openshift_examples/files/examples/v1.1"}
2016-03-15 11:58:55,185 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import RHEL streams] ******************************
2016-03-15 11:58:55,205 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:55,205 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import Centos Image streams] **********************
2016-03-15 11:58:55,851 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/image-streams/image-streams-centos7.json"], "delta": "0:00:00.439453", "end": "2016-03-15 09:58:55.841717", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:58:55.402264", "stderr": "Error from server: imagestreams \"ruby\" already exists\nError from server: imagestreams \"nodejs\" already exists\nError from server: imagestreams \"perl\" already exists\nError from server: imagestreams \"php\" already exists\nError from server: imagestreams \"python\" already exists\nError from server: imagestreams \"wildfly\" already exists\nError from server: imagestreams \"mysql\" already exists\nError from server: imagestreams \"postgresql\" already exists\nError from server: imagestreams \"mongodb\" already exists\nError from server: imagestreams \"jenkins\" already exists", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:55,852 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import db templates] ******************************
2016-03-15 11:58:56,317 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/db-templates"], "delta": "0:00:00.277232", "end": "2016-03-15 09:58:56.309251", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:58:56.032019", "stderr": "Error from server: error when creating \"/usr/share/openshift/examples/db-templates/mongodb-ephemeral-template.json\": templates \"mongodb-ephemeral\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/db-templates/mongodb-persistent-template.json\": templates \"mongodb-persistent\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/db-templates/mysql-ephemeral-template.json\": templates \"mysql-ephemeral\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/db-templates/mysql-persistent-template.json\": templates \"mysql-persistent\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/db-templates/postgresql-ephemeral-template.json\": templates \"postgresql-ephemeral\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/db-templates/postgresql-persistent-template.json\": templates \"postgresql-persistent\" already exists", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:56,318 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import quickstart-templates] **********************
2016-03-15 11:58:56,852 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/quickstart-templates"], "delta": "0:00:00.347183", "end": "2016-03-15 09:58:56.843514", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:58:56.496331", "stderr": "Error from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/cakephp-mysql.json\": templates \"cakephp-mysql-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/cakephp.json\": templates \"cakephp-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/dancer-mysql.json\": templates \"dancer-mysql-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/dancer.json\": templates \"dancer-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/django-postgresql.json\": templates \"django-psql-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/django.json\": templates \"django-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/jenkins-ephemeral-template.json\": templates \"jenkins-ephemeral\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/jenkins-persistent-template.json\": templates \"jenkins-persistent\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/nodejs-mongodb.json\": templates \"nodejs-mongodb-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/nodejs.json\": templates \"nodejs-example\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/quickstart-templates/rails-postgresql.json\": templates \"rails-postgresql-example\" already exists", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:56,852 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import origin infrastructure-templates] ***********
2016-03-15 11:58:57,394 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["oc", "create", "-n", "openshift", "-f", "/usr/share/openshift/examples/infrastructure-templates/origin"], "delta": "0:00:00.247263", "end": "2016-03-15 09:58:57.383137", "failed": false, "failed_when_result": false, "rc": 1, "start": "2016-03-15 09:58:57.135874", "stderr": "Error from server: error when creating \"/usr/share/openshift/examples/infrastructure-templates/origin/logging-deployer.yaml\": templates \"logging-deployer-template\" already exists\nError from server: error when creating \"/usr/share/openshift/examples/infrastructure-templates/origin/metrics-deployer.yaml\": templates \"metrics-deployer-template\" already exists", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:58:57,394 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import enterprise infrastructure-templates] *******
2016-03-15 11:58:57,432 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:58:57,433 p=8050 u=bpaskinc |  TASK: [openshift_examples | Remove old xpaas templates from filesystem] *******
2016-03-15 11:58:57,623 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=amq6-persistent.json) => {"changed": false, "item": "amq6-persistent.json", "path": "/usr/share/openshift/examples/xpaas-templates/amq6-persistent.json", "state": "absent"}
2016-03-15 11:58:57,788 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=amq6.json) => {"changed": false, "item": "amq6.json", "path": "/usr/share/openshift/examples/xpaas-templates/amq6.json", "state": "absent"}
2016-03-15 11:58:57,981 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-amq-persistent-sti.json) => {"changed": false, "item": "eap6-amq-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-amq-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:58,146 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-amq-sti.json) => {"changed": false, "item": "eap6-amq-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-amq-sti.json", "state": "absent"}
2016-03-15 11:58:58,323 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-basic-sti.json) => {"changed": false, "item": "eap6-basic-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-basic-sti.json", "state": "absent"}
2016-03-15 11:58:58,485 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-https-sti.json) => {"changed": false, "item": "eap6-https-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-https-sti.json", "state": "absent"}
2016-03-15 11:58:58,663 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mongodb-persistent-sti.json) => {"changed": false, "item": "eap6-mongodb-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mongodb-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:58,823 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mongodb-sti.json) => {"changed": false, "item": "eap6-mongodb-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mongodb-sti.json", "state": "absent"}
2016-03-15 11:58:58,996 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mysql-persistent-sti.json) => {"changed": false, "item": "eap6-mysql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mysql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:59,182 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-mysql-sti.json) => {"changed": false, "item": "eap6-mysql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-mysql-sti.json", "state": "absent"}
2016-03-15 11:58:59,365 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-postgresql-persistent-sti.json) => {"changed": false, "item": "eap6-postgresql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-postgresql-persistent-sti.json", "state": "absent"}
2016-03-15 11:58:59,559 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=eap6-postgresql-sti.json) => {"changed": false, "item": "eap6-postgresql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/eap6-postgresql-sti.json", "state": "absent"}
2016-03-15 11:58:59,748 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-basic-sti.json) => {"changed": false, "item": "jws-tomcat7-basic-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-basic-sti.json", "state": "absent"}
2016-03-15 11:58:59,906 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-https-sti.json) => {"changed": false, "item": "jws-tomcat7-https-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-https-sti.json", "state": "absent"}
2016-03-15 11:59:00,160 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mongodb-sti.json) => {"changed": false, "item": "jws-tomcat7-mongodb-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mongodb-sti.json", "state": "absent"}
2016-03-15 11:59:01,344 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mongodb-persistent-sti.json) => {"changed": false, "item": "jws-tomcat7-mongodb-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mongodb-persistent-sti.json", "state": "absent"}
2016-03-15 11:59:01,541 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mysql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat7-mysql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mysql-persistent-sti.json", "state": "absent"}
2016-03-15 11:59:01,723 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-mysql-sti.json) => {"changed": false, "item": "jws-tomcat7-mysql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-mysql-sti.json", "state": "absent"}
2016-03-15 11:59:01,906 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-postgresql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat7-postgresql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-postgresql-persistent-sti.json", "state": "absent"}
2016-03-15 11:59:02,072 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-postgresql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat8-postgresql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-postgresql-persistent-sti.json", "state": "absent"}
2016-03-15 11:59:02,273 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-basic-sti.json) => {"changed": false, "item": "jws-tomcat8-basic-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-basic-sti.json", "state": "absent"}
2016-03-15 11:59:02,429 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-https-sti.json) => {"changed": false, "item": "jws-tomcat8-https-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-https-sti.json", "state": "absent"}
2016-03-15 11:59:02,634 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mongodb-sti.json) => {"changed": false, "item": "jws-tomcat8-mongodb-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mongodb-sti.json", "state": "absent"}
2016-03-15 11:59:02,811 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mongodb-persistent-sti.json) => {"changed": false, "item": "jws-tomcat8-mongodb-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mongodb-persistent-sti.json", "state": "absent"}
2016-03-15 11:59:03,019 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mysql-sti.json) => {"changed": false, "item": "jws-tomcat8-mysql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mysql-sti.json", "state": "absent"}
2016-03-15 11:59:03,209 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-mysql-persistent-sti.json) => {"changed": false, "item": "jws-tomcat8-mysql-persistent-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-mysql-persistent-sti.json", "state": "absent"}
2016-03-15 11:59:03,372 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat8-postgresql-sti.json) => {"changed": false, "item": "jws-tomcat8-postgresql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat8-postgresql-sti.json", "state": "absent"}
2016-03-15 11:59:03,537 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => (item=jws-tomcat7-postgresql-sti.json) => {"changed": false, "item": "jws-tomcat7-postgresql-sti.json", "path": "/usr/share/openshift/examples/xpaas-templates/jws-tomcat7-postgresql-sti.json", "state": "absent"}
2016-03-15 11:59:03,538 p=8050 u=bpaskinc |  TASK: [openshift_examples | Remove old xpaas templates from openshift namespace] ***
2016-03-15 11:59:03,572 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:59:03,573 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import xPaas image streams] ***********************
2016-03-15 11:59:03,604 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:59:03,605 p=8050 u=bpaskinc |  TASK: [openshift_examples | Import xPaas templates] ***************************
2016-03-15 11:59:03,629 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]

Metrics stuff:

2016-03-15 11:59:03,630 p=8050 u=bpaskinc |  TASK: [openshift_metrics | Copy Configuration to temporary conf] **************
2016-03-15 11:59:03,818 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["cp", "/etc/origin/master/admin.kubeconfig", "/tmp/hawkular_admin.kubeconfig"], "delta": "0:00:00.003523", "end": "2016-03-15 09:59:03.809983", "rc": 0, "start": "2016-03-15 09:59:03.806460", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:59:03,818 p=8050 u=bpaskinc |  TASK: [openshift_metrics | Create metrics-deployer Service Account] ***********
2016-03-15 11:59:04,473 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": "echo '{\"secrets\": [{\"name\": \"metrics-deployer\"}], \"kind\": \"ServiceAccount\", \"apiVersion\": \"v1\", \"metadata\": {\"name\": \"metrics-deployer\"}}' | oc create -n openshift-infra --config=/tmp/hawkular_admin.kubeconfig -f -", "delta": "0:00:00.384888", "end": "2016-03-15 09:59:04.442101", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:59:04.057213", "stderr": "", "stdout": "serviceaccount \"metrics-deployer\" created", "stdout_lines": ["serviceaccount \"metrics-deployer\" created"], "warnings": []}
2016-03-15 11:59:04,474 p=8050 u=bpaskinc |  TASK: [openshift_metrics | Create metrics-deployer Secret] ********************
2016-03-15 11:59:04,927 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "cmd": ["oc", "secrets", "new", "metrics-deployer", "nothing=/dev/null", "-n", "openshift-infra"], "delta": "0:00:00.250384", "end": "2016-03-15 09:59:04.916395", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:59:04.666011", "stderr": "", "stdout": "secret/metrics-deployer", "stdout_lines": ["secret/metrics-deployer"], "warnings": []}
2016-03-15 11:59:04,928 p=8050 u=bpaskinc |  TASK: [openshift_metrics | Configure role/user permissions] *******************
2016-03-15 11:59:05,476 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=policy add-role-to-user edit system:serviceaccount:openshift-infra:metrics-deployer -n openshift-infra) => {"changed": true, "cmd": ["oadm", "policy", "add-role-to-user", "edit", "system:serviceaccount:openshift-infra:metrics-deployer", "-n", "openshift-infra", "--config=/tmp/hawkular_admin.kubeconfig"], "delta": "0:00:00.353217", "end": "2016-03-15 09:59:05.466751", "failed": false, "failed_when_result": false, "item": "policy add-role-to-user edit system:serviceaccount:openshift-infra:metrics-deployer -n openshift-infra", "rc": 0, "start": "2016-03-15 09:59:05.113534", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:59:06,088 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item=policy add-cluster-role-to-user cluster-admin system:serviceaccount:openshift-infra:heapster) => {"changed": true, "cmd": ["oadm", "policy", "add-cluster-role-to-user", "cluster-admin", "system:serviceaccount:openshift-infra:heapster", "--config=/tmp/hawkular_admin.kubeconfig"], "delta": "0:00:00.438328", "end": "2016-03-15 09:59:06.069608", "failed": false, "failed_when_result": false, "item": "policy add-cluster-role-to-user cluster-admin system:serviceaccount:openshift-infra:heapster", "rc": 0, "start": "2016-03-15 09:59:05.631280", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:59:06,088 p=8050 u=bpaskinc |  TASK: [openshift_metrics | Create Heapster Services] **************************
2016-03-15 11:59:06,665 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "oc process -f /usr/share/openshift/examples/infrastructure-templates/origin/metrics-deployer.yaml -v HAWKULAR_METRICS_HOSTNAME=hawkular-metrics.example.com,USE_PERSISTENT_STORAGE=false | oc create -n openshift-infra -f -", "delta": "0:00:00.391776", "end": "2016-03-15 09:59:06.653258", "failed": false, "failed_when_result": false, "rc": 0, "start": "2016-03-15 09:59:06.261482", "stderr": "", "stdout": "pod \"metrics-deployer-pqjtp\" created", "stdout_lines": ["pod \"metrics-deployer-pqjtp\" created"], "warnings": []}
2016-03-15 11:59:06,666 p=8050 u=bpaskinc |  TASK: [openshift_metrics | Clean temporary config file] ***********************
2016-03-15 11:59:06,919 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": ["rm", "-rf", "/tmp/hawkular_admin.kubeconfig"], "delta": "0:00:00.002752", "end": "2016-03-15 09:59:06.914228", "rc": 0, "start": "2016-03-15 09:59:06.911476", "stderr": "", "stdout": "", "warnings": ["Consider using file module with state=absent rather than running rm"]}

2016-03-15 11:59:06,920 p=8050 u=bpaskinc |  PLAY [Gather and set facts for node hosts] ************************************
2016-03-15 11:59:06,920 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:59:07,561 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe]
2016-03-15 11:59:07,641 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2]
2016-03-15 11:59:07,655 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49]
2016-03-15 11:59:07,680 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:59:07,726 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift_node_debug_level": "2"}}
2016-03-15 11:59:07,730 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift_node_debug_level": "2"}}
2016-03-15 11:59:07,739 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift_node_debug_level": "2"}}
2016-03-15 11:59:07,748 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:59:07,793 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:59:07,794 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:59:07,801 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:59:07,814 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:59:08,211 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.012070", "end": "2016-03-15 09:59:08.186492", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:59:08.174422", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:59:08,252 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.019003", "end": "2016-03-15 09:59:08.223835", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:59:08.204832", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:59:08,309 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.004572", "end": "2016-03-15 09:59:08.302957", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:59:08.298385", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:59:08,319 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:59:08,358 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:59:08,361 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:59:08,363 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:59:08,374 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:59:08,412 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:59:08,418 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:59:08,421 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:59:08,430 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:59:09,755 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:59:09,937 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:59:09,945 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:59:09,965 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:59:12,312 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:59:12,321 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:59:12,369 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:59:12,385 p=8050 u=bpaskinc |  TASK: [openshift_facts ] ******************************************************
2016-03-15 11:59:14,604 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item={'local_facts': {'deployment_type': u'origin', 'public_hostname': u'', 'hostname': u'', 'use_flannel': u''}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false, "item": {"local_facts": {"deployment_type": "origin", "hostname": "", "public_hostname": "", "use_flannel": ""}, "role": "common"}}
2016-03-15 11:59:15,028 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item={'local_facts': {'deployment_type': u'origin', 'public_hostname': u'', 'hostname': u'', 'use_flannel': u''}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false, "item": {"local_facts": {"deployment_type": "origin", "hostname": "", "public_hostname": "", "use_flannel": ""}, "role": "common"}}
2016-03-15 11:59:15,040 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item={'local_facts': {'deployment_type': u'origin', 'public_hostname': u'', 'hostname': u'', 'use_flannel': u''}, 'role': 'common'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false, "item": {"local_facts": {"deployment_type": "origin", "hostname": "", "public_hostname": "", "use_flannel": ""}, "role": "common"}}
2016-03-15 11:59:16,873 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-0e7b2] => (item={'local_facts': {'schedulable': u'', 'labels': {'type': u'compute'}, 'annotations': u''}, 'role': 'node'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {"type": "compute"}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"annotations": "", "labels": {"type": "compute"}, "schedulable": ""}, "role": "node"}}
2016-03-15 11:59:17,167 p=8050 u=bpaskinc |  changed: [metrics4-node-infra-48f49] => (item={'local_facts': {'schedulable': u'', 'labels': {'type': u'infra'}, 'annotations': u''}, 'role': 'node'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {"type": "infra"}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"annotations": "", "labels": {"type": "infra"}, "schedulable": ""}, "role": "node"}}
2016-03-15 11:59:17,220 p=8050 u=bpaskinc |  changed: [metrics4-node-compute-266fe] => (item={'local_facts': {'schedulable': u'', 'labels': {'type': u'compute'}, 'annotations': u''}, 'role': 'node'}) => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {"type": "compute"}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": true, "item": {"local_facts": {"annotations": "", "labels": {"type": "compute"}, "schedulable": ""}, "role": "node"}}
2016-03-15 11:59:17,237 p=8050 u=bpaskinc |  TASK: [Check status of node certificates] *************************************
2016-03-15 11:59:17,761 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=system:node:metrics4-node-infra-48f49.example.com.crt) => {"changed": false, "item": "system:node:metrics4-node-infra-48f49.example.com.crt", "stat": {"exists": false}}
2016-03-15 11:59:17,801 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=system:node:metrics4-node-compute-0e7b2.example.com.crt) => {"changed": false, "item": "system:node:metrics4-node-compute-0e7b2.example.com.crt", "stat": {"exists": false}}
2016-03-15 11:59:17,835 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=system:node:metrics4-node-compute-266fe.example.com.crt) => {"changed": false, "item": "system:node:metrics4-node-compute-266fe.example.com.crt", "stat": {"exists": false}}
2016-03-15 11:59:18,153 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=system:node:metrics4-node-infra-48f49.example.com.key) => {"changed": false, "item": "system:node:metrics4-node-infra-48f49.example.com.key", "stat": {"exists": false}}
2016-03-15 11:59:18,213 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=system:node:metrics4-node-compute-266fe.example.com.key) => {"changed": false, "item": "system:node:metrics4-node-compute-266fe.example.com.key", "stat": {"exists": false}}
2016-03-15 11:59:18,224 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=system:node:metrics4-node-compute-0e7b2.example.com.key) => {"changed": false, "item": "system:node:metrics4-node-compute-0e7b2.example.com.key", "stat": {"exists": false}}
2016-03-15 11:59:18,587 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=system:node:metrics4-node-infra-48f49.example.com.kubeconfig) => {"changed": false, "item": "system:node:metrics4-node-infra-48f49.example.com.kubeconfig", "stat": {"exists": false}}
2016-03-15 11:59:18,609 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=system:node:metrics4-node-compute-266fe.example.com.kubeconfig) => {"changed": false, "item": "system:node:metrics4-node-compute-266fe.example.com.kubeconfig", "stat": {"exists": false}}
2016-03-15 11:59:18,736 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=system:node:metrics4-node-compute-0e7b2.example.com.kubeconfig) => {"changed": false, "item": "system:node:metrics4-node-compute-0e7b2.example.com.kubeconfig", "stat": {"exists": false}}
2016-03-15 11:59:19,038 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=ca.crt) => {"changed": false, "item": "ca.crt", "stat": {"exists": false}}
2016-03-15 11:59:19,111 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=ca.crt) => {"changed": false, "item": "ca.crt", "stat": {"exists": false}}
2016-03-15 11:59:19,329 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=ca.crt) => {"changed": false, "item": "ca.crt", "stat": {"exists": false}}
2016-03-15 11:59:19,532 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=server.key) => {"changed": false, "item": "server.key", "stat": {"exists": false}}
2016-03-15 11:59:19,613 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=server.key) => {"changed": false, "item": "server.key", "stat": {"exists": false}}
2016-03-15 11:59:19,705 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=server.key) => {"changed": false, "item": "server.key", "stat": {"exists": false}}
2016-03-15 11:59:19,967 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => (item=server.crt) => {"changed": false, "item": "server.crt", "stat": {"exists": false}}
2016-03-15 11:59:20,080 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => (item=server.crt) => {"changed": false, "item": "server.crt", "stat": {"exists": false}}
2016-03-15 11:59:20,101 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => (item=server.crt) => {"changed": false, "item": "server.crt", "stat": {"exists": false}}
2016-03-15 11:59:20,120 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:59:20,164 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe] => {"ansible_facts": {"certs_missing": [false], "config_dir": "/etc/origin/generated-configs/node-metrics4-node-compute-266fe.example.com", "node_cert_dir": "/etc/origin/node", "node_subdir": "node-metrics4-node-compute-266fe.example.com"}}
2016-03-15 11:59:20,165 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2] => {"ansible_facts": {"certs_missing": [false], "config_dir": "/etc/origin/generated-configs/node-metrics4-node-compute-0e7b2.example.com", "node_cert_dir": "/etc/origin/node", "node_subdir": "node-metrics4-node-compute-0e7b2.example.com"}}
2016-03-15 11:59:20,170 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49] => {"ansible_facts": {"certs_missing": [false], "config_dir": "/etc/origin/generated-configs/node-metrics4-node-infra-48f49.example.com", "node_cert_dir": "/etc/origin/node", "node_subdir": "node-metrics4-node-infra-48f49.example.com"}}
2016-03-15 11:59:20,180 p=8050 u=bpaskinc |  TASK: [Check status of flannel external etcd certificates] ********************
2016-03-15 11:59:20,212 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=node.etcd-client.crt)
2016-03-15 11:59:20,217 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=node.etcd-client.crt)
2016-03-15 11:59:20,217 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=node.etcd-ca.crt)
2016-03-15 11:59:20,220 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=node.etcd-ca.crt)
2016-03-15 11:59:20,222 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=node.etcd-client.crt)
2016-03-15 11:59:20,225 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=node.etcd-ca.crt)
2016-03-15 11:59:20,233 p=8050 u=bpaskinc |  TASK: [set_fact ] *************************************************************
2016-03-15 11:59:20,264 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:59:20,268 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:59:20,271 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:59:20,291 p=8050 u=bpaskinc |  PLAY [Create temp directory for syncing certs] ********************************
2016-03-15 11:59:20,291 p=8050 u=bpaskinc |  TASK: [Create local temp directory for syncing certs] *************************
2016-03-15 11:59:20,357 p=8050 u=bpaskinc |  ok: [localhost -> 127.0.0.1] => {"changed": false, "cmd": ["mktemp", "-d", "/tmp/openshift-ansible-XXXXXXX"], "delta": "0:00:00.001795", "end": "2016-03-15 11:59:20.350009", "rc": 0, "start": "2016-03-15 11:59:20.348214", "stderr": "", "stdout": "/tmp/openshift-ansible-WyzHWe7", "stdout_lines": ["/tmp/openshift-ansible-WyzHWe7"], "warnings": []}
2016-03-15 11:59:20,357 p=8050 u=bpaskinc |  PLAY [Configure flannel etcd certificates] ************************************
2016-03-15 11:59:20,357 p=8050 u=bpaskinc |  skipping: no hosts matched
2016-03-15 11:59:20,358 p=8050 u=bpaskinc |  PLAY [Copy the external etcd flannel certs to the nodes] **********************
2016-03-15 11:59:20,358 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:59:20,757 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-266fe]
2016-03-15 11:59:20,767 p=8050 u=bpaskinc |  ok: [metrics4-node-compute-0e7b2]
2016-03-15 11:59:20,808 p=8050 u=bpaskinc |  ok: [metrics4-node-infra-48f49]
2016-03-15 11:59:20,818 p=8050 u=bpaskinc |  TASK: [Ensure certificate directory exists] ***********************************
2016-03-15 11:59:20,848 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:59:20,850 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:59:20,853 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:59:20,866 p=8050 u=bpaskinc |  TASK: [Unarchive the tarball on the master] ***********************************
2016-03-15 11:59:20,897 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe]
2016-03-15 11:59:20,900 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2]
2016-03-15 11:59:20,905 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49]
2016-03-15 11:59:20,914 p=8050 u=bpaskinc |  TASK: [file ] *****************************************************************
2016-03-15 11:59:20,950 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=node.etcd-client.crt)
2016-03-15 11:59:20,954 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=node.etcd-client.key)
2016-03-15 11:59:20,955 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=node.etcd-client.crt)
2016-03-15 11:59:20,957 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-266fe] => (item=node.etcd-ca.crt)
2016-03-15 11:59:20,958 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=node.etcd-client.key)
2016-03-15 11:59:20,960 p=8050 u=bpaskinc |  skipping: [metrics4-node-compute-0e7b2] => (item=node.etcd-ca.crt)
2016-03-15 11:59:20,962 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=node.etcd-client.crt)
2016-03-15 11:59:20,966 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=node.etcd-client.key)
2016-03-15 11:59:20,970 p=8050 u=bpaskinc |  skipping: [metrics4-node-infra-48f49] => (item=node.etcd-ca.crt)
2016-03-15 11:59:20,995 p=8050 u=bpaskinc |  PLAY [Create node certificates] ***********************************************
2016-03-15 11:59:20,995 p=8050 u=bpaskinc |  GATHERING FACTS ***************************************************************
2016-03-15 11:59:21,252 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a]
2016-03-15 11:59:21,253 p=8050 u=bpaskinc |  TASK: [openshift_facts | Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0] ***
2016-03-15 11:59:21,275 p=8050 u=bpaskinc |  skipping: [metrics4-master-d780a]
2016-03-15 11:59:21,275 p=8050 u=bpaskinc |  TASK: [openshift_facts | Detecting Operating System] **************************
2016-03-15 11:59:21,419 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.002979", "end": "2016-03-15 09:59:21.416850", "failed": false, "failed_when_result": false, "rc": 2, "start": "2016-03-15 09:59:21.413871", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}
2016-03-15 11:59:21,419 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:59:21,444 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_atomic": "False"}}
2016-03-15 11:59:21,444 p=8050 u=bpaskinc |  TASK: [openshift_facts | set_fact ] *******************************************
2016-03-15 11:59:21,465 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"l_is_containerized": "False"}}
2016-03-15 11:59:21,466 p=8050 u=bpaskinc |  TASK: [openshift_facts | Ensure PyYaml is installed] **************************
2016-03-15 11:59:22,075 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"changed": false, "msg": "", "rc": 0, "results": ["PyYAML-3.10-11.el7.x86_64 providing PyYAML is already installed"]}
2016-03-15 11:59:22,076 p=8050 u=bpaskinc |  TASK: [openshift_facts | Gather Cluster facts and set is_containerized if needed] ***
2016-03-15 11:59:22,870 p=8050 u=bpaskinc |  ok: [metrics4-master-d780a] => {"ansible_facts": {"openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-master-d780a.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-master", "origin-clients"], "internal_hostnames": ["kubernetes.default", "kubernetes.default.svc.cluster.local", "kubernetes", "openshift.default", "192.168.55.98", "metrics4-master-d780a.example.com", "openshift.default.svc", "172.30.0.1", "openshift.default.svc.cluster.local", "kubernetes.default.svc", "openshift"], "ip": "192.168.55.98", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-master-d780a.example.com", "public_ip": "192.168.55.98", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "master", "hosted"]}, "etcd": {"etcd_data_dir": "/var/lib/origin/openshift.local.etcd", "etcd_image": "registry.access.redhat.com/rhel7/etcd"}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "master": {"access_token_max_seconds": 86400, "api_port": "8443", "api_url": "https://metrics4-master-d780a.example.com:8443", "api_use_ssl": true, "auth_token_max_seconds": 500, "bind_addr": "0.0.0.0", "cluster_method": "native", "console_path": "/console", "console_port": "8443", "console_url": "https://metrics4-master-d780a.example.com:8443/console", "console_use_ssl": true, "controllers_port": "8444", "debug_level": "2", "default_node_selector": "", "dns_port": "53", "embedded_dns": true, "embedded_etcd": true, "embedded_kube": true, "etcd_hosts": "", "etcd_port": "4001", "etcd_urls": ["https://metrics4-master-d780a.example.com:4001"], "etcd_use_ssl": true, "ha": "False", "identity_providers": [{"challenge": true, "kind": "AllowAllPasswordIdentityProvider", "login": true, "name": "allow_all"}], "infra_nodes": ["metrics4-node-infra-48f49"], "loopback_api_url": "https://metrics4-master-d780a.example.com:8443", "loopback_cluster_name": "metrics4-master-d780a-example-com:8443", "loopback_context_name": "default/metrics4-master-d780a-example-com:8443/system:openshift-master", "loopback_user": "system:openshift-master/metrics4-master-d780a-example-com:8443", "master_count": "1", "master_image": "openshift/origin", "mcs_allocator_range": "s0:/2", "mcs_labels_per_project": 5, "named_certificates": [], "oauth_grant_method": "auto", "portal_net": "172.30.0.0/16", "project_request_message": "", "project_request_template": "", "public_api_url": "https://metrics4-master-d780a.example.com:8443", "public_console_url": "https://metrics4-master-d780a.example.com:8443/console", "registry_selector": "type=infra", "registry_url": "openshift/origin-${component}:${version}", "router_selector": "type=infra", "sdn_cluster_network_cidr": "10.1.0.0/16", "sdn_host_subnet_length": "8", "session_auth_secrets": ["UhGdDNAAWBBA0ZdXN2oFTYuahc4T1yOt"], "session_encryption_secrets": ["Ip8VQMMts9WFxh63b1m0kRC7AGEJXCPJ"], "session_max_seconds": 3600, "session_name": "ssn", "session_secrets_file": "/etc/origin/master/session-secrets.yaml", "uid_allocator_range": "1000000000-1999999999/10000"}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": false, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}}, "changed": false}
2016-03-15 11:59:22,871 p=8050 u=bpaskinc |  TASK: [openshift_node_certificates | Create openshift_generated_configs_dir if it doesn't exist] ***
2016-03-15 11:59:23,058 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => {"changed": true, "gid": 0, "group": "root", "mode": "0700", "owner": "root", "path": "/etc/origin/generated-configs", "secontext": "unconfined_u:object_r:etc_t:s0", "size": 6, "state": "directory", "uid": 0}
2016-03-15 11:59:23,059 p=8050 u=bpaskinc |  TASK: [openshift_node_certificates | Generate the node client config] *********
2016-03-15 11:59:25,014 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={u'ansible_processor_count': 2, u'ansible_product_version': u'pc-i440fx-2.4', 'docker_check': {'invocation': {'module_name': u'stat', 'module_complex_args': {}, 'module_args': u'path=/etc/sysconfig/docker'}, u'stat': {u'uid': 0, u'exists': True, u'woth': False, u'mtime': 1457644215.0, u'inode': 26556882, u'isgid': False, u'size': 1548, u'roth': True, u'isuid': False, u'isreg': True, u'pw_name': u'root', u'gid': 0, u'ischr': False, u'wusr': True, u'xoth': False, u'islnk': False, u'nlink': 1, u'issock': False, u'rgrp': True, u'gr_name': u'root', u'path': u'/etc/sysconfig/docker', u'xusr': False, u'atime': 1458035783.5129993, u'md5': u'a18721a97fcebd4e465dea401b28dde6', u'isdir': False, u'ctime': 1458035770.7679842, u'isblk': False, u'xgrp': False, u'dev': 64769, u'wgrp': False, u'isfifo': False, u'mode': u'0644', u'checksum': u'fa349b8ee2f625de4dd125134249c9d52a2ddd84', u'rusr': True}, u'changed': False}, 'module_setup': True, u'ansible_memtotal_mb': 992, 'config_dir': u'/etc/origin/generated-configs/node-metrics4-node-compute-266fe.example.com', 'start_result': {'invocation': {'module_name': u'service', 'module_complex_args': {'state': 'started', 'enabled': True, 'name': 'docker'}, 'module_args': ''}, u'state': u'started', u'changed': True, u'enabled': True, u'name': u'docker'}, u'ansible_distribution_version': u'7.2.1511', u'ansible_virtualization_role': u'guest', 'ansible_ssh_host': u'192.168.55.214', u'ansible_env': {u'USERNAME': u'root', u'SUDO_UID': u'1000', u'LC_CTYPE': u'en_US.UTF-8', u'LOGNAME': u'root', u'USER': u'root', u'HOME': u'/root', u'PATH': u'/sbin:/bin:/usr/sbin:/usr/bin', u'_': u'/usr/bin/python', u'LANG': u'en_US.UTF-8', u'SUDO_COMMAND': u'/bin/sh -c echo BECOME-SUCCESS-cnfmorgyliwchrzwpwrgnfphyxbholkr; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /home/openshift/.ansible/tmp/ansible-tmp-1458035960.4-100645064768129/setup; rm -rf /home/openshift/.ansible/tmp/ansible-tmp-1458035960.4-100645064768129/ >/dev/null 2>&1', u'SUDO_GID': u'1000', u'SHELL': u'/bin/bash', u'SHLVL': u'1', u'TERM': u'xterm-256color', u'PWD': u'/home/openshift', u'MAIL': u'/var/mail/openshift', u'SUDO_USER': u'openshift'}, u'ansible_lo': {u'active': True, u'promisc': False, u'ipv4': {u'netmask': u'255.0.0.0', u'network': u'127.0.0.0', u'address': u'127.0.0.1'}, u'ipv6': [{u'scope': u'host', u'prefix': u'128', u'address': u'::1'}], u'device': u'lo', u'type': u'loopback', u'mtu': 65536}, u'ansible_userspace_bits': u'64', u'ansible_architecture': u'x86_64', 'ostree_output': {u'cmd': u'ls /run/ostree-booted', u'end': u'2016-03-15 09:59:08.223835', 'failed': False, u'stdout': u'', u'changed': False, u'rc': 2, u'start': u'2016-03-15 09:59:08.204832', u'warnings': [], u'delta': u'0:00:00.019003', 'invocation': {'module_name': u'shell', 'module_complex_args': {}, 'module_args': u'ls /run/ostree-booted'}, 'stdout_lines': [], 'failed_when_result': False, u'stderr': u'ls: cannot access /run/ostree-booted: No such file or directory'}, u'ansible_default_ipv4': {u'macaddress': u'52:54:00:ed:0f:18', u'network': u'192.168.55.0', u'mtu': 1500, u'alias': u'eth0', u'netmask': u'255.255.255.0', u'address': u'192.168.55.214', u'interface': u'eth0', u'type': u'ether', u'gateway': u'192.168.55.1'}, u'ansible_swapfree_mb': 0, u'ansible_default_ipv6': {}, u'ansible_distribution_release': u'Core', 'group_names': ['oo_hosts_to_update', 'oo_nodes_to_config', u'tag_clusterid-metrics4', u'tag_environment-dev', u'tag_host-type-node', u'tag_sub-host-type-compute'], u'ansible_cmdline': {u'LANG': u'en_US.UTF-8', u'BOOT_IMAGE': u'/boot/vmlinuz-3.10.0-327.el7.x86_64', u'crashkernel': u'auto', u'console': u'ttyS0,115200', u'ro': True, u'root': u'UUID=fc1bfc5d-a5d1-4c3c-afda-167500654723'}, u'ansible_selinux': {u'status': u'enabled', u'policyvers': 28, u'type': u'targeted', u'mode': u'enforcing', u'config_mode': u'enforcing'}, u'ansible_userspace_architecture': u'x86_64', 'certs_missing': [False], u'ansible_product_uuid': u'7F8F38CE-1626-F348-B473-A015DAB13AF9', u'ansible_pkg_mgr': u'yum', u'ansible_memfree_mb': 334, u'ansible_memory_mb': {u'real': {u'total': 992, u'free': 334, u'used': 658}, u'swap': {u'cached': 0, u'total': 0, u'used': 0, u'free': 0}, u'nocache': {u'used': 180, u'free': 812}}, u'ansible_distribution': u'CentOS', 'set_hostname_default': u'False', 'node_subdir': u'node-metrics4-node-compute-266fe.example.com', u'ansible_user_dir': u'/root', 'openshift_node_labels': {'type': u'compute'}, u'ansible_hostname': u'metrics4-node-compute-266fe', u'ansible_all_ipv6_addresses': [u'fe80::5054:ff:feed:f18'], u'ansible_interfaces': [u'lo', u'docker0', u'eth0'], u'ansible_machine_id': u'cf9b563caf2bc11cab56d6a504ff6a29', u'ansible_kernel': u'3.10.0-327.el7.x86_64', 'l_is_containerized': u'False', 'g_external_etcd_flannel_cert_stat_result': {'msg': 'All items completed', 'changed': False, 'results': [{u'skipped': True, u'changed': False}, {u'skipped': True, u'changed': False}]}, u'ansible_system': u'Linux', u'ansible_fqdn': u'metrics4-node-compute-266fe.example.com', u'ansible_user_gid': 0, 'openshift_node_debug_level': u'2', u'ansible_user_shell': u'/bin/bash', u'ansible_nodename': u'metrics4-node-compute-266fe', u'ansible_product_serial': u'NA', u'ansible_form_factor': u'Other', u'ansible_fips': False, u'ansible_user_id': u'root', 'udevw_udev_start_cmd': {u'skipped': True, u'changed': False}, 'result': {'invocation': {'module_name': u'service', 'module_complex_args': {'state': 'started', 'enabled': True, 'name': 'iptables'}, 'module_args': ''}, u'state': u'started', u'changed': True, u'enabled': True, u'name': u'iptables'}, u'ansible_domain': u'example.com', u'ansible_local': {u'openshift': {u'node': {u'labels': {u'type': u'compute'}}, u'common': {u'debug_level': u'2', u'docker_blocked_registries': [u''], u'cluster_id': u'metrics4', u'install_examples': u'True', u'deployment_type': u'origin', u'docker_additional_registries': [u''], u'docker_insecure_registries': [u'']}}}, 'ansible_sudo': u'True', u'ansible_processor_cores': 1, 'inventory_hostname': u'metrics4-node-compute-266fe', u'ansible_processor_vcpus': 2, u'ansible_docker0': {u'macaddress': u'02:42:75:67:9b:1a', u'interfaces': [], u'mtu': 1500, u'active': False, u'promisc': False, u'stp': False, u'ipv4': {u'netmask': u'255.255.0.0', u'network': u'172.17.0.0', u'address': u'172.17.0.1'}, u'device': u'docker0', u'type': u'bridge', u'id': u'8000.024275679b1a'}, u'ansible_bios_version': u'1.8.2-20150714_191134-', u'ansible_processor': [u'GenuineIntel', u'QEMU Virtual CPU version 2.4.1', u'GenuineIntel', u'QEMU Virtual CPU version 2.4.1'], u'ansible_virtualization_type': u'kvm', u'ansible_ssh_host_key_ecdsa_public': u'AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBRdFiyRXKaQ1NC0Q50k4n9YZEBn0DjH7FhbEte4GH6SkeBVo7+aibJj8yLCyCsZTjRPDC8zd8LRiGa17qkHn4A=', 'install_result': {'msg': 'All items completed', 'changed': True, 'results': [{'item': 'iptables', u'rc': 0, 'invocation': {'module_name': u'yum', 'module_complex_args': {}, 'module_args': u'name=iptables state=present'}, u'changed': False, u'results': [u'iptables-1.4.21-16.el7.x86_64 providing iptables is already installed'], u'msg': u''}, {'item': 'iptables-services', u'rc': 0, 'invocation': {'module_name': u'yum', 'module_complex_args': {}, 'module_args': u'name=iptables-services state=present'}, u'changed': True, u'results': [u'Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.joinweb.co.il\n * extras: centos.joinweb.co.il\n * updates: centos.joinweb.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n'], u'msg': u''}]}, u'ansible_mounts': [{u'options': u'rw,seclabel,relatime,attr2,inode64,noquota', u'uuid': u'fc1bfc5d-a5d1-4c3c-afda-167500654723', u'size_total': 10722455552, u'device': u'/dev/vda1', u'mount': u'/', u'size_available': 8995004416, u'fstype': u'xfs'}], u'ansible_system_vendor': u'QEMU', u'ansible_os_family': u'RedHat', 'pkg_check': {u'cmd': [u'rpm', u'-q', u'firewalld'], u'end': u'2016-03-15 09:53:07.514978', 'failed': False, u'stdout': u'package firewalld is not installed', u'changed': False, u'rc': 1, u'start': u'2016-03-15 09:53:07.441479', u'warnings': [u'Consider using yum module rather than running rpm'], u'delta': u'0:00:00.073499', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'rpm -q firewalld'}, 'stdout_lines': [u'package firewalld is not installed'], 'failed_when_result': False, u'stderr': u''}, u'openshift': {u'node': {u'node_image': u'openshift/node', u'schedulable': True, u'sdn_mtu': u'1450', u'labels': {u'type': u'compute'}, u'iptables_sync_period': u'5s', u'portal_net': u'172.30.0.0/16', u'storage_plugin_deps': [u'ceph', u'glusterfs', u'iscsi'], u'set_node_ip': False, u'ovs_image': u'openshift/openvswitch', u'annotations': {}, u'registry_url': u'openshift/origin-${component}:${version}'}, u'common': {u'ip': u'192.168.55.214', u'dns_domain': u'cluster.local', u'docker_insecure_registries': [], u'public_ip': u'192.168.55.214', u'sdn_network_plugin_name': u'redhat/openshift-ovs-subnet', u'cluster_id': u'metrics4', u'public_hostname': u'metrics4-node-compute-266fe.example.com', u'use_manageiq': True, u'internal_hostnames': [u'metrics4-node-compute-266fe.example.com', u'192.168.55.214'], u'data_dir': u'/var/lib/origin', u'use_nuage': False, u'hostname': u'metrics4-node-compute-266fe.example.com', u'version_gte_3_1_1_or_1_1_1': True, u'version': u'1.1.3', u'use_cluster_metrics_hawkular': False, u'service_type': u'origin', u'version_gte_3_2_or_1_2': False, u'cli_image': u'openshift/origin', u'deployment_type': u'origin', u'config_base': u'/etc/origin', u'admin_binary': u'oadm', u'all_hostnames': [u'metrics4-node-compute-266fe.example.com', u'192.168.55.214'], u'is_containerized': False, u'docker_blocked_registries': [], u'is_atomic': False, u'version_gte_3_1_or_1_1': True, u'examples_content_version': u'v1.1', u'debug_level': u'2', u'install_examples': u'True', u'client_binary': u'oc', u'docker_additional_registries': [], u'installed_variant_rpms': [u'origin', u'origin-clients'], u'use_openshift_sdn': True, u'use_flannel': False, u'use_cluster_metrics': False}, u'current_config': {u'roles': [u'node', u'hosted']}, u'hosted': {u'registry': {u'storage': {u'volume': {u'name': u'registry', u'size': u'5Gi'}, u'kind': None, u'nfs': {u'directory': u'/exports', u'options': u'*(rw,root_squash)'}, u'create_pv': True, u'host': None, u'access_modes': [u'ReadWriteMany']}}}}, 'stat_result': {'msg': 'All items completed', 'changed': False, 'results': [{'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-compute-266fe.example.com.crt'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-compute-266fe.example.com.crt', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-compute-266fe.example.com.key'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-compute-266fe.example.com.key', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-compute-266fe.example.com.kubeconfig'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-compute-266fe.example.com.kubeconfig', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/ca.crt'}, 'module_args': ''}, 'item': 'ca.crt', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/server.key'}, 'module_args': ''}, 'item': 'server.key', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/server.crt'}, 'module_args': ''}, 'item': 'server.crt', u'stat': {u'exists': False}, u'changed': False}]}, u'ansible_swaptotal_mb': 0, 'lookupip': {u'cmd': u"getent ahostsv4 metrics4-node-compute-266fe.example.com | head -n 1 | awk '{ print $1 }'", u'end': u'2016-03-15 09:53:00.403266', 'failed': False, u'stdout': u'192.168.55.214', u'changed': False, u'rc': 0, u'start': u'2016-03-15 09:53:00.370766', u'warnings': [], u'delta': u'0:00:00.032500', 'invocation': {'module_name': u'shell', 'module_complex_args': {}, 'module_args': u"getent ahostsv4 metrics4-node-compute-266fe.example.com | head -n 1 | awk '{ print $1 }'"}, 'stdout_lines': [u'192.168.55.214'], 'failed_when_result': False, u'stderr': u''}, u'ansible_date_time': {u'tz': u'UTC', u'epoch': u'1458035960', u'hour': u'09', u'time': u'09:59:20', u'tz_offset': u'+0000', u'month': u'03', u'second': u'20', u'iso8601_micro': u'2016-03-15T09:59:20.741327Z', u'weekday': u'Tuesday', u'year': u'2016', u'date': u'2016-03-15', u'iso8601': u'2016-03-15T09:59:20Z', u'day': u'15', u'minute': u'59'}, 'docker_service_status_changed': 'start_result | changed', 'udevw_override_conf': {u'skipped': True, u'changed': False}, u'ansible_devices': {u'vda': {u'scheduler_mode': u'', u'sectorsize': u'512', u'vendor': u'0x1af4', u'sectors': u'20971520', u'host': u'', u'rotational': u'1', u'removable': u'0', u'support_discard': u'0', u'holders': [], u'size': u'10.00 GB', u'model': None, u'partitions': {u'vda1': {u'start': u'2048', u'sectorsize': 512, u'sectors': u'20962777', u'size': u'10.00 GB'}}}, u'vdb': {u'scheduler_mode': u'', u'sectorsize': u'512', u'vendor': u'0x1af4', u'sectors': u'736', u'host': u'', u'rotational': u'1', u'removable': u'0', u'support_discard': u'0', u'holders': [], u'size': u'368.00 KB', u'model': None, u'partitions': {}}}, u'ansible_user_uid': 0, 'l_is_atomic': u'False', u'ansible_distribution_major_version': u'7', u'ansible_bios_date': u'04/01/2014', 'inventory_hostname_short': u'metrics4-node-compute-266fe', u'ansible_machine': u'x86_64', u'ansible_ssh_host_key_rsa_public': u'AAAAB3NzaC1yc2EAAAADAQABAAABAQCxKMn84DVOcsCIjRrxhbDpKLYhubPzSGSAdAYau7TUCTlJ05BcmN2F+f3K4ZN6/9eGD7uFvzqZwCYSjAf5qoyDTrd2x8tGLvOrck3qjLqxz54+mJtWdoCEXvRyBoX83ZXRoVNxdfJJWkRFJZTQj98FjjMV5Sw6KTgXnlu+meUFd1Hq3oztpfdSx0uKqvB7UmLXsoF0uUkTKiCo8UUF/CJOtfk8vzp2EA6SoZcwLAPGXfnDouHrYzKfFLH37SjW1HXgfYr4Ta7f5nOXHJY0hAUgW9X+M0ovwhd5kw465jU2LNJEg5E1+94EMvio1xVJh+TfQ10dO+bgiHhR302d7ltp', u'ansible_user_gecos': u'root', u'ansible_processor_threads_per_core': 1, 'ansible_ssh_user': u'openshift', u'ansible_eth0': {u'macaddress': u'52:54:00:ed:0f:18', u'module': u'virtio_net', u'mtu': 1500, u'active': True, u'promisc': False, u'ipv4': {u'netmask': u'255.255.255.0', u'network': u'192.168.55.0', u'address': u'192.168.55.214'}, u'ipv6': [{u'scope': u'link', u'prefix': u'64', u'address': u'fe80::5054:ff:feed:f18'}], u'device': u'eth0', u'type': u'ether'}, 'openshift_pool_id': {u'skipped': True, u'changed': False}, u'ansible_product_name': u'Standard PC (i440FX + PIIX, 1996)', 'node_cert_dir': u'/etc/origin/node', u'ansible_all_ipv4_addresses': [u'192.168.55.214', u'172.17.0.1'], u'ansible_python_version': u'2.7.5'}) => {"changed": true, "cmd": ["oadm", "create-api-client-config", "--certificate-authority=/etc/origin/master/ca.crt", "--client-dir=/etc/origin/generated-configs/node-metrics4-node-compute-266fe.example.com", "--groups=system:nodes", "--master=https://metrics4-master-d780a.example.com:8443", "--signer-cert=/etc/origin/master/ca.crt", "--signer-key=/etc/origin/master/ca.key", "--signer-serial=/etc/origin/master/ca.serial.txt", "--user=system:node:metrics4-node-compute-266fe.example.com"], "delta": "0:00:01.706685", "end": "2016-03-15 09:59:25.005181", "item": {"ansible_all_ipv4_addresses": ["192.168.55.214", "172.17.0.1"], "ansible_all_ipv6_addresses": ["fe80::5054:ff:feed:f18"], "ansible_architecture": "x86_64", "ansible_bios_date": "04/01/2014", "ansible_bios_version": "1.8.2-20150714_191134-", "ansible_cmdline": {"BOOT_IMAGE": "/boot/vmlinuz-3.10.0-327.el7.x86_64", "LANG": "en_US.UTF-8", "console": "ttyS0,115200", "crashkernel": "auto", "ro": true, "root": "UUID=fc1bfc5d-a5d1-4c3c-afda-167500654723"}, "ansible_date_time": {"date": "2016-03-15", "day": "15", "epoch": "1458035960", "hour": "09", "iso8601": "2016-03-15T09:59:20Z", "iso8601_micro": "2016-03-15T09:59:20.741327Z", "minute": "59", "month": "03", "second": "20", "time": "09:59:20", "tz": "UTC", "tz_offset": "+0000", "weekday": "Tuesday", "year": "2016"}, "ansible_default_ipv4": {"address": "192.168.55.214", "alias": "eth0", "gateway": "192.168.55.1", "interface": "eth0", "macaddress": "52:54:00:ed:0f:18", "mtu": 1500, "netmask": "255.255.255.0", "network": "192.168.55.0", "type": "ether"}, "ansible_default_ipv6": {}, "ansible_devices": {"vda": {"holders": [], "host": "", "model": null, "partitions": {"vda1": {"sectors": "20962777", "sectorsize": 512, "size": "10.00 GB", "start": "2048"}}, "removable": "0", "rotational": "1", "scheduler_mode": "", "sectors": "20971520", "sectorsize": "512", "size": "10.00 GB", "support_discard": "0", "vendor": "0x1af4"}, "vdb": {"holders": [], "host": "", "model": null, "partitions": {}, "removable": "0", "rotational": "1", "scheduler_mode": "", "sectors": "736", "sectorsize": "512", "size": "368.00 KB", "support_discard": "0", "vendor": "0x1af4"}}, "ansible_distribution": "CentOS", "ansible_distribution_major_version": "7", "ansible_distribution_release": "Core", "ansible_distribution_version": "7.2.1511", "ansible_docker0": {"active": false, "device": "docker0", "id": "8000.024275679b1a", "interfaces": [], "ipv4": {"address": "172.17.0.1", "netmask": "255.255.0.0", "network": "172.17.0.0"}, "macaddress": "02:42:75:67:9b:1a", "mtu": 1500, "promisc": false, "stp": false, "type": "bridge"}, "ansible_domain": "example.com", "ansible_env": {"HOME": "/root", "LANG": "en_US.UTF-8", "LC_CTYPE": "en_US.UTF-8", "LOGNAME": "root", "MAIL": "/var/mail/openshift", "PATH": "/sbin:/bin:/usr/sbin:/usr/bin", "PWD": "/home/openshift", "SHELL": "/bin/bash", "SHLVL": "1", "SUDO_COMMAND": "/bin/sh -c echo BECOME-SUCCESS-cnfmorgyliwchrzwpwrgnfphyxbholkr; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /home/openshift/.ansible/tmp/ansible-tmp-1458035960.4-100645064768129/setup; rm -rf /home/openshift/.ansible/tmp/ansible-tmp-1458035960.4-100645064768129/ >/dev/null 2>&1", "SUDO_GID": "1000", "SUDO_UID": "1000", "SUDO_USER": "openshift", "TERM": "xterm-256color", "USER": "root", "USERNAME": "root", "_": "/usr/bin/python"}, "ansible_eth0": {"active": true, "device": "eth0", "ipv4": {"address": "192.168.55.214", "netmask": "255.255.255.0", "network": "192.168.55.0"}, "ipv6": [{"address": "fe80::5054:ff:feed:f18", "prefix": "64", "scope": "link"}], "macaddress": "52:54:00:ed:0f:18", "module": "virtio_net", "mtu": 1500, "promisc": false, "type": "ether"}, "ansible_fips": false, "ansible_form_factor": "Other", "ansible_fqdn": "metrics4-node-compute-266fe.example.com", "ansible_hostname": "metrics4-node-compute-266fe", "ansible_interfaces": ["lo", "docker0", "eth0"], "ansible_kernel": "3.10.0-327.el7.x86_64", "ansible_lo": {"active": true, "device": "lo", "ipv4": {"address": "127.0.0.1", "netmask": "255.0.0.0", "network": "127.0.0.0"}, "ipv6": [{"address": "::1", "prefix": "128", "scope": "host"}], "mtu": 65536, "promisc": false, "type": "loopback"}, "ansible_local": {"openshift": {"common": {"cluster_id": "metrics4", "debug_level": "2", "deployment_type": "origin", "docker_additional_registries": [""], "docker_blocked_registries": [""], "docker_insecure_registries": [""], "install_examples": "True"}, "node": {"labels": {"type": "compute"}}}}, "ansible_machine": "x86_64", "ansible_machine_id": "cf9b563caf2bc11cab56d6a504ff6a29", "ansible_memfree_mb": 334, "ansible_memory_mb": {"nocache": {"free": 812, "used": 180}, "real": {"free": 334, "total": 992, "used": 658}, "swap": {"cached": 0, "free": 0, "total": 0, "used": 0}}, "ansible_memtotal_mb": 992, "ansible_mounts": [{"device": "/dev/vda1", "fstype": "xfs", "mount": "/", "options": "rw,seclabel,relatime,attr2,inode64,noquota", "size_available": 8995004416, "size_total": 10722455552, "uuid": "fc1bfc5d-a5d1-4c3c-afda-167500654723"}], "ansible_nodename": "metrics4-node-compute-266fe", "ansible_os_family": "RedHat", "ansible_pkg_mgr": "yum", "ansible_processor": ["GenuineIntel", "QEMU Virtual CPU version 2.4.1", "GenuineIntel", "QEMU Virtual CPU version 2.4.1"], "ansible_processor_cores": 1, "ansible_processor_count": 2, "ansible_processor_threads_per_core": 1, "ansible_processor_vcpus": 2, "ansible_product_name": "Standard PC (i440FX + PIIX, 1996)", "ansible_product_serial": "NA", "ansible_product_uuid": "7F8F38CE-1626-F348-B473-A015DAB13AF9", "ansible_product_version": "pc-i440fx-2.4", "ansible_python_version": "2.7.5", "ansible_selinux": {"config_mode": "enforcing", "mode": "enforcing", "policyvers": 28, "status": "enabled", "type": "targeted"}, "ansible_ssh_host": "192.168.55.214", "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBRdFiyRXKaQ1NC0Q50k4n9YZEBn0DjH7FhbEte4GH6SkeBVo7+aibJj8yLCyCsZTjRPDC8zd8LRiGa17qkHn4A=", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQCxKMn84DVOcsCIjRrxhbDpKLYhubPzSGSAdAYau7TUCTlJ05BcmN2F+f3K4ZN6/9eGD7uFvzqZwCYSjAf5qoyDTrd2x8tGLvOrck3qjLqxz54+mJtWdoCEXvRyBoX83ZXRoVNxdfJJWkRFJZTQj98FjjMV5Sw6KTgXnlu+meUFd1Hq3oztpfdSx0uKqvB7UmLXsoF0uUkTKiCo8UUF/CJOtfk8vzp2EA6SoZcwLAPGXfnDouHrYzKfFLH37SjW1HXgfYr4Ta7f5nOXHJY0hAUgW9X+M0ovwhd5kw465jU2LNJEg5E1+94EMvio1xVJh+TfQ10dO+bgiHhR302d7ltp", "ansible_ssh_user": "openshift", "ansible_sudo": "True", "ansible_swapfree_mb": 0, "ansible_swaptotal_mb": 0, "ansible_system": "Linux", "ansible_system_vendor": "QEMU", "ansible_user_dir": "/root", "ansible_user_gecos": "root", "ansible_user_gid": 0, "ansible_user_id": "root", "ansible_user_shell": "/bin/bash", "ansible_user_uid": 0, "ansible_userspace_architecture": "x86_64", "ansible_userspace_bits": "64", "ansible_virtualization_role": "guest", "ansible_virtualization_type": "kvm", "certs_missing": [false], "config_dir": "/etc/origin/generated-configs/node-metrics4-node-compute-266fe.example.com", "docker_check": {"changed": false, "invocation": {"module_args": "path=/etc/sysconfig/docker", "module_complex_args": {}, "module_name": "stat"}, "stat": {"atime": 1458035783.5129993, "checksum": "fa349b8ee2f625de4dd125134249c9d52a2ddd84", "ctime": 1458035770.7679842, "dev": 64769, "exists": true, "gid": 0, "gr_name": "root", "inode": 26556882, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "md5": "a18721a97fcebd4e465dea401b28dde6", "mode": "0644", "mtime": 1457644215.0, "nlink": 1, "path": "/etc/sysconfig/docker", "pw_name": "root", "rgrp": true, "roth": true, "rusr": true, "size": 1548, "uid": 0, "wgrp": false, "woth": false, "wusr": true, "xgrp": false, "xoth": false, "xusr": false}}, "docker_service_status_changed": "start_result | changed", "g_external_etcd_flannel_cert_stat_result": {"changed": false, "msg": "All items completed", "results": [{"changed": false, "skipped": true}, {"changed": false, "skipped": true}]}, "group_names": ["oo_hosts_to_update", "oo_nodes_to_config", "tag_clusterid-metrics4", "tag_environment-dev", "tag_host-type-node", "tag_sub-host-type-compute"], "install_result": {"changed": true, "msg": "All items completed", "results": [{"changed": false, "invocation": {"module_args": "name=iptables state=present", "module_complex_args": {}, "module_name": "yum"}, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}, {"changed": true, "invocation": {"module_args": "name=iptables-services state=present", "module_complex_args": {}, "module_name": "yum"}, "item": "iptables-services", "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.joinweb.co.il\n * extras: centos.joinweb.co.il\n * updates: centos.joinweb.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n"]}]}, "inventory_hostname": "metrics4-node-compute-266fe", "inventory_hostname_short": "metrics4-node-compute-266fe", "l_is_atomic": "False", "l_is_containerized": "False", "lookupip": {"changed": false, "cmd": "getent ahostsv4 metrics4-node-compute-266fe.example.com | head -n 1 | awk '{ print $1 }'", "delta": "0:00:00.032500", "end": "2016-03-15 09:53:00.403266", "failed": false, "failed_when_result": false, "invocation": {"module_args": "getent ahostsv4 metrics4-node-compute-266fe.example.com | head -n 1 | awk '{ print $1 }'", "module_complex_args": {}, "module_name": "shell"}, "rc": 0, "start": "2016-03-15 09:53:00.370766", "stderr": "", "stdout": "192.168.55.214", "stdout_lines": ["192.168.55.214"], "warnings": []}, "module_setup": true, "node_cert_dir": "/etc/origin/node", "node_subdir": "node-metrics4-node-compute-266fe.example.com", "openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-266fe.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-266fe.example.com", "192.168.55.214"], "ip": "192.168.55.214", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-266fe.example.com", "public_ip": "192.168.55.214", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {"type": "compute"}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}, "openshift_node_debug_level": "2", "openshift_node_labels": {"type": "compute"}, "openshift_pool_id": {"changed": false, "skipped": true}, "ostree_output": {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.019003", "end": "2016-03-15 09:59:08.223835", "failed": false, "failed_when_result": false, "invocation": {"module_args": "ls /run/ostree-booted", "module_complex_args": {}, "module_name": "shell"}, "rc": 2, "start": "2016-03-15 09:59:08.204832", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}, "pkg_check": {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.073499", "end": "2016-03-15 09:53:07.514978", "failed": false, "failed_when_result": false, "invocation": {"module_args": "rpm -q firewalld", "module_complex_args": {}, "module_name": "command"}, "rc": 1, "start": "2016-03-15 09:53:07.441479", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}, "result": {"changed": true, "enabled": true, "invocation": {"module_args": "", "module_complex_args": {"enabled": true, "name": "iptables", "state": "started"}, "module_name": "service"}, "name": "iptables", "state": "started"}, "set_hostname_default": "False", "start_result": {"changed": true, "enabled": true, "invocation": {"module_args": "", "module_complex_args": {"enabled": true, "name": "docker", "state": "started"}, "module_name": "service"}, "name": "docker", "state": "started"}, "stat_result": {"changed": false, "msg": "All items completed", "results": [{"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/system:node:metrics4-node-compute-266fe.example.com.crt"}, "module_name": "stat"}, "item": "system:node:metrics4-node-compute-266fe.example.com.crt", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/system:node:metrics4-node-compute-266fe.example.com.key"}, "module_name": "stat"}, "item": "system:node:metrics4-node-compute-266fe.example.com.key", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/system:node:metrics4-node-compute-266fe.example.com.kubeconfig"}, "module_name": "stat"}, "item": "system:node:metrics4-node-compute-266fe.example.com.kubeconfig", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/ca.crt"}, "module_name": "stat"}, "item": "ca.crt", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/server.key"}, "module_name": "stat"}, "item": "server.key", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/server.crt"}, "module_name": "stat"}, "item": "server.crt", "stat": {"exists": false}}]}, "udevw_override_conf": {"changed": false, "skipped": true}, "udevw_udev_start_cmd": {"changed": false, "skipped": true}}, "rc": 0, "start": "2016-03-15 09:59:23.298496", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:59:26,150 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={u'ansible_processor_count': 2, u'ansible_product_version': u'pc-i440fx-2.4', 'docker_check': {'invocation': {'module_name': u'stat', 'module_complex_args': {}, 'module_args': u'path=/etc/sysconfig/docker'}, u'stat': {u'uid': 0, u'exists': True, u'woth': False, u'mtime': 1457644215.0, u'inode': 26556914, u'isgid': False, u'size': 1548, u'roth': True, u'isuid': False, u'isreg': True, u'pw_name': u'root', u'gid': 0, u'ischr': False, u'wusr': True, u'xoth': False, u'islnk': False, u'nlink': 1, u'issock': False, u'rgrp': True, u'gr_name': u'root', u'path': u'/etc/sysconfig/docker', u'xusr': False, u'atime': 1458035783.5634332, u'md5': u'a18721a97fcebd4e465dea401b28dde6', u'isdir': False, u'ctime': 1458035778.1114082, u'isblk': False, u'xgrp': False, u'dev': 64769, u'wgrp': False, u'isfifo': False, u'mode': u'0644', u'checksum': u'fa349b8ee2f625de4dd125134249c9d52a2ddd84', u'rusr': True}, u'changed': False}, 'module_setup': True, u'ansible_memtotal_mb': 992, 'config_dir': u'/etc/origin/generated-configs/node-metrics4-node-compute-0e7b2.example.com', 'start_result': {'invocation': {'module_name': u'service', 'module_complex_args': {'state': 'started', 'enabled': True, 'name': 'docker'}, 'module_args': ''}, u'state': u'started', u'changed': True, u'enabled': True, u'name': u'docker'}, u'ansible_distribution_version': u'7.2.1511', u'ansible_virtualization_role': u'guest', 'ansible_ssh_host': u'192.168.55.136', u'ansible_env': {u'USERNAME': u'root', u'SUDO_UID': u'1000', u'LC_CTYPE': u'en_US.UTF-8', u'LOGNAME': u'root', u'USER': u'root', u'HOME': u'/root', u'PATH': u'/sbin:/bin:/usr/sbin:/usr/bin', u'_': u'/usr/bin/python', u'LANG': u'en_US.UTF-8', u'SUDO_COMMAND': u'/bin/sh -c echo BECOME-SUCCESS-qrdzjrobhsindhfafvmgygvbvdcunpqn; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /home/openshift/.ansible/tmp/ansible-tmp-1458035960.41-10940258980662/setup; rm -rf /home/openshift/.ansible/tmp/ansible-tmp-1458035960.41-10940258980662/ >/dev/null 2>&1', u'SUDO_GID': u'1000', u'SHELL': u'/bin/bash', u'SHLVL': u'1', u'TERM': u'xterm-256color', u'PWD': u'/home/openshift', u'MAIL': u'/var/mail/openshift', u'SUDO_USER': u'openshift'}, u'ansible_lo': {u'active': True, u'promisc': False, u'ipv4': {u'netmask': u'255.0.0.0', u'network': u'127.0.0.0', u'address': u'127.0.0.1'}, u'ipv6': [{u'scope': u'host', u'prefix': u'128', u'address': u'::1'}], u'device': u'lo', u'type': u'loopback', u'mtu': 65536}, u'ansible_userspace_bits': u'64', u'ansible_architecture': u'x86_64', 'ostree_output': {u'cmd': u'ls /run/ostree-booted', u'end': u'2016-03-15 09:59:08.302957', 'failed': False, u'stdout': u'', u'changed': False, u'rc': 2, u'start': u'2016-03-15 09:59:08.298385', u'warnings': [], u'delta': u'0:00:00.004572', 'invocation': {'module_name': u'shell', 'module_complex_args': {}, 'module_args': u'ls /run/ostree-booted'}, 'stdout_lines': [], 'failed_when_result': False, u'stderr': u'ls: cannot access /run/ostree-booted: No such file or directory'}, u'ansible_default_ipv4': {u'macaddress': u'52:54:00:85:7b:e5', u'network': u'192.168.55.0', u'mtu': 1500, u'alias': u'eth0', u'netmask': u'255.255.255.0', u'address': u'192.168.55.136', u'interface': u'eth0', u'type': u'ether', u'gateway': u'192.168.55.1'}, u'ansible_swapfree_mb': 0, u'ansible_default_ipv6': {}, u'ansible_distribution_release': u'Core', 'group_names': ['oo_hosts_to_update', 'oo_nodes_to_config', u'tag_clusterid-metrics4', u'tag_environment-dev', u'tag_host-type-node', u'tag_sub-host-type-compute'], u'ansible_cmdline': {u'LANG': u'en_US.UTF-8', u'BOOT_IMAGE': u'/boot/vmlinuz-3.10.0-327.el7.x86_64', u'crashkernel': u'auto', u'console': u'ttyS0,115200', u'ro': True, u'root': u'UUID=fc1bfc5d-a5d1-4c3c-afda-167500654723'}, u'ansible_selinux': {u'status': u'enabled', u'policyvers': 28, u'type': u'targeted', u'mode': u'enforcing', u'config_mode': u'enforcing'}, u'ansible_userspace_architecture': u'x86_64', 'certs_missing': [False], u'ansible_product_uuid': u'38F111F4-CBD2-224F-B486-ABA621DB71E8', u'ansible_pkg_mgr': u'yum', u'ansible_memfree_mb': 335, u'ansible_memory_mb': {u'real': {u'total': 992, u'free': 335, u'used': 657}, u'swap': {u'cached': 0, u'total': 0, u'used': 0, u'free': 0}, u'nocache': {u'used': 186, u'free': 806}}, u'ansible_distribution': u'CentOS', 'set_hostname_default': u'False', 'node_subdir': u'node-metrics4-node-compute-0e7b2.example.com', u'ansible_user_dir': u'/root', 'openshift_node_labels': {'type': u'compute'}, u'ansible_hostname': u'metrics4-node-compute-0e7b2', u'ansible_all_ipv6_addresses': [u'fe80::5054:ff:fe85:7be5'], u'ansible_interfaces': [u'lo', u'docker0', u'eth0'], u'ansible_machine_id': u'cf9b563caf2bc11cab56d6a504ff6a29', u'ansible_kernel': u'3.10.0-327.el7.x86_64', 'l_is_containerized': u'False', 'g_external_etcd_flannel_cert_stat_result': {'msg': 'All items completed', 'changed': False, 'results': [{u'skipped': True, u'changed': False}, {u'skipped': True, u'changed': False}]}, u'ansible_system': u'Linux', u'ansible_fqdn': u'metrics4-node-compute-0e7b2.example.com', u'ansible_user_gid': 0, 'openshift_node_debug_level': u'2', u'ansible_user_shell': u'/bin/bash', u'ansible_nodename': u'metrics4-node-compute-0e7b2', u'ansible_product_serial': u'NA', u'ansible_form_factor': u'Other', u'ansible_fips': False, u'ansible_user_id': u'root', 'udevw_udev_start_cmd': {u'skipped': True, u'changed': False}, 'result': {'invocation': {'module_name': u'service', 'module_complex_args': {'state': 'started', 'enabled': True, 'name': 'iptables'}, 'module_args': ''}, u'state': u'started', u'changed': True, u'enabled': True, u'name': u'iptables'}, u'ansible_domain': u'example.com', u'ansible_local': {u'openshift': {u'node': {u'labels': {u'type': u'compute'}}, u'common': {u'debug_level': u'2', u'docker_blocked_registries': [u''], u'cluster_id': u'metrics4', u'install_examples': u'True', u'deployment_type': u'origin', u'docker_additional_registries': [u''], u'docker_insecure_registries': [u'']}}}, 'ansible_sudo': u'True', u'ansible_processor_cores': 1, 'inventory_hostname': u'metrics4-node-compute-0e7b2', u'ansible_processor_vcpus': 2, u'ansible_docker0': {u'macaddress': u'02:42:af:f0:41:d7', u'interfaces': [], u'mtu': 1500, u'active': False, u'promisc': False, u'stp': False, u'ipv4': {u'netmask': u'255.255.0.0', u'network': u'172.17.0.0', u'address': u'172.17.0.1'}, u'device': u'docker0', u'type': u'bridge', u'id': u'8000.0242aff041d7'}, u'ansible_bios_version': u'1.8.2-20150714_191134-', u'ansible_processor': [u'GenuineIntel', u'QEMU Virtual CPU version 2.4.1', u'GenuineIntel', u'QEMU Virtual CPU version 2.4.1'], u'ansible_virtualization_type': u'kvm', u'ansible_ssh_host_key_ecdsa_public': u'AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOed+0bp70yX4FZdNcsT38AmjViMNhqa3ek85umd89xPMTUOSaM2IqZdyo4sTdp5gXgI89I5BamW668pD6DGenA=', 'install_result': {'msg': 'All items completed', 'changed': True, 'results': [{'item': 'iptables', u'rc': 0, 'invocation': {'module_name': u'yum', 'module_complex_args': {}, 'module_args': u'name=iptables state=present'}, u'changed': False, u'results': [u'iptables-1.4.21-16.el7.x86_64 providing iptables is already installed'], u'msg': u''}, {'item': 'iptables-services', u'rc': 0, 'invocation': {'module_name': u'yum', 'module_complex_args': {}, 'module_args': u'name=iptables-services state=present'}, u'changed': True, u'results': [u'Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n'], u'msg': u''}]}, u'ansible_mounts': [{u'options': u'rw,seclabel,relatime,attr2,inode64,noquota', u'uuid': u'fc1bfc5d-a5d1-4c3c-afda-167500654723', u'size_total': 10722455552, u'device': u'/dev/vda1', u'mount': u'/', u'size_available': 8995008512, u'fstype': u'xfs'}], u'ansible_system_vendor': u'QEMU', u'ansible_os_family': u'RedHat', 'pkg_check': {u'cmd': [u'rpm', u'-q', u'firewalld'], u'end': u'2016-03-15 09:53:07.508279', 'failed': False, u'stdout': u'package firewalld is not installed', u'changed': False, u'rc': 1, u'start': u'2016-03-15 09:53:07.434225', u'warnings': [u'Consider using yum module rather than running rpm'], u'delta': u'0:00:00.074054', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'rpm -q firewalld'}, 'stdout_lines': [u'package firewalld is not installed'], 'failed_when_result': False, u'stderr': u''}, u'openshift': {u'node': {u'node_image': u'openshift/node', u'schedulable': True, u'sdn_mtu': u'1450', u'labels': {u'type': u'compute'}, u'iptables_sync_period': u'5s', u'portal_net': u'172.30.0.0/16', u'storage_plugin_deps': [u'ceph', u'glusterfs', u'iscsi'], u'set_node_ip': False, u'ovs_image': u'openshift/openvswitch', u'annotations': {}, u'registry_url': u'openshift/origin-${component}:${version}'}, u'common': {u'ip': u'192.168.55.136', u'dns_domain': u'cluster.local', u'docker_insecure_registries': [], u'public_ip': u'192.168.55.136', u'sdn_network_plugin_name': u'redhat/openshift-ovs-subnet', u'cluster_id': u'metrics4', u'public_hostname': u'metrics4-node-compute-0e7b2.example.com', u'use_manageiq': True, u'internal_hostnames': [u'metrics4-node-compute-0e7b2.example.com', u'192.168.55.136'], u'data_dir': u'/var/lib/origin', u'use_nuage': False, u'hostname': u'metrics4-node-compute-0e7b2.example.com', u'version_gte_3_1_1_or_1_1_1': True, u'version': u'1.1.3', u'use_cluster_metrics_hawkular': False, u'service_type': u'origin', u'version_gte_3_2_or_1_2': False, u'cli_image': u'openshift/origin', u'deployment_type': u'origin', u'config_base': u'/etc/origin', u'admin_binary': u'oadm', u'all_hostnames': [u'metrics4-node-compute-0e7b2.example.com', u'192.168.55.136'], u'is_containerized': False, u'docker_blocked_registries': [], u'is_atomic': False, u'version_gte_3_1_or_1_1': True, u'examples_content_version': u'v1.1', u'debug_level': u'2', u'install_examples': u'True', u'client_binary': u'oc', u'docker_additional_registries': [], u'installed_variant_rpms': [u'origin', u'origin-clients'], u'use_openshift_sdn': True, u'use_flannel': False, u'use_cluster_metrics': False}, u'current_config': {u'roles': [u'node', u'hosted']}, u'hosted': {u'registry': {u'storage': {u'volume': {u'name': u'registry', u'size': u'5Gi'}, u'kind': None, u'nfs': {u'directory': u'/exports', u'options': u'*(rw,root_squash)'}, u'create_pv': True, u'host': None, u'access_modes': [u'ReadWriteMany']}}}}, 'stat_result': {'msg': 'All items completed', 'changed': False, 'results': [{'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-compute-0e7b2.example.com.crt'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-compute-0e7b2.example.com.crt', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-compute-0e7b2.example.com.key'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-compute-0e7b2.example.com.key', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-compute-0e7b2.example.com.kubeconfig'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-compute-0e7b2.example.com.kubeconfig', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/ca.crt'}, 'module_args': ''}, 'item': 'ca.crt', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/server.key'}, 'module_args': ''}, 'item': 'server.key', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/server.crt'}, 'module_args': ''}, 'item': 'server.crt', u'stat': {u'exists': False}, u'changed': False}]}, u'ansible_swaptotal_mb': 0, 'lookupip': {u'cmd': u"getent ahostsv4 metrics4-node-compute-0e7b2.example.com | head -n 1 | awk '{ print $1 }'", u'end': u'2016-03-15 09:53:00.457178', 'failed': False, u'stdout': u'192.168.55.136', u'changed': False, u'rc': 0, u'start': u'2016-03-15 09:53:00.438365', u'warnings': [], u'delta': u'0:00:00.018813', 'invocation': {'module_name': u'shell', 'module_complex_args': {}, 'module_args': u"getent ahostsv4 metrics4-node-compute-0e7b2.example.com | head -n 1 | awk '{ print $1 }'"}, 'stdout_lines': [u'192.168.55.136'], 'failed_when_result': False, u'stderr': u''}, u'ansible_date_time': {u'tz': u'UTC', u'epoch': u'1458035960', u'hour': u'09', u'time': u'09:59:20', u'tz_offset': u'+0000', u'month': u'03', u'second': u'20', u'iso8601_micro': u'2016-03-15T09:59:20.757522Z', u'weekday': u'Tuesday', u'year': u'2016', u'date': u'2016-03-15', u'iso8601': u'2016-03-15T09:59:20Z', u'day': u'15', u'minute': u'59'}, 'docker_service_status_changed': 'start_result | changed', 'udevw_override_conf': {u'skipped': True, u'changed': False}, u'ansible_devices': {u'vda': {u'scheduler_mode': u'', u'sectorsize': u'512', u'vendor': u'0x1af4', u'sectors': u'20971520', u'host': u'', u'rotational': u'1', u'removable': u'0', u'support_discard': u'0', u'holders': [], u'size': u'10.00 GB', u'model': None, u'partitions': {u'vda1': {u'start': u'2048', u'sectorsize': 512, u'sectors': u'20962777', u'size': u'10.00 GB'}}}, u'vdb': {u'scheduler_mode': u'', u'sectorsize': u'512', u'vendor': u'0x1af4', u'sectors': u'736', u'host': u'', u'rotational': u'1', u'removable': u'0', u'support_discard': u'0', u'holders': [], u'size': u'368.00 KB', u'model': None, u'partitions': {}}}, u'ansible_user_uid': 0, 'l_is_atomic': u'False', u'ansible_distribution_major_version': u'7', u'ansible_bios_date': u'04/01/2014', 'inventory_hostname_short': u'metrics4-node-compute-0e7b2', u'ansible_machine': u'x86_64', u'ansible_ssh_host_key_rsa_public': u'AAAAB3NzaC1yc2EAAAADAQABAAABAQDZBwMXmOA0AuKopZxTBP+6GWMs1F7fZ68U2u/uX26t1eRgG7Gm1opSqZ3wIQEwYEDhwfDdJm1jgqyrXYsHWCMFEMPWRSq6eVhlCKo0vW8ZzWGapixzIr79EvLci7d6b+BFhqYlz3gPnhGzp60uvfAuhtO+rlXnPoztj7H1j8R2BunNg8ReETiwVWIsBVPt5k1YU8iqsepJHy/dcvCwh/MfG3blrA0A+hmQd1EaXdrIBSrGdc+Vz52gFwaEj2kfPvnKIDmPQ3UdxIcAWwouYQvHrhvyENTZ8PV4EqZWxXd2ZBQJsFuwO3BRQ4ItCs1TunIcLb0x3fh4Dx+e4QRw5EhN', u'ansible_user_gecos': u'root', u'ansible_processor_threads_per_core': 1, 'ansible_ssh_user': u'openshift', u'ansible_eth0': {u'macaddress': u'52:54:00:85:7b:e5', u'module': u'virtio_net', u'mtu': 1500, u'active': True, u'promisc': False, u'ipv4': {u'netmask': u'255.255.255.0', u'network': u'192.168.55.0', u'address': u'192.168.55.136'}, u'ipv6': [{u'scope': u'link', u'prefix': u'64', u'address': u'fe80::5054:ff:fe85:7be5'}], u'device': u'eth0', u'type': u'ether'}, 'openshift_pool_id': {u'skipped': True, u'changed': False}, u'ansible_product_name': u'Standard PC (i440FX + PIIX, 1996)', 'node_cert_dir': u'/etc/origin/node', u'ansible_all_ipv4_addresses': [u'192.168.55.136', u'172.17.0.1'], u'ansible_python_version': u'2.7.5'}) => {"changed": true, "cmd": ["oadm", "create-api-client-config", "--certificate-authority=/etc/origin/master/ca.crt", "--client-dir=/etc/origin/generated-configs/node-metrics4-node-compute-0e7b2.example.com", "--groups=system:nodes", "--master=https://metrics4-master-d780a.example.com:8443", "--signer-cert=/etc/origin/master/ca.crt", "--signer-key=/etc/origin/master/ca.key", "--signer-serial=/etc/origin/master/ca.serial.txt", "--user=system:node:metrics4-node-compute-0e7b2.example.com"], "delta": "0:00:00.986341", "end": "2016-03-15 09:59:26.140900", "item": {"ansible_all_ipv4_addresses": ["192.168.55.136", "172.17.0.1"], "ansible_all_ipv6_addresses": ["fe80::5054:ff:fe85:7be5"], "ansible_architecture": "x86_64", "ansible_bios_date": "04/01/2014", "ansible_bios_version": "1.8.2-20150714_191134-", "ansible_cmdline": {"BOOT_IMAGE": "/boot/vmlinuz-3.10.0-327.el7.x86_64", "LANG": "en_US.UTF-8", "console": "ttyS0,115200", "crashkernel": "auto", "ro": true, "root": "UUID=fc1bfc5d-a5d1-4c3c-afda-167500654723"}, "ansible_date_time": {"date": "2016-03-15", "day": "15", "epoch": "1458035960", "hour": "09", "iso8601": "2016-03-15T09:59:20Z", "iso8601_micro": "2016-03-15T09:59:20.757522Z", "minute": "59", "month": "03", "second": "20", "time": "09:59:20", "tz": "UTC", "tz_offset": "+0000", "weekday": "Tuesday", "year": "2016"}, "ansible_default_ipv4": {"address": "192.168.55.136", "alias": "eth0", "gateway": "192.168.55.1", "interface": "eth0", "macaddress": "52:54:00:85:7b:e5", "mtu": 1500, "netmask": "255.255.255.0", "network": "192.168.55.0", "type": "ether"}, "ansible_default_ipv6": {}, "ansible_devices": {"vda": {"holders": [], "host": "", "model": null, "partitions": {"vda1": {"sectors": "20962777", "sectorsize": 512, "size": "10.00 GB", "start": "2048"}}, "removable": "0", "rotational": "1", "scheduler_mode": "", "sectors": "20971520", "sectorsize": "512", "size": "10.00 GB", "support_discard": "0", "vendor": "0x1af4"}, "vdb": {"holders": [], "host": "", "model": null, "partitions": {}, "removable": "0", "rotational": "1", "scheduler_mode": "", "sectors": "736", "sectorsize": "512", "size": "368.00 KB", "support_discard": "0", "vendor": "0x1af4"}}, "ansible_distribution": "CentOS", "ansible_distribution_major_version": "7", "ansible_distribution_release": "Core", "ansible_distribution_version": "7.2.1511", "ansible_docker0": {"active": false, "device": "docker0", "id": "8000.0242aff041d7", "interfaces": [], "ipv4": {"address": "172.17.0.1", "netmask": "255.255.0.0", "network": "172.17.0.0"}, "macaddress": "02:42:af:f0:41:d7", "mtu": 1500, "promisc": false, "stp": false, "type": "bridge"}, "ansible_domain": "example.com", "ansible_env": {"HOME": "/root", "LANG": "en_US.UTF-8", "LC_CTYPE": "en_US.UTF-8", "LOGNAME": "root", "MAIL": "/var/mail/openshift", "PATH": "/sbin:/bin:/usr/sbin:/usr/bin", "PWD": "/home/openshift", "SHELL": "/bin/bash", "SHLVL": "1", "SUDO_COMMAND": "/bin/sh -c echo BECOME-SUCCESS-qrdzjrobhsindhfafvmgygvbvdcunpqn; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /home/openshift/.ansible/tmp/ansible-tmp-1458035960.41-10940258980662/setup; rm -rf /home/openshift/.ansible/tmp/ansible-tmp-1458035960.41-10940258980662/ >/dev/null 2>&1", "SUDO_GID": "1000", "SUDO_UID": "1000", "SUDO_USER": "openshift", "TERM": "xterm-256color", "USER": "root", "USERNAME": "root", "_": "/usr/bin/python"}, "ansible_eth0": {"active": true, "device": "eth0", "ipv4": {"address": "192.168.55.136", "netmask": "255.255.255.0", "network": "192.168.55.0"}, "ipv6": [{"address": "fe80::5054:ff:fe85:7be5", "prefix": "64", "scope": "link"}], "macaddress": "52:54:00:85:7b:e5", "module": "virtio_net", "mtu": 1500, "promisc": false, "type": "ether"}, "ansible_fips": false, "ansible_form_factor": "Other", "ansible_fqdn": "metrics4-node-compute-0e7b2.example.com", "ansible_hostname": "metrics4-node-compute-0e7b2", "ansible_interfaces": ["lo", "docker0", "eth0"], "ansible_kernel": "3.10.0-327.el7.x86_64", "ansible_lo": {"active": true, "device": "lo", "ipv4": {"address": "127.0.0.1", "netmask": "255.0.0.0", "network": "127.0.0.0"}, "ipv6": [{"address": "::1", "prefix": "128", "scope": "host"}], "mtu": 65536, "promisc": false, "type": "loopback"}, "ansible_local": {"openshift": {"common": {"cluster_id": "metrics4", "debug_level": "2", "deployment_type": "origin", "docker_additional_registries": [""], "docker_blocked_registries": [""], "docker_insecure_registries": [""], "install_examples": "True"}, "node": {"labels": {"type": "compute"}}}}, "ansible_machine": "x86_64", "ansible_machine_id": "cf9b563caf2bc11cab56d6a504ff6a29", "ansible_memfree_mb": 335, "ansible_memory_mb": {"nocache": {"free": 806, "used": 186}, "real": {"free": 335, "total": 992, "used": 657}, "swap": {"cached": 0, "free": 0, "total": 0, "used": 0}}, "ansible_memtotal_mb": 992, "ansible_mounts": [{"device": "/dev/vda1", "fstype": "xfs", "mount": "/", "options": "rw,seclabel,relatime,attr2,inode64,noquota", "size_available": 8995008512, "size_total": 10722455552, "uuid": "fc1bfc5d-a5d1-4c3c-afda-167500654723"}], "ansible_nodename": "metrics4-node-compute-0e7b2", "ansible_os_family": "RedHat", "ansible_pkg_mgr": "yum", "ansible_processor": ["GenuineIntel", "QEMU Virtual CPU version 2.4.1", "GenuineIntel", "QEMU Virtual CPU version 2.4.1"], "ansible_processor_cores": 1, "ansible_processor_count": 2, "ansible_processor_threads_per_core": 1, "ansible_processor_vcpus": 2, "ansible_product_name": "Standard PC (i440FX + PIIX, 1996)", "ansible_product_serial": "NA", "ansible_product_uuid": "38F111F4-CBD2-224F-B486-ABA621DB71E8", "ansible_product_version": "pc-i440fx-2.4", "ansible_python_version": "2.7.5", "ansible_selinux": {"config_mode": "enforcing", "mode": "enforcing", "policyvers": 28, "status": "enabled", "type": "targeted"}, "ansible_ssh_host": "192.168.55.136", "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOed+0bp70yX4FZdNcsT38AmjViMNhqa3ek85umd89xPMTUOSaM2IqZdyo4sTdp5gXgI89I5BamW668pD6DGenA=", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQDZBwMXmOA0AuKopZxTBP+6GWMs1F7fZ68U2u/uX26t1eRgG7Gm1opSqZ3wIQEwYEDhwfDdJm1jgqyrXYsHWCMFEMPWRSq6eVhlCKo0vW8ZzWGapixzIr79EvLci7d6b+BFhqYlz3gPnhGzp60uvfAuhtO+rlXnPoztj7H1j8R2BunNg8ReETiwVWIsBVPt5k1YU8iqsepJHy/dcvCwh/MfG3blrA0A+hmQd1EaXdrIBSrGdc+Vz52gFwaEj2kfPvnKIDmPQ3UdxIcAWwouYQvHrhvyENTZ8PV4EqZWxXd2ZBQJsFuwO3BRQ4ItCs1TunIcLb0x3fh4Dx+e4QRw5EhN", "ansible_ssh_user": "openshift", "ansible_sudo": "True", "ansible_swapfree_mb": 0, "ansible_swaptotal_mb": 0, "ansible_system": "Linux", "ansible_system_vendor": "QEMU", "ansible_user_dir": "/root", "ansible_user_gecos": "root", "ansible_user_gid": 0, "ansible_user_id": "root", "ansible_user_shell": "/bin/bash", "ansible_user_uid": 0, "ansible_userspace_architecture": "x86_64", "ansible_userspace_bits": "64", "ansible_virtualization_role": "guest", "ansible_virtualization_type": "kvm", "certs_missing": [false], "config_dir": "/etc/origin/generated-configs/node-metrics4-node-compute-0e7b2.example.com", "docker_check": {"changed": false, "invocation": {"module_args": "path=/etc/sysconfig/docker", "module_complex_args": {}, "module_name": "stat"}, "stat": {"atime": 1458035783.5634332, "checksum": "fa349b8ee2f625de4dd125134249c9d52a2ddd84", "ctime": 1458035778.1114082, "dev": 64769, "exists": true, "gid": 0, "gr_name": "root", "inode": 26556914, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "md5": "a18721a97fcebd4e465dea401b28dde6", "mode": "0644", "mtime": 1457644215.0, "nlink": 1, "path": "/etc/sysconfig/docker", "pw_name": "root", "rgrp": true, "roth": true, "rusr": true, "size": 1548, "uid": 0, "wgrp": false, "woth": false, "wusr": true, "xgrp": false, "xoth": false, "xusr": false}}, "docker_service_status_changed": "start_result | changed", "g_external_etcd_flannel_cert_stat_result": {"changed": false, "msg": "All items completed", "results": [{"changed": false, "skipped": true}, {"changed": false, "skipped": true}]}, "group_names": ["oo_hosts_to_update", "oo_nodes_to_config", "tag_clusterid-metrics4", "tag_environment-dev", "tag_host-type-node", "tag_sub-host-type-compute"], "install_result": {"changed": true, "msg": "All items completed", "results": [{"changed": false, "invocation": {"module_args": "name=iptables state=present", "module_complex_args": {}, "module_name": "yum"}, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}, {"changed": true, "invocation": {"module_args": "name=iptables-services state=present", "module_complex_args": {}, "module_name": "yum"}, "item": "iptables-services", "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.isoc.org.il\n * extras: mirror.isoc.org.il\n * updates: mirror.isoc.org.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n"]}]}, "inventory_hostname": "metrics4-node-compute-0e7b2", "inventory_hostname_short": "metrics4-node-compute-0e7b2", "l_is_atomic": "False", "l_is_containerized": "False", "lookupip": {"changed": false, "cmd": "getent ahostsv4 metrics4-node-compute-0e7b2.example.com | head -n 1 | awk '{ print $1 }'", "delta": "0:00:00.018813", "end": "2016-03-15 09:53:00.457178", "failed": false, "failed_when_result": false, "invocation": {"module_args": "getent ahostsv4 metrics4-node-compute-0e7b2.example.com | head -n 1 | awk '{ print $1 }'", "module_complex_args": {}, "module_name": "shell"}, "rc": 0, "start": "2016-03-15 09:53:00.438365", "stderr": "", "stdout": "192.168.55.136", "stdout_lines": ["192.168.55.136"], "warnings": []}, "module_setup": true, "node_cert_dir": "/etc/origin/node", "node_subdir": "node-metrics4-node-compute-0e7b2.example.com", "openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-compute-0e7b2.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["metrics4-node-compute-0e7b2.example.com", "192.168.55.136"], "ip": "192.168.55.136", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-compute-0e7b2.example.com", "public_ip": "192.168.55.136", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {"type": "compute"}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}, "openshift_node_debug_level": "2", "openshift_node_labels": {"type": "compute"}, "openshift_pool_id": {"changed": false, "skipped": true}, "ostree_output": {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.004572", "end": "2016-03-15 09:59:08.302957", "failed": false, "failed_when_result": false, "invocation": {"module_args": "ls /run/ostree-booted", "module_complex_args": {}, "module_name": "shell"}, "rc": 2, "start": "2016-03-15 09:59:08.298385", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}, "pkg_check": {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.074054", "end": "2016-03-15 09:53:07.508279", "failed": false, "failed_when_result": false, "invocation": {"module_args": "rpm -q firewalld", "module_complex_args": {}, "module_name": "command"}, "rc": 1, "start": "2016-03-15 09:53:07.434225", "stderr": "", "stdout": "package firewalld is not installed", "stdout_lines": ["package firewalld is not installed"], "warnings": ["Consider using yum module rather than running rpm"]}, "result": {"changed": true, "enabled": true, "invocation": {"module_args": "", "module_complex_args": {"enabled": true, "name": "iptables", "state": "started"}, "module_name": "service"}, "name": "iptables", "state": "started"}, "set_hostname_default": "False", "start_result": {"changed": true, "enabled": true, "invocation": {"module_args": "", "module_complex_args": {"enabled": true, "name": "docker", "state": "started"}, "module_name": "service"}, "name": "docker", "state": "started"}, "stat_result": {"changed": false, "msg": "All items completed", "results": [{"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/system:node:metrics4-node-compute-0e7b2.example.com.crt"}, "module_name": "stat"}, "item": "system:node:metrics4-node-compute-0e7b2.example.com.crt", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/system:node:metrics4-node-compute-0e7b2.example.com.key"}, "module_name": "stat"}, "item": "system:node:metrics4-node-compute-0e7b2.example.com.key", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/system:node:metrics4-node-compute-0e7b2.example.com.kubeconfig"}, "module_name": "stat"}, "item": "system:node:metrics4-node-compute-0e7b2.example.com.kubeconfig", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/ca.crt"}, "module_name": "stat"}, "item": "ca.crt", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/server.key"}, "module_name": "stat"}, "item": "server.key", "stat": {"exists": false}}, {"changed": false, "invocation": {"module_args": "", "module_complex_args": {"path": "/etc/origin/node/server.crt"}, "module_name": "stat"}, "item": "server.crt", "stat": {"exists": false}}]}, "udevw_override_conf": {"changed": false, "skipped": true}, "udevw_udev_start_cmd": {"changed": false, "skipped": true}}, "rc": 0, "start": "2016-03-15 09:59:25.154559", "stderr": "", "stdout": "", "warnings": []}
2016-03-15 11:59:27,346 p=8050 u=bpaskinc |  changed: [metrics4-master-d780a] => (item={u'ansible_processor_count': 2, u'ansible_product_version': u'pc-i440fx-2.4', 'docker_check': {'invocation': {'module_name': u'stat', 'module_complex_args': {}, 'module_args': u'path=/etc/sysconfig/docker'}, u'stat': {u'uid': 0, u'exists': True, u'woth': False, u'mtime': 1457644215.0, u'inode': 26572881, u'isgid': False, u'size': 1548, u'roth': True, u'isuid': False, u'isreg': True, u'pw_name': u'root', u'gid': 0, u'ischr': False, u'wusr': True, u'xoth': False, u'islnk': False, u'nlink': 1, u'issock': False, u'rgrp': True, u'gr_name': u'root', u'path': u'/etc/sysconfig/docker', u'xusr': False, u'atime': 1458035783.5258338, u'md5': u'a18721a97fcebd4e465dea401b28dde6', u'isdir': False, u'ctime': 1458035758.2328038, u'isblk': False, u'xgrp': False, u'dev': 64769, u'wgrp': False, u'isfifo': False, u'mode': u'0644', u'checksum': u'fa349b8ee2f625de4dd125134249c9d52a2ddd84', u'rusr': True}, u'changed': False}, 'module_setup': True, u'ansible_memtotal_mb': 992, 'config_dir': u'/etc/origin/generated-configs/node-metrics4-node-infra-48f49.example.com', 'start_result': {'invocation': {'module_name': u'service', 'module_complex_args': {'state': 'started', 'enabled': True, 'name': 'docker'}, 'module_args': ''}, u'state': u'started', u'changed': True, u'enabled': True, u'name': u'docker'}, u'ansible_distribution_version': u'7.2.1511', u'ansible_virtualization_role': u'guest', 'ansible_ssh_host': u'192.168.55.171', u'ansible_env': {u'USERNAME': u'root', u'SUDO_UID': u'1000', u'LC_CTYPE': u'en_US.UTF-8', u'LOGNAME': u'root', u'USER': u'root', u'HOME': u'/root', u'PATH': u'/sbin:/bin:/usr/sbin:/usr/bin', u'_': u'/usr/bin/python', u'LANG': u'en_US.UTF-8', u'SUDO_COMMAND': u'/bin/sh -c echo BECOME-SUCCESS-styhopdpsmrnenmoibfffrzndovakwmg; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /home/openshift/.ansible/tmp/ansible-tmp-1458035960.42-232222502858782/setup; rm -rf /home/openshift/.ansible/tmp/ansible-tmp-1458035960.42-232222502858782/ >/dev/null 2>&1', u'SUDO_GID': u'1000', u'SHELL': u'/bin/bash', u'SHLVL': u'1', u'TERM': u'xterm-256color', u'PWD': u'/home/openshift', u'MAIL': u'/var/mail/openshift', u'SUDO_USER': u'openshift'}, u'ansible_lo': {u'active': True, u'promisc': False, u'ipv4': {u'netmask': u'255.0.0.0', u'network': u'127.0.0.0', u'address': u'127.0.0.1'}, u'ipv6': [{u'scope': u'host', u'prefix': u'128', u'address': u'::1'}], u'device': u'lo', u'type': u'loopback', u'mtu': 65536}, u'ansible_userspace_bits': u'64', u'ansible_architecture': u'x86_64', 'ostree_output': {u'cmd': u'ls /run/ostree-booted', u'end': u'2016-03-15 09:59:08.186492', 'failed': False, u'stdout': u'', u'changed': False, u'rc': 2, u'start': u'2016-03-15 09:59:08.174422', u'warnings': [], u'delta': u'0:00:00.012070', 'invocation': {'module_name': u'shell', 'module_complex_args': {}, 'module_args': u'ls /run/ostree-booted'}, 'stdout_lines': [], 'failed_when_result': False, u'stderr': u'ls: cannot access /run/ostree-booted: No such file or directory'}, u'ansible_default_ipv4': {u'macaddress': u'52:54:00:9c:66:03', u'network': u'192.168.55.0', u'mtu': 1500, u'alias': u'eth0', u'netmask': u'255.255.255.0', u'address': u'192.168.55.171', u'interface': u'eth0', u'type': u'ether', u'gateway': u'192.168.55.1'}, u'ansible_swapfree_mb': 0, u'ansible_default_ipv6': {}, u'ansible_distribution_release': u'Core', 'group_names': ['oo_hosts_to_update', 'oo_nodes_to_config', u'tag_clusterid-metrics4', u'tag_environment-dev', u'tag_host-type-node', u'tag_sub-host-type-infra'], u'ansible_cmdline': {u'LANG': u'en_US.UTF-8', u'BOOT_IMAGE': u'/boot/vmlinuz-3.10.0-327.el7.x86_64', u'crashkernel': u'auto', u'console': u'ttyS0,115200', u'ro': True, u'root': u'UUID=fc1bfc5d-a5d1-4c3c-afda-167500654723'}, u'ansible_selinux': {u'status': u'enabled', u'policyvers': 28, u'type': u'targeted', u'mode': u'enforcing', u'config_mode': u'enforcing'}, u'ansible_userspace_architecture': u'x86_64', 'certs_missing': [False], u'ansible_product_uuid': u'74FAA857-0408-834D-863A-646DB4952ED4', u'ansible_pkg_mgr': u'yum', u'ansible_memfree_mb': 324, u'ansible_memory_mb': {u'real': {u'total': 992, u'free': 324, u'used': 668}, u'swap': {u'cached': 0, u'total': 0, u'used': 0, u'free': 0}, u'nocache': {u'used': 189, u'free': 803}}, u'ansible_distribution': u'CentOS', 'set_hostname_default': u'False', 'node_subdir': u'node-metrics4-node-infra-48f49.example.com', u'ansible_user_dir': u'/root', 'openshift_node_labels': {'type': u'infra'}, u'ansible_hostname': u'metrics4-node-infra-48f49', u'ansible_all_ipv6_addresses': [u'fe80::5054:ff:fe9c:6603'], u'ansible_interfaces': [u'lo', u'docker0', u'eth0'], u'ansible_machine_id': u'cf9b563caf2bc11cab56d6a504ff6a29', u'ansible_kernel': u'3.10.0-327.el7.x86_64', 'l_is_containerized': u'False', 'g_external_etcd_flannel_cert_stat_result': {'msg': 'All items completed', 'changed': False, 'results': [{u'skipped': True, u'changed': False}, {u'skipped': True, u'changed': False}]}, u'ansible_system': u'Linux', u'ansible_fqdn': u'metrics4-node-infra-48f49.example.com', u'ansible_user_gid': 0, 'openshift_node_debug_level': u'2', u'ansible_user_shell': u'/bin/bash', u'ansible_nodename': u'metrics4-node-infra-48f49', u'ansible_product_serial': u'NA', u'ansible_form_factor': u'Other', u'ansible_fips': False, u'ansible_user_id': u'root', 'udevw_udev_start_cmd': {u'skipped': True, u'changed': False}, 'result': {'invocation': {'module_name': u'service', 'module_complex_args': {'state': 'started', 'enabled': True, 'name': 'iptables'}, 'module_args': ''}, u'state': u'started', u'changed': True, u'enabled': True, u'name': u'iptables'}, u'ansible_domain': u'example.com', u'ansible_local': {u'openshift': {u'node': {u'labels': {u'type': u'infra'}}, u'common': {u'debug_level': u'2', u'docker_blocked_registries': [u''], u'cluster_id': u'metrics4', u'install_examples': u'True', u'deployment_type': u'origin', u'docker_additional_registries': [u''], u'docker_insecure_registries': [u'']}}}, 'ansible_sudo': u'True', u'ansible_processor_cores': 1, 'inventory_hostname': u'metrics4-node-infra-48f49', u'ansible_processor_vcpus': 2, u'ansible_docker0': {u'macaddress': u'02:42:01:2e:63:92', u'interfaces': [], u'mtu': 1500, u'active': False, u'promisc': False, u'stp': False, u'ipv4': {u'netmask': u'255.255.0.0', u'network': u'172.17.0.0', u'address': u'172.17.0.1'}, u'device': u'docker0', u'type': u'bridge', u'id': u'8000.0242012e6392'}, u'ansible_bios_version': u'1.8.2-20150714_191134-', u'ansible_processor': [u'GenuineIntel', u'QEMU Virtual CPU version 2.4.1', u'GenuineIntel', u'QEMU Virtual CPU version 2.4.1'], u'ansible_virtualization_type': u'kvm', u'ansible_ssh_host_key_ecdsa_public': u'AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMXHfsPvntBsfzpeJUkN+xZ1roYBy/Mh2dRd8TBPSGmWRBXcVeFk8KNXhVER7DdFP4DPw8Mxpopa1BsIwT6maLI=', 'install_result': {'msg': 'All items completed', 'changed': True, 'results': [{'item': 'iptables', u'rc': 0, 'invocation': {'module_name': u'yum', 'module_complex_args': {}, 'module_args': u'name=iptables state=present'}, u'changed': False, u'results': [u'iptables-1.4.21-16.el7.x86_64 providing iptables is already installed'], u'msg': u''}, {'item': 'iptables-services', u'rc': 0, 'invocation': {'module_name': u'yum', 'module_complex_args': {}, 'module_args': u'name=iptables-services state=present'}, u'changed': True, u'results': [u'Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.syn.co.il\n * extras: centos.syn.co.il\n * updates: centos.syn.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n'], u'msg': u''}]}, u'ansible_mounts': [{u'options': u'rw,seclabel,relatime,attr2,inode64,noquota', u'uuid': u'fc1bfc5d-a5d1-4c3c-afda-167500654723', u'size_total': 10722455552, u'device': u'/dev/vda1', u'mount': u'/', u'size_available': 8994942976, u'fstype': u'xfs'}], u'ansible_system_vendor': u'QEMU', u'ansible_os_family': u'RedHat', 'pkg_check': {u'cmd': [u'rpm', u'-q', u'firewalld'], u'end': u'2016-03-15 09:53:07.427385', 'failed': False, u'stdout': u'package firewalld is not installed', u'changed': False, u'rc': 1, u'start': u'2016-03-15 09:53:07.362145', u'warnings': [u'Consider using yum module rather than running rpm'], u'delta': u'0:00:00.065240', 'invocation': {'module_name': u'command', 'module_complex_args': {}, 'module_args': u'rpm -q firewalld'}, 'stdout_lines': [u'package firewalld is not installed'], 'failed_when_result': False, u'stderr': u''}, u'openshift': {u'node': {u'node_image': u'openshift/node', u'schedulable': True, u'sdn_mtu': u'1450', u'labels': {u'type': u'infra'}, u'iptables_sync_period': u'5s', u'portal_net': u'172.30.0.0/16', u'storage_plugin_deps': [u'ceph', u'glusterfs', u'iscsi'], u'set_node_ip': False, u'ovs_image': u'openshift/openvswitch', u'annotations': {}, u'registry_url': u'openshift/origin-${component}:${version}'}, u'common': {u'ip': u'192.168.55.171', u'dns_domain': u'cluster.local', u'docker_insecure_registries': [], u'public_ip': u'192.168.55.171', u'sdn_network_plugin_name': u'redhat/openshift-ovs-subnet', u'cluster_id': u'metrics4', u'public_hostname': u'metrics4-node-infra-48f49.example.com', u'use_manageiq': True, u'internal_hostnames': [u'192.168.55.171', u'metrics4-node-infra-48f49.example.com'], u'data_dir': u'/var/lib/origin', u'use_nuage': False, u'hostname': u'metrics4-node-infra-48f49.example.com', u'version_gte_3_1_1_or_1_1_1': True, u'version': u'1.1.3', u'use_cluster_metrics_hawkular': False, u'service_type': u'origin', u'version_gte_3_2_or_1_2': False, u'cli_image': u'openshift/origin', u'deployment_type': u'origin', u'config_base': u'/etc/origin', u'admin_binary': u'oadm', u'all_hostnames': [u'192.168.55.171', u'metrics4-node-infra-48f49.example.com'], u'is_containerized': False, u'docker_blocked_registries': [], u'is_atomic': False, u'version_gte_3_1_or_1_1': True, u'examples_content_version': u'v1.1', u'debug_level': u'2', u'install_examples': u'True', u'client_binary': u'oc', u'docker_additional_registries': [], u'installed_variant_rpms': [u'origin', u'origin-clients'], u'use_openshift_sdn': True, u'use_flannel': False, u'use_cluster_metrics': False}, u'current_config': {u'roles': [u'node', u'hosted']}, u'hosted': {u'registry': {u'storage': {u'volume': {u'name': u'registry', u'size': u'5Gi'}, u'kind': None, u'nfs': {u'directory': u'/exports', u'options': u'*(rw,root_squash)'}, u'create_pv': True, u'host': None, u'access_modes': [u'ReadWriteMany']}}}}, 'stat_result': {'msg': 'All items completed', 'changed': False, 'results': [{'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-infra-48f49.example.com.crt'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-infra-48f49.example.com.crt', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-infra-48f49.example.com.key'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-infra-48f49.example.com.key', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/system:node:metrics4-node-infra-48f49.example.com.kubeconfig'}, 'module_args': ''}, 'item': u'system:node:metrics4-node-infra-48f49.example.com.kubeconfig', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/ca.crt'}, 'module_args': ''}, 'item': 'ca.crt', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/server.key'}, 'module_args': ''}, 'item': 'server.key', u'stat': {u'exists': False}, u'changed': False}, {'invocation': {'module_name': u'stat', 'module_complex_args': {'path': u'/etc/origin/node/server.crt'}, 'module_args': ''}, 'item': 'server.crt', u'stat': {u'exists': False}, u'changed': False}]}, u'ansible_swaptotal_mb': 0, 'lookupip': {u'cmd': u"getent ahostsv4 metrics4-node-infra-48f49.example.com | head -n 1 | awk '{ print $1 }'", u'end': u'2016-03-15 09:53:00.475709', 'failed': False, u'stdout': u'192.168.55.171', u'changed': False, u'rc': 0, u'start': u'2016-03-15 09:53:00.469125', u'warnings': [], u'delta': u'0:00:00.006584', 'invocation': {'module_name': u'shell', 'module_complex_args': {}, 'module_args': u"getent ahostsv4 metrics4-node-infra-48f49.example.com | head -n 1 | awk '{ print $1 }'"}, 'stdout_lines': [u'192.168.55.171'], 'failed_when_result': False, u'stderr': u''}, u'ansible_date_time': {u'tz': u'UTC', u'epoch': u'1458035960', u'hour': u'09', u'time': u'09:59:20', u'tz_offset': u'+0000', u'month': u'03', u'second': u'20', u'iso8601_micro': u'2016-03-15T09:59:20.801390Z', u'weekday': u'Tuesday', u'year': u'2016', u'date': u'2016-03-15', u'iso8601': u'2016-03-15T09:59:20Z', u'day': u'15', u'minute': u'59'}, 'docker_service_status_changed': 'start_result | changed', 'udevw_override_conf': {u'skipped': True, u'changed': False}, u'ansible_devices': {u'vda': {u'scheduler_mode': u'', u'sectorsize': u'512', u'vendor': u'0x1af4', u'sectors': u'20971520', u'host': u'', u'rotational': u'1', u'removable': u'0', u'support_discard': u'0', u'holders': [], u'size': u'10.00 GB', u'model': None, u'partitions': {u'vda1': {u'start': u'2048', u'sectorsize': 512, u'sectors': u'20962777', u'size': u'10.00 GB'}}}, u'vdb': {u'scheduler_mode': u'', u'sectorsize': u'512', u'vendor': u'0x1af4', u'sectors': u'736', u'host': u'', u'rotational': u'1', u'removable': u'0', u'support_discard': u'0', u'holders': [], u'size': u'368.00 KB', u'model': None, u'partitions': {}}}, u'ansible_user_uid': 0, 'l_is_atomic': u'False', u'ansible_distribution_major_version': u'7', u'ansible_bios_date': u'04/01/2014', 'inventory_hostname_short': u'metrics4-node-infra-48f49', u'ansible_machine': u'x86_64', u'ansible_ssh_host_key_rsa_public': u'AAAAB3NzaC1yc2EAAAADAQABAAABAQDdUUZ5nl9PsYI6xv3LFK3tCVf5gSqQ+OA6t8unDU1DdIXa7bzi8La4PSN2GakEpWC6Zr0yeJRCfQgEJ2yibqZ4Vu5G2cYZRtkWQMA7/oLlIiEmuUX9JkMaFWB/jA/ZE1KLUD64qTod0DZQkFExI5VnMv5rmRc+daamed/GYxyUyJalN/Pw87FChC0Td6kMSs5g9maZf++Gfqqm7ItwO6eh+wlaQDQJnNK6PHwgqRxaWJjtfwTnKOXqyzwqEPddxAiAD/LDR4dd5v3jQVeKjdHhS/zdso+QxuX/BkrqMlli/xd/yJKFjZZPnhNgvMYLLkunwiZFnaYjPWRd/uox96Pr', u'ansible_user_gecos': u'root', u'ansible_processor_threads_per_core': 1, 'ansible_ssh_user': u'openshift', u'ansible_eth0': {u'macaddress': u'52:54:00:9c:66:03', u'module': u'virtio_net', u'mtu': 1500, u'active': True, u'promisc': False, u'ipv4': {u'netmask': u'255.255.255.0', u'network': u'192.168.55.0', u'address': u'192.168.55.171'}, u'ipv6': [{u'scope': u'link', u'prefix': u'64', u'address': u'fe80::5054:ff:fe9c:6603'}], u'device': u'eth0', u'type': u'ether'}, 'openshift_pool_id': {u'skipped': True, u'changed': False}, u'ansible_product_name': u'Standard PC (i440FX + PIIX, 1996)', 'node_cert_dir': u'/etc/origin/node', u'ansible_all_ipv4_addresses': [u'192.168.55.171', u'172.17.0.1'], u'ansible_python_version': u'2.7.5'}) => {"changed": true, "cmd": ["oadm", "create-api-client-config", "--certificate-authority=/etc/origin/master/ca.crt", "--client-dir=/etc/origin/generated-configs/node-metrics4-node-infra-48f49.example.com", "--groups=system:nodes", "--master=https://metrics4-master-d780a.example.com:8443", "--signer-cert=/etc/origin/master/ca.crt", "--signer-key=/etc/origin/master/ca.key", "--signer-serial=/etc/origin/master/ca.serial.txt", "--user=system:node:metrics4-node-infra-48f49.example.com"], "delta": "0:00:01.050396", "end": "2016-03-15 09:59:27.338451", "item": {"ansible_all_ipv4_addresses": ["192.168.55.171", "172.17.0.1"], "ansible_all_ipv6_addresses": ["fe80::5054:ff:fe9c:6603"], "ansible_architecture": "x86_64", "ansible_bios_date": "04/01/2014", "ansible_bios_version": "1.8.2-20150714_191134-", "ansible_cmdline": {"BOOT_IMAGE": "/boot/vmlinuz-3.10.0-327.el7.x86_64", "LANG": "en_US.UTF-8", "console": "ttyS0,115200", "crashkernel": "auto", "ro": true, "root": "UUID=fc1bfc5d-a5d1-4c3c-afda-167500654723"}, "ansible_date_time": {"date": "2016-03-15", "day": "15", "epoch": "1458035960", "hour": "09", "iso8601": "2016-03-15T09:59:20Z", "iso8601_micro": "2016-03-15T09:59:20.801390Z", "minute": "59", "month": "03", "second": "20", "time": "09:59:20", "tz": "UTC", "tz_offset": "+0000", "weekday": "Tuesday", "year": "2016"}, "ansible_default_ipv4": {"address": "192.168.55.171", "alias": "eth0", "gateway": "192.168.55.1", "interface": "eth0", "macaddress": "52:54:00:9c:66:03", "mtu": 1500, "netmask": "255.255.255.0", "network": "192.168.55.0", "type": "ether"}, "ansible_default_ipv6": {}, "ansible_devices": {"vda": {"holders": [], "host": "", "model": null, "partitions": {"vda1": {"sectors": "20962777", "sectorsize": 512, "size": "10.00 GB", "start": "2048"}}, "removable": "0", "rotational": "1", "scheduler_mode": "", "sectors": "20971520", "sectorsize": "512", "size": "10.00 GB", "support_discard": "0", "vendor": "0x1af4"}, "vdb": {"holders": [], "host": "", "model": null, "partitions": {}, "removable": "0", "rotational": "1", "scheduler_mode": "", "sectors": "736", "sectorsize": "512", "size": "368.00 KB", "support_discard": "0", "vendor": "0x1af4"}}, "ansible_distribution": "CentOS", "ansible_distribution_major_version": "7", "ansible_distribution_release": "Core", "ansible_distribution_version": "7.2.1511", "ansible_docker0": {"active": false, "device": "docker0", "id": "8000.0242012e6392", "interfaces": [], "ipv4": {"address": "172.17.0.1", "netmask": "255.255.0.0", "network": "172.17.0.0"}, "macaddress": "02:42:01:2e:63:92", "mtu": 1500, "promisc": false, "stp": false, "type": "bridge"}, "ansible_domain": "example.com", "ansible_env": {"HOME": "/root", "LANG": "en_US.UTF-8", "LC_CTYPE": "en_US.UTF-8", "LOGNAME": "root", "MAIL": "/var/mail/openshift", "PATH": "/sbin:/bin:/usr/sbin:/usr/bin", "PWD": "/home/openshift", "SHELL": "/bin/bash", "SHLVL": "1", "SUDO_COMMAND": "/bin/sh -c echo BECOME-SUCCESS-styhopdpsmrnenmoibfffrzndovakwmg; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /home/openshift/.ansible/tmp/ansible-tmp-1458035960.42-232222502858782/setup; rm -rf /home/openshift/.ansible/tmp/ansible-tmp-1458035960.42-232222502858782/ >/dev/null 2>&1", "SUDO_GID": "1000", "SUDO_UID": "1000", "SUDO_USER": "openshift", "TERM": "xterm-256color", "USER": "root", "USERNAME": "root", "_": "/usr/bin/python"}, "ansible_eth0": {"active": true, "device": "eth0", "ipv4": {"address": "192.168.55.171", "netmask": "255.255.255.0", "network": "192.168.55.0"}, "ipv6": [{"address": "fe80::5054:ff:fe9c:6603", "prefix": "64", "scope": "link"}], "macaddress": "52:54:00:9c:66:03", "module": "virtio_net", "mtu": 1500, "promisc": false, "type": "ether"}, "ansible_fips": false, "ansible_form_factor": "Other", "ansible_fqdn": "metrics4-node-infra-48f49.example.com", "ansible_hostname": "metrics4-node-infra-48f49", "ansible_interfaces": ["lo", "docker0", "eth0"], "ansible_kernel": "3.10.0-327.el7.x86_64", "ansible_lo": {"active": true, "device": "lo", "ipv4": {"address": "127.0.0.1", "netmask": "255.0.0.0", "network": "127.0.0.0"}, "ipv6": [{"address": "::1", "prefix": "128", "scope": "host"}], "mtu": 65536, "promisc": false, "type": "loopback"}, "ansible_local": {"openshift": {"common": {"cluster_id": "metrics4", "debug_level": "2", "deployment_type": "origin", "docker_additional_registries": [""], "docker_blocked_registries": [""], "docker_insecure_registries": [""], "install_examples": "True"}, "node": {"labels": {"type": "infra"}}}}, "ansible_machine": "x86_64", "ansible_machine_id": "cf9b563caf2bc11cab56d6a504ff6a29", "ansible_memfree_mb": 324, "ansible_memory_mb": {"nocache": {"free": 803, "used": 189}, "real": {"free": 324, "total": 992, "used": 668}, "swap": {"cached": 0, "free": 0, "total": 0, "used": 0}}, "ansible_memtotal_mb": 992, "ansible_mounts": [{"device": "/dev/vda1", "fstype": "xfs", "mount": "/", "options": "rw,seclabel,relatime,attr2,inode64,noquota", "size_available": 8994942976, "size_total": 10722455552, "uuid": "fc1bfc5d-a5d1-4c3c-afda-167500654723"}], "ansible_nodename": "metrics4-node-infra-48f49", "ansible_os_family": "RedHat", "ansible_pkg_mgr": "yum", "ansible_processor": ["GenuineIntel", "QEMU Virtual CPU version 2.4.1", "GenuineIntel", "QEMU Virtual CPU version 2.4.1"], "ansible_processor_cores": 1, "ansible_processor_count": 2, "ansible_processor_threads_per_core": 1, "ansible_processor_vcpus": 2, "ansible_product_name": "Standard PC (i440FX + PIIX, 1996)", "ansible_product_serial": "NA", "ansible_product_uuid": "74FAA857-0408-834D-863A-646DB4952ED4", "ansible_product_version": "pc-i440fx-2.4", "ansible_python_version": "2.7.5", "ansible_selinux": {"config_mode": "enforcing", "mode": "enforcing", "policyvers": 28, "status": "enabled", "type": "targeted"}, "ansible_ssh_host": "192.168.55.171", "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMXHfsPvntBsfzpeJUkN+xZ1roYBy/Mh2dRd8TBPSGmWRBXcVeFk8KNXhVER7DdFP4DPw8Mxpopa1BsIwT6maLI=", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQDdUUZ5nl9PsYI6xv3LFK3tCVf5gSqQ+OA6t8unDU1DdIXa7bzi8La4PSN2GakEpWC6Zr0yeJRCfQgEJ2yibqZ4Vu5G2cYZRtkWQMA7/oLlIiEmuUX9JkMaFWB/jA/ZE1KLUD64qTod0DZQkFExI5VnMv5rmRc+daamed/GYxyUyJalN/Pw87FChC0Td6kMSs5g9maZf++Gfqqm7ItwO6eh+wlaQDQJnNK6PHwgqRxaWJjtfwTnKOXqyzwqEPddxAiAD/LDR4dd5v3jQVeKjdHhS/zdso+QxuX/BkrqMlli/xd/yJKFjZZPnhNgvMYLLkunwiZFnaYjPWRd/uox96Pr", "ansible_ssh_user": "openshift", "ansible_sudo": "True", "ansible_swapfree_mb": 0, "ansible_swaptotal_mb": 0, "ansible_system": "Linux", "ansible_system_vendor": "QEMU", "ansible_user_dir": "/root", "ansible_user_gecos": "root", "ansible_user_gid": 0, "ansible_user_id": "root", "ansible_user_shell": "/bin/bash", "ansible_user_uid": 0, "ansible_userspace_architecture": "x86_64", "ansible_userspace_bits": "64", "ansible_virtualization_role": "guest", "ansible_virtualization_type": "kvm", "certs_missing": [false], "config_dir": "/etc/origin/generated-configs/node-metrics4-node-infra-48f49.example.com", "docker_check": {"changed": false, "invocation": {"module_args": "path=/etc/sysconfig/docker", "module_complex_args": {}, "module_name": "stat"}, "stat": {"atime": 1458035783.5258338, "checksum": "fa349b8ee2f625de4dd125134249c9d52a2ddd84", "ctime": 1458035758.2328038, "dev": 64769, "exists": true, "gid": 0, "gr_name": "root", "inode": 26572881, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "md5": "a18721a97fcebd4e465dea401b28dde6", "mode": "0644", "mtime": 1457644215.0, "nlink": 1, "path": "/etc/sysconfig/docker", "pw_name": "root", "rgrp": true, "roth": true, "rusr": true, "size": 1548, "uid": 0, "wgrp": false, "woth": false, "wusr": true, "xgrp": false, "xoth": false, "xusr": false}}, "docker_service_status_changed": "start_result | changed", "g_external_etcd_flannel_cert_stat_result": {"changed": false, "msg": "All items completed", "results": [{"changed": false, "skipped": true}, {"changed": false, "skipped": true}]}, "group_names": ["oo_hosts_to_update", "oo_nodes_to_config", "tag_clusterid-metrics4", "tag_environment-dev", "tag_host-type-node", "tag_sub-host-type-infra"], "install_result": {"changed": true, "msg": "All items completed", "results": [{"changed": false, "invocation": {"module_args": "name=iptables state=present", "module_complex_args": {}, "module_name": "yum"}, "item": "iptables", "msg": "", "rc": 0, "results": ["iptables-1.4.21-16.el7.x86_64 providing iptables is already installed"]}, {"changed": true, "invocation": {"module_args": "name=iptables-services state=present", "module_complex_args": {}, "module_name": "yum"}, "item": "iptables-services", "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: centos.syn.co.il\n * extras: centos.syn.co.il\n * updates: centos.syn.co.il\nResolving Dependencies\n--> Running transaction check\n---> Package iptables-services.x86_64 0:1.4.21-16.el7 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                  Arch          Version               Repository   Size\n================================================================================\nInstalling:\n iptables-services        x86_64        1.4.21-16.el7         base         50 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 50 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n  Verifying  : iptables-services-1.4.21-16.el7.x86_64                       1/1 \n\nInstalled:\n  iptables-services.x86_64 0:1.4.21-16.el7                                      \n\nComplete!\n"]}]}, "inventory_hostname": "metrics4-node-infra-48f49", "inventory_hostname_short": "metrics4-node-infra-48f49", "l_is_atomic": "False", "l_is_containerized": "False", "lookupip": {"changed": false, "cmd": "getent ahostsv4 metrics4-node-infra-48f49.example.com | head -n 1 | awk '{ print $1 }'", "delta": "0:00:00.006584", "end": "2016-03-15 09:53:00.475709", "failed": false, "failed_when_result": false, "invocation": {"module_args": "getent ahostsv4 metrics4-node-infra-48f49.example.com | head -n 1 | awk '{ print $1 }'", "module_complex_args": {}, "module_name": "shell"}, "rc": 0, "start": "2016-03-15 09:53:00.469125", "stderr": "", "stdout": "192.168.55.171", "stdout_lines": ["192.168.55.171"], "warnings": []}, "module_setup": true, "node_cert_dir": "/etc/origin/node", "node_subdir": "node-metrics4-node-infra-48f49.example.com", "openshift": {"common": {"admin_binary": "oadm", "all_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "cli_image": "openshift/origin", "client_binary": "oc", "cluster_id": "metrics4", "config_base": "/etc/origin", "data_dir": "/var/lib/origin", "debug_level": "2", "deployment_type": "origin", "dns_domain": "cluster.local", "docker_additional_registries": [], "docker_blocked_registries": [], "docker_insecure_registries": [], "examples_content_version": "v1.1", "hostname": "metrics4-node-infra-48f49.example.com", "install_examples": "True", "installed_variant_rpms": ["origin", "origin-clients"], "internal_hostnames": ["192.168.55.171", "metrics4-node-infra-48f49.example.com"], "ip": "192.168.55.171", "is_atomic": false, "is_containerized": false, "public_hostname": "metrics4-node-infra-48f49.example.com", "public_ip": "192.168.55.171", "sdn_network_plugin_name": "redhat/openshift-ovs-subnet", "service_type": "origin", "use_cluster_metrics": false, "use_cluster_metrics_hawkular": false, "use_flannel": false, "use_manageiq": true, "use_nuage": false, "use_openshift_sdn": true, "version": "1.1.3", "version_gte_3_1_1_or_1_1_1": true, "version_gte_3_1_or_1_1": true, "version_gte_3_2_or_1_2": false}, "current_config": {"roles": ["node", "hosted"]}, "hosted": {"registry": {"storage": {"access_modes": ["ReadWriteMany"], "create_pv": true, "host": null, "kind": null, "nfs": {"directory": "/exports", "options": "*(rw,root_squash)"}, "volume": {"name": "registry", "size": "5Gi"}}}}, "node": {"annotations": {}, "iptables_sync_period": "5s", "labels": {"type": "infra"}, "node_image": "openshift/node", "ovs_image": "openshift/openvswitch", "portal_net": "172.30.0.0/16", "registry_url": "openshift/origin-${component}:${version}", "schedulable": true, "sdn_mtu": "1450", "set_node_ip": false, "storage_plugin_deps": ["ceph", "glusterfs", "iscsi"]}}, "openshift_node_debug_level": "2", "openshift_node_labels": {"type": "infra"}, "openshift_pool_id": {"changed": false, "skipped": true}, "ostree_output": {"changed": false, "cmd": "ls /run/ostree-booted", "delta": "0:00:00.012070", "end": "2016-03-15 09:59:08.186492", "failed": false, "failed_when_result": false, "invocation": {"module_args": "ls /run/ostree-booted", "module_complex_args": {}, "module_name": "shell"}, "rc": 2, "start": "2016-03-15 09:59:08.174422", "stderr": "ls: cannot access /run/ostree-booted: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []}, "pkg_check": {"changed": false, "cmd": ["rpm", "-q", "firewalld"], "delta": "0:00:00.065240", "end": "2016-03-15 09:53:07.427385", "failed": false, "failed_when_result": false, "invocation": {"module_args": "rpm -q firewalld", "module_complex_args": {}, "modu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment