cloud-controller-manager: enable secure ports 10258, deprecate insecure port

This commit is contained in:
Dr. Stefan Schimanski
2018-08-07 11:13:18 +02:00
parent 2548fb08cd
commit f35c3f1836
2 changed files with 9 additions and 4 deletions

View File

@@ -32,6 +32,7 @@ const (
InsecureKubeControllerManagerPort = 10252
// InsecureCloudControllerManagerPort is the default port for the cloud controller manager server.
// This value may be overridden by a flag at startup.
// Deprecated: use the secure CloudControllerManagerPort instead.
InsecureCloudControllerManagerPort = 10253
// KubeletReadOnlyPort exposes basic read-only services from the kubelet.
// May be overridden by a flag at startup.
@@ -45,4 +46,7 @@ const (
// KubeControllerManagerPort is the default port for the controller manager status server.
// May be overridden by a flag at startup.
KubeControllerManagerPort = 10257
// CloudControllerManagerPort is the default port for the cloud controller manager server.
// This value may be overridden by a flag at startup.
CloudControllerManagerPort = 10258
)