@@ -11,7 +11,7 @@ kube-apiserver \- Provides the API for kubernetes orchestration.
...
@@ -11,7 +11,7 @@ kube-apiserver \- Provides the API for kubernetes orchestration.
The **kubernetes** API server validates and configures data for 3 types of objects: pods, services, and replicationControllers. Beyond just servicing REST operations, the API Server does two other things as well: 1. Schedules pods to worker nodes. Right now the scheduler is very simple. 2. Synchronize pod information (where they are, what ports they are exposing) with the service configuration.
The **kubernetes** API server validates and configures data for 3 types of objects: pods, services, and replicationControllers. Beyond just servicing REST operations, the API Server does two other things as well: 1. Schedules pods to worker nodes. Right now the scheduler is very simple. 2. Synchronize pod information (where they are, what ports they are exposing) with the service configuration.
The the kube-apiserver several options.
The the kube-apiserver several options.
# OPTIONS
# OPTIONS
**-address**=""
**-address**=""
...
@@ -53,15 +53,9 @@ The the kube-apiserver several options.
...
@@ -53,15 +53,9 @@ The the kube-apiserver several options.
**-logtostderr**=
**-logtostderr**=
log to standard error instead of files. Default is false.
log to standard error instead of files. Default is false.
**-minion_cache_ttl**=30s
Duration of time to cache minion information. Default 30 seconds.
**-kubelet_port**=10250
**-kubelet_port**=10250
The port at which kubelet will be listening on the minions. Default is 10250.
The port at which kubelet will be listening on the minions. Default is 10250.
**-minion_regexp**=""
If non empty, and -cloud_provider is specified, a regular expression for matching minion VMs.
**-port**=8080
**-port**=8080
The port to listen on. Default is 8080.
The port to listen on. Default is 8080.
...
@@ -82,7 +76,7 @@ The the kube-apiserver several options.
...
@@ -82,7 +76,7 @@ The the kube-apiserver several options.