I am attempting to use the openshift-ansible installer for 3.10 to deploy
openshift on 1 master and 3 minions. I am using the same inventory I have
been using for 3.9 with the changes shown below. I'm consistently hitting a
problem with the control plane pods not appearing. Looking in to it, it
seems that the cni plugin is not being configured properly. From systemctl
status origin-node, I see the following:

E0911 06:19:25.821170   18922 kubelet.go:2143] Container runtime network
not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker:
network plugin is not ready: cni config uninitialized

Is there something I need to add to my 3.10 inventory to address this? Are
there other workarounds?

- openshift_release=v3.9.0
+ openshift_release=v3.10.0

- openshift_image_tag=v3.9.0
- openshift_image_tag=v3.10.0
+ openshift_pkg_version=-3.10.0
+ openshift_pkg_version=-3.9.0

- openshift_metrics_image_version=v3.9
+ openshift_metrics_image_version=v3.10

- [masters]
- <master fqdn> openshift_node_labels="{'node-role.kubernetes.io/master':
'true', 'node-role.kubernetes.io/infra': 'true'}" openshift_schedulable=true

+ [masters]
+ <master fqdn>

+ [masters:vars]
+ #openshift_node_group_name="node-config-master"
+ openshift_node_group_name="node-config-master-infra"
+ openshift_schedulable=true

- [compute-nodes]
- <minion1 fqdn> openshift_node_labels="{'node-role.kubernetes.io/compute':
'true'}" openshift_schedulable=true
- <minion2 fqdn> openshift_node_labels="{'node-role.kubernetes.io/compute':
'true'}" openshift_schedulable=true
- <minion3 fqdn> openshift_node_labels="{'node-role.kubernetes.io/compute':
'true'}" openshift_schedulable=true

+ [compute-nodes]
+ <minion1 fqdn>
+ <minion2 fqdn>
+ <minion3 fqdn>

+ [compute-nodes:vars]
+ openshift_node_group_name="node-config-compute"
+ openshift_schedulable=true
_______________________________________________
users mailing list
[email protected]
http://lists.openshift.redhat.com/openshiftmm/listinfo/users

Reply via email to