From 2415e30efebfc7b4f47ab971ddaf8454c3a7b8b8 Mon Sep 17 00:00:00 2001 From: corneredrat Date: Wed, 1 Feb 2023 21:42:52 +0530 Subject: [PATCH] remove redundant initialization --- pkg/healthchecker/types/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/healthchecker/types/types.go b/pkg/healthchecker/types/types.go index 98881acc..d470f01e 100644 --- a/pkg/healthchecker/types/types.go +++ b/pkg/healthchecker/types/types.go @@ -47,8 +47,8 @@ const ( ) var ( - KubeletHealthCheckEndpoint = "http://127.0.0.1:10248/healthz" - KubeProxyHealthCheckEndpoint = "http://127.0.0.1:10256/healthz" + KubeletHealthCheckEndpoint string + KubeProxyHealthCheckEndpoint string ) func init() {