summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/templates
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2015-09-02 16:55:17 -0400
committerBrenton Leanhardt <bleanhar@redhat.com>2015-09-02 16:55:17 -0400
commit7d480fbab74ddc8f76279f32c1a64148e5844382 (patch)
treeb9dcfc1a501b3e11a5ad1a64156eb5ee0f426c9b /roles/openshift_node/templates
parent795a1d2c6a34d1ca3eb8e84325d9109d134e0a33 (diff)
parentc28aea2f19b6aea729f27b636e5318ac775addb6 (diff)
downloadopenshift-7d480fbab74ddc8f76279f32c1a64148e5844382.tar.gz
openshift-7d480fbab74ddc8f76279f32c1a64148e5844382.tar.bz2
openshift-7d480fbab74ddc8f76279f32c1a64148e5844382.tar.xz
openshift-7d480fbab74ddc8f76279f32c1a64148e5844382.zip
Merge pull request #544 from sdodson/serviceNetworkCIDR
Add serviceNetworkCIDR and SDN MTU config
Diffstat (limited to 'roles/openshift_node/templates')
-rw-r--r--roles/openshift_node/templates/node.yaml.v1.j27
1 files changed, 6 insertions, 1 deletions
diff --git a/roles/openshift_node/templates/node.yaml.v1.j2 b/roles/openshift_node/templates/node.yaml.v1.j2
index e176e7511..0f708fb55 100644
--- a/roles/openshift_node/templates/node.yaml.v1.j2
+++ b/roles/openshift_node/templates/node.yaml.v1.j2
@@ -13,6 +13,11 @@ kubeletArguments: {{ openshift.node.kubelet_args | to_json }}
{% endif %}
masterKubeConfig: system:node:{{ openshift.common.hostname }}.kubeconfig
networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
+# networkConfig struct introduced in origin 1.0.6 and OSE 3.0.2 which
+# deprecates networkPluginName above. The two should match.
+networkConfig:
+ mtu: {{ openshift.node.sdn_mtu }}
+ networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
nodeName: {{ openshift.common.hostname }}
podManifestConfig:
servingInfo:
@@ -21,4 +26,4 @@ servingInfo:
clientCA: ca.crt
keyFile: server.key
volumeDirectory: {{ openshift_data_dir }}/openshift.local.volumes
-{% include 'partials/kubeletArguments.j2' %} \ No newline at end of file
+{% include 'partials/kubeletArguments.j2' %}