node.yaml.v1.j2 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. allowDisabledDocker: false
  2. apiVersion: v1
  3. dnsDomain: {{ openshift.common.dns_domain }}
  4. {% if 'dns_ip' in openshift.common %}
  5. dnsIP: {{ openshift.common.dns_ip }}
  6. {% endif %}
  7. dockerConfig:
  8. execHandlerName: ""
  9. iptablesSyncPeriod: "{{ openshift.node.iptables_sync_period }}"
  10. imageConfig:
  11. format: {{ openshift.node.registry_url }}
  12. latest: false
  13. kind: NodeConfig
  14. {% if openshift.node.kubelet_args is defined and openshift.node.kubelet_args %}
  15. kubeletArguments: {{ openshift.node.kubelet_args | to_json }}
  16. {% endif %}
  17. masterKubeConfig: system:node:{{ openshift.common.hostname }}.kubeconfig
  18. {% if openshift.common.use_openshift_sdn %}
  19. networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
  20. {% endif %}
  21. # networkConfig struct introduced in origin 1.0.6 and OSE 3.0.2 which
  22. # deprecates networkPluginName above. The two should match.
  23. networkConfig:
  24. mtu: {{ openshift.node.sdn_mtu }}
  25. {% if openshift.common.use_openshift_sdn or openshift.common.use_nuage %}
  26. networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
  27. {% endif %}
  28. {% if openshift.node.set_node_ip | bool %}
  29. nodeIP: {{ openshift.common.ip }}
  30. {% endif %}
  31. nodeName: {{ openshift.common.hostname | lower }}
  32. podManifestConfig:
  33. servingInfo:
  34. bindAddress: 0.0.0.0:10250
  35. certFile: server.crt
  36. clientCA: ca.crt
  37. keyFile: server.key
  38. volumeDirectory: {{ openshift.common.data_dir }}/openshift.local.volumes
  39. {% include 'partials/kubeletArguments.j2' %}