From 819bf72b0c27b45f0b20c2ddd0dc03e7788c47ad Mon Sep 17 00:00:00 2001 From: Jefftree Date: Mon, 10 Feb 2025 16:34:49 +0000 Subject: [PATCH] Remove feature disablement ConsistentListFromCache in update openapi script --- hack/update-openapi-spec.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hack/update-openapi-spec.sh b/hack/update-openapi-spec.sh index 55abf904f73..46570855c6f 100755 --- a/hack/update-openapi-spec.sh +++ b/hack/update-openapi-spec.sh @@ -71,7 +71,6 @@ fi # Start kube-apiserver # omit enums from static openapi snapshots used to generate clients until #109177 is resolved -# TODO(aojea) remove ConsistentListFromCache after https://issues.k8s.io/123674 kube::log::status "Starting kube-apiserver" kube-apiserver \ --bind-address="${API_HOST}" \ @@ -79,7 +78,7 @@ kube-apiserver \ --etcd-servers="http://${ETCD_HOST}:${ETCD_PORT}" \ --advertise-address="10.10.10.10" \ --cert-dir="${TMP_DIR}/certs" \ - --feature-gates=AllAlpha=true,AllBeta=true,OpenAPIEnums=false,ConsistentListFromCache=false \ + --feature-gates=AllAlpha=true,AllBeta=true,OpenAPIEnums=false \ --runtime-config="api/all=true" \ --token-auth-file="${TMP_DIR}/tokenauth.csv" \ --authorization-mode=RBAC \