node.yaml.v1.j2 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. allowDisabledDocker: false
  2. apiVersion: v1
  3. {% if openshift.common.version_gte_3_6 %}
  4. dnsBindAddress: 127.0.0.1:53
  5. dnsRecursiveResolvConf: /etc/origin/node/resolv.conf
  6. {% endif %}
  7. dnsDomain: {{ openshift.common.dns_domain }}
  8. dnsIP: {{ openshift_dns_ip }}
  9. dockerConfig:
  10. execHandlerName: ""
  11. iptablesSyncPeriod: "{{ openshift_node_iptables_sync_period }}"
  12. imageConfig:
  13. format: {{ oreg_url_node }}
  14. latest: {{ openshift_node_image_config_latest }}
  15. kind: NodeConfig
  16. kubeletArguments: {{ l2_openshift_node_kubelet_args | default(None) | lib_utils_to_padded_yaml(level=1) }}
  17. {% if openshift_use_crio | bool %}
  18. container-runtime:
  19. - remote
  20. container-runtime-endpoint:
  21. - /var/run/crio/crio.sock
  22. image-service-endpoint:
  23. - /var/run/crio/crio.sock
  24. node-labels:
  25. - router=true
  26. - registry=true
  27. runtime-request-timeout:
  28. - 10m
  29. {% endif %}
  30. masterClientConnectionOverrides:
  31. acceptContentTypes: application/vnd.kubernetes.protobuf,application/json
  32. contentType: application/vnd.kubernetes.protobuf
  33. burst: 200
  34. qps: 100
  35. masterKubeConfig: system:node:{{ openshift.common.hostname | lower }}.kubeconfig
  36. {% if openshift_node_use_openshift_sdn | bool %}
  37. networkPluginName: {{ openshift_node_sdn_network_plugin_name }}
  38. {% endif %}
  39. # networkConfig struct introduced in origin 1.0.6 and OSE 3.0.2 which
  40. # deprecates networkPluginName above. The two should match.
  41. networkConfig:
  42. mtu: {{ openshift.node.sdn_mtu }}
  43. {% if openshift_node_use_openshift_sdn | bool or openshift_node_use_nuage | bool or openshift_node_use_contiv | bool or openshift_node_use_kuryr | bool or openshift_node_sdn_network_plugin_name == 'cni' %}
  44. networkPluginName: {{ openshift_node_sdn_network_plugin_name }}
  45. {% endif %}
  46. {% if openshift_set_node_ip | bool %}
  47. nodeIP: {{ openshift.common.ip }}
  48. {% endif %}
  49. nodeName: {{ openshift.node.nodename }}
  50. podManifestConfig:
  51. servingInfo:
  52. bindAddress: 0.0.0.0:10250
  53. certFile: server.crt
  54. clientCA: ca.crt
  55. keyFile: server.key
  56. {% if openshift_node_min_tls_version is defined %}
  57. minTLSVersion: {{ openshift_node_min_tls_version }}
  58. {% endif %}
  59. {% if openshift_node_cipher_suites is defined %}
  60. cipherSuites:
  61. {% for cipher_suite in openshift_node_cipher_suites %}
  62. - {{ cipher_suite }}
  63. {% endfor %}
  64. {% endif %}
  65. volumeDirectory: {{ openshift_node_data_dir }}/openshift.local.volumes
  66. {% if not (openshift_node_use_kuryr | default(False)) | bool %}
  67. proxyArguments:
  68. proxy-mode:
  69. - {{ openshift_node_proxy_mode }}
  70. {% endif %}
  71. volumeConfig:
  72. localQuota:
  73. perFSGroup: {{ openshift_node_local_quota_per_fsgroup }}