You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.4 KiB

  1. # change to 0.0.0.0 to enable insecure access from anywhere (not recommended)
  2. kube_apiserver_insecure_bind_address: 127.0.0.1
  3. # resolv.conf to base dns config
  4. kube_resolv_conf: "/etc/resolv.conf"
  5. kube_proxy_mode: iptables
  6. # If using the pure iptables proxy, SNAT everything. Note that it breaks any
  7. # policy engine.
  8. kube_proxy_masquerade_all: false
  9. # These options reflect limitations of running kubelet in a container.
  10. # Modify at your own risk
  11. kubelet_enable_cri: false
  12. kubelet_cgroups_per_qos: false
  13. # Set to empty to avoid cgroup creation
  14. kubelet_enforce_node_allocatable: ""
  15. # Limits for kube components and nginx load balancer app
  16. kubelet_memory_limit: 512M
  17. kubelet_cpu_limit: 100m
  18. kubelet_status_update_frequency: 10s
  19. kube_proxy_memory_limit: 2000M
  20. kube_proxy_cpu_limit: 500m
  21. kube_proxy_memory_requests: 64M
  22. kube_proxy_cpu_requests: 150m
  23. nginx_memory_limit: 512M
  24. nginx_cpu_limit: 300m
  25. nginx_memory_requests: 32M
  26. nginx_cpu_requests: 25m
  27. # kube_api_runtime_config:
  28. # - extensions/v1beta1/daemonsets=true
  29. # - extensions/v1beta1/deployments=true
  30. nginx_image_repo: nginx
  31. nginx_image_tag: 1.11.4-alpine
  32. etcd_config_dir: /etc/ssl/etcd
  33. # A port range to reserve for services with NodePort visibility.
  34. # Inclusive at both ends of the range.
  35. kube_apiserver_node_port_range: "30000-32767"
  36. kubelet_load_modules: false
  37. ##Support custom flags to be passed to kubelet
  38. kubelet_custom_flags: []