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.

39 lines
1.1 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. # Limits for kube components and nginx load balancer app
  10. kubelet_memory_limit: 512M
  11. kubelet_cpu_limit: 100m
  12. kubelet_status_update_frequency: 10s
  13. kube_proxy_memory_limit: 2000M
  14. kube_proxy_cpu_limit: 500m
  15. kube_proxy_memory_requests: 256M
  16. kube_proxy_cpu_requests: 150m
  17. nginx_memory_limit: 512M
  18. nginx_cpu_limit: 300m
  19. nginx_memory_requests: 64M
  20. nginx_cpu_requests: 50m
  21. # kube_api_runtime_config:
  22. # - extensions/v1beta1/daemonsets=true
  23. # - extensions/v1beta1/deployments=true
  24. nginx_image_repo: nginx
  25. nginx_image_tag: 1.11.4-alpine
  26. etcd_config_dir: /etc/ssl/etcd
  27. # A port range to reserve for services with NodePort visibility.
  28. # Inclusive at both ends of the range.
  29. kube_apiserver_node_port_range: "30000-32767"
  30. kubelet_load_modules: false