node.yaml.v1.j2 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. allowDisabledDocker: false
  2. apiVersion: v1
  3. dnsDomain: {{ openshift.common.dns_domain }}
  4. {% if 'dns_ip' in openshift.node %}
  5. dnsIP: {{ openshift.node.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. kubeletArguments: {{ openshift.node.kubelet_args | default(None) | to_padded_yaml(level=1) }}
  15. masterKubeConfig: system:node:{{ openshift.common.hostname }}.kubeconfig
  16. {% if openshift.common.use_openshift_sdn | bool and not openshift.common.version_gte_3_3_or_1_3 | bool %}
  17. networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
  18. {% endif %}
  19. # networkConfig struct introduced in origin 1.0.6 and OSE 3.0.2 which
  20. # deprecates networkPluginName above. The two should match.
  21. networkConfig:
  22. mtu: {{ openshift.node.sdn_mtu }}
  23. {% if ( openshift.common.use_openshift_sdn | bool or openshift.common.use_nuage | bool ) and not openshift.common.version_gte_3_3_or_1_3 | bool%}
  24. networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
  25. {% endif %}
  26. {% if openshift.node.set_node_ip | bool %}
  27. nodeIP: {{ openshift.common.ip }}
  28. {% endif %}
  29. nodeName: {{ openshift.common.hostname | lower }}
  30. podManifestConfig:
  31. servingInfo:
  32. bindAddress: 0.0.0.0:10250
  33. certFile: server.crt
  34. clientCA: ca.crt
  35. keyFile: server.key
  36. volumeDirectory: {{ openshift.common.data_dir }}/openshift.local.volumes
  37. proxyArguments:
  38. proxy-mode:
  39. - {{ openshift.node.proxy_mode }}
  40. volumeConfig:
  41. localQuota:
  42. perFSGroup: {{ openshift.node.local_quota_per_fsgroup }}