Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConsistentListFromCache (0.28 sec)

  1. hack/update-openapi-spec.sh

      openssl genrsa -out "${SERVICE_ACCOUNT_KEY}" 2048 2>/dev/null
    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}" \
      --secure-port="${API_PORT}" \
      --etcd-servers="http://${ETCD_HOST}:${ETCD_PORT}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	match := opts.ResourceVersionMatch
    	consistentListFromCacheEnabled := utilfeature.DefaultFeatureGate.Enabled(features.ConsistentListFromCache)
    	requestWatchProgressSupported := etcdfeature.DefaultFeatureSupportChecker.Supports(storage.RequestWatchProgress)
    
    	// Serve consistent reads from storage if ConsistentListFromCache is disabled
    	consistentReadFromStorage := resourceVersion == "" && !(consistentListFromCacheEnabled && requestWatchProgressSupported)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top