Merge pull request #6191 from roberthbailey/kubelet-ssl

Configure the kubelet to bind a simple healthz server to a localhost port for monitoring by monit
This commit is contained in:
Victor Marmol
2015-03-30 15:57:09 -07:00
6 changed files with 44 additions and 18 deletions

View File

@@ -17,7 +17,13 @@ limitations under the License.
package ports
const (
// KubeletPort is the default port for the kubelet status server on each host machine.
// KubeletStatusPort is the default port for the kubelet healthz server.
// May be overridden by a flag at startup.
KubeletStatusPort = 10248
// ProxyPort is the default port for the proxy healthz server.
// May be overriden by a flag at startup.
ProxyStatusPort = 10249
// KubeletPort is the default port for the kubelet server on each host machine.
// May be overridden by a flag at startup.
KubeletPort = 10250
// SchedulerPort is the default port for the scheduler status server.
@@ -26,7 +32,4 @@ const (
// ControllerManagerPort is the default port for the controller manager status server.
// May be overridden by a flag at startup.
ControllerManagerPort = 10252
// ProxyPort is the default port for the proxy status server.
// May be overriden by a flag at startup.
ProxyPort = 10249
)