From c32d156b2d371e4c6cd7ecb4a346eb06d0cff914 Mon Sep 17 00:00:00 2001 From: Reto Lehmann Date: Mon, 18 Sep 2023 14:48:53 +0200 Subject: [PATCH] Drop `ServingControlCertName` constant --- pkg/config/config.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index f27c7865e..aee546f50 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -70,17 +70,12 @@ const ( // ServingInternalCertName is the name of secret contains certificates in serving // system namespace. // - // Deprecated: ServingInternalCertName is deprecated. - // (use ServingControlCertName or ServingRoutingCertName instead) + // Deprecated: ServingInternalCertName is deprecated. Use ServingRoutingCertName instead. ServingInternalCertName = "knative-serving-certs" // ServingRoutingCertName is the name of secret contains certificates for Routing data in serving // system namespace. (Used by Ingress GWs and Activator) ServingRoutingCertName = "routing-serving-certs" - - // ServingControlCertName is the name of secret contains certificates for Control data in serving - // system namespace. (Used by Autoscaler and Ingress control for example) - ServingControlCertName = "control-serving-certs" ) // Config Keys