Browse Source

cri-o: configure the CNI network

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Giuseppe Scrivano 7 years ago
parent
commit
31e708a5d4

+ 10 - 0
roles/docker/tasks/systemcontainer_crio.yml

@@ -125,6 +125,16 @@
     src: crio.conf.j2
     backup: yes
 
+- name: Ensure CNI configuration directory exists
+  file:
+    path: /etc/cni/net.d/
+    state: directory
+
+- name: Configure the CNI network
+  template:
+    dest: /etc/cni/net.d/openshift-sdn.conf
+    src: 80-openshift-sdn.conf.j2
+
 - name: Start the CRI-O service
   systemd:
     name: "cri-o"

+ 5 - 0
roles/docker/templates/80-openshift-sdn.conf.j2

@@ -0,0 +1,5 @@
+{
+  "cniVersion": "0.1.0",
+  "name": "openshift-sdn",
+  "type": "openshift-sdn"
+}