Good Day,
Deploying Openshift Origin via Ansible and get the following errors :
FAILED - RETRYING: TASK: openshift_metrics : Wait for image pull and deployer pod (8 retries left).
FAILED - RETRYING: TASK: openshift_hosted_logging : Wait for image pull and deployer pod (8 retries left).
My setup :
CentOS Linux release 7.2.1511 (Core)
docker-1.10.3-46.el7.centos.14.x86_64
ansible-2.1.2.0-1.el7.noarch
My hosts file :
[OSEv3:children]
masters
nodes
etcd
nfs
[OSEv3:vars]
ansible_ssh_user=root
deployment_type=origin
openshift_master_default_subdomain=openshift.some.domain
openshift_master_identity_providers=[{‘name’: ‘htpasswd_auth’, ‘login’: ‘true’, ‘challenge’: ‘true’, ‘kind’: ‘HTPasswdPasswordIdentityProvider’, ‘filename’: ‘/etc/origin/master/htpasswd’}]
openshift_hosted_registry_storage_kind=nfs
openshift_hosted_registry_storage_access_modes=[‘ReadWriteMany’]
openshift_hosted_registry_storage_host=os-nfs.some.domain
openshift_hosted_registry_storage_nfs_directory=/exports
openshift_hosted_registry_storage_volume_name=registry
openshift_hosted_registry_storage_volume_size=9Gi
openshift_hosted_metrics_deploy=true
openshift_hosted_metrics_storage_kind=nfs
openshift_hosted_metrics_storage_access_modes=[‘ReadWriteOnce’]
openshift_hosted_metrics_storage_host=os-nfs.some.domain
openshift_hosted_metrics_storage_nfs_directory=/exports
openshift_hosted_metrics_storage_volume_name=metrics
openshift_hosted_metrics_storage_volume_size=9Gi
openshift_hosted_logging_deploy=true
openshift_hosted_logging_storage_kind=nfs
openshift_hosted_logging_storage_access_modes=[‘ReadWriteOnce’]
openshift_hosted_logging_storage_host=os-nfs.some.domain
openshift_hosted_logging_storage_nfs_directory=/exports
openshift_hosted_logging_storage_volume_name=logging
openshift_hosted_logging_storage_volume_size=9Gi
[masters]
os-master.some.domain
[nfs]
os-nfs.some.domain
[etcd]
os-master.some.domain
[nodes]
os-master.some.domain openshift_node_labels=“{‘region’: ‘infra’, ‘zone’: ‘default’}” openshift_schedulable=true
os-node1.some.domain openshift_node_labels=“{‘region’: ‘primary’, ‘zone’: ‘east’}”
os-node2.some.domain openshift_node_labels=“{‘region’: ‘primary’, ‘zone’: ‘west’}”
Please let me know if this is not for this forum but rather openshift or docker … ?
Regards