From fc7b30633766f55938d1a3ea4b3a6096ce9b9ef3 Mon Sep 17 00:00:00 2001 From: nikhiljindal Date: Fri, 29 Jan 2016 16:20:44 -0800 Subject: [PATCH] Adding a discovery summarizer server --- apiserver/apiserver.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/apiserver/apiserver.go b/apiserver/apiserver.go index 891e5236..12c95c4d 100644 --- a/apiserver/apiserver.go +++ b/apiserver/apiserver.go @@ -37,7 +37,6 @@ const ( // Ports on which to run the server. // Explicitly setting these to a different value than the default values, to prevent this from clashing with a local cluster. InsecurePort = 8081 - SecurePort = 6444 ) func newStorageFactory() genericapiserver.StorageFactory { @@ -53,7 +52,6 @@ func newStorageFactory() genericapiserver.StorageFactory { func NewServerRunOptions() *genericapiserver.ServerRunOptions { serverOptions := genericapiserver.NewServerRunOptions() serverOptions.InsecurePort = InsecurePort - serverOptions.SecurePort = SecurePort return serverOptions }