type ServiceHealthServer …
type proxierHealthChecker …
func newServiceHealthServer(hostname string, recorder events.EventRecorder, listener listener, factory httpServerFactory, nodePortAddresses *proxyutil.NodePortAddresses, healthzServer proxierHealthChecker) ServiceHealthServer { … }
func NewServiceHealthServer(hostname string, recorder events.EventRecorder, nodePortAddresses *proxyutil.NodePortAddresses, healthzServer proxierHealthChecker) ServiceHealthServer { … }
type server …
func (hcs *server) SyncServices(newServices map[types.NamespacedName]uint16) error { … }
type hcInstance …
func (hcI *hcInstance) listenAndServeAll(hcs *server) error { … }
func (hcI *hcInstance) closeAll() error { … }
type hcHandler …
var _ …
func (h hcHandler) ServeHTTP(resp http.ResponseWriter, req *http.Request) { … }
func (hcs *server) SyncEndpoints(newEndpoints map[types.NamespacedName]int) error { … }
type FakeServiceHealthServer …
func NewFakeServiceHealthServer() ServiceHealthServer { … }
func (fake FakeServiceHealthServer) SyncServices(_ map[types.NamespacedName]uint16) error { … }
func (fake FakeServiceHealthServer) SyncEndpoints(_ map[types.NamespacedName]int) error { … }