1 /* 2 Copyright 2017 The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 // Package reconcilers a noop based reconciler 18 package reconcilers 19 20 import ( 21 "net" 22 23 corev1 "k8s.io/api/core/v1" 24 ) 25 26 // NoneEndpointReconciler allows for the endpoint reconciler to be disabled 27 type noneEndpointReconciler struct{} 28 29 // NewNoneEndpointReconciler creates a new EndpointReconciler that reconciles based on a 30 // nothing. It is a no-op. 31 func NewNoneEndpointReconciler() EndpointReconciler { 32 return &noneEndpointReconciler{} 33 } 34 35 // ReconcileEndpoints noop reconcile 36 func (r *noneEndpointReconciler) ReconcileEndpoints(serviceName string, ip net.IP, endpointPorts []corev1.EndpointPort, reconcilePorts bool) error { 37 return nil 38 } 39 40 // RemoveEndpoints noop reconcile 41 func (r *noneEndpointReconciler) RemoveEndpoints(serviceName string, ip net.IP, endpointPorts []corev1.EndpointPort) error { 42 return nil 43 } 44 45 func (r *noneEndpointReconciler) StopReconciling() { 46 } 47 48 func (r *noneEndpointReconciler) Destroy() { 49 } 50