Advertisement
Guest User

kube-apiserver

a guest
May 26th, 2015
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.81 KB | None | 0 0
  1. ###
  2. # kubernetes system config
  3. #
  4. # The following values are used to configure the kube-apiserver
  5. #
  6.  
  7. # The address on the local server to listen to.
  8. KUBE_API_ADDRESS="--address=0.0.0.0"
  9.  
  10. # The port on the local server to listen on.
  11. KUBE_API_PORT="--port=8080"
  12.  
  13. # Port minions listen on
  14. KUBELET_PORT="--kubelet_port=10250"
  15.  
  16. # How the replication controller and scheduler find the kube-apiserver
  17. KUBE_MASTER="--master=http://coreos05:8080"
  18.  
  19. # Comma separated list of nodes in the etcd cluster
  20. KUBE_ETCD_SERVERS="--etcd_servers=http://coreos05:4001"
  21.  
  22. # Address range to use for services
  23. KUBE_SERVICE_ADDRESSES="--portal_net=10.10.0.0/16"
  24.  
  25. # default admission control policies
  26. KUBE_ADMISSION_CONTROL="--admission_control=NamespaceAutoProvision,LimitRanger,ResourceQuota"
  27.  
  28. # Add you own!
  29. KUBE_API_ARGS=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement