added option to disable sync event creation (#8528)
* added option to disable event creation Signed-off-by: Marcus Noble <github@marcusnoble.co.uk> * Re-trigger github workflows Signed-off-by: Marcus Noble <github@marcusnoble.co.uk> Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
parent
54dd88a5d1
commit
e7bee5308e
8 changed files with 147 additions and 17 deletions
|
|
@ -129,6 +129,8 @@ type Configuration struct {
|
|||
DeepInspector bool
|
||||
|
||||
DynamicConfigurationRetries int
|
||||
|
||||
DisableSyncEvents bool
|
||||
}
|
||||
|
||||
// GetPublishService returns the Service used to set the load-balancer status of Ingresses.
|
||||
|
|
|
|||
|
|
@ -2404,6 +2404,7 @@ func newNGINXController(t *testing.T) *NGINXController {
|
|||
Controller: "k8s.io/ingress-nginx",
|
||||
AnnotationValue: "nginx",
|
||||
},
|
||||
false,
|
||||
)
|
||||
|
||||
sslCert := ssl.GetFakeSSLCert()
|
||||
|
|
@ -2468,7 +2469,8 @@ func newDynamicNginxController(t *testing.T, setConfigMap func(string) *v1.Confi
|
|||
&ingressclass.IngressClassConfiguration{
|
||||
Controller: "k8s.io/ingress-nginx",
|
||||
AnnotationValue: "nginx",
|
||||
})
|
||||
},
|
||||
false)
|
||||
|
||||
sslCert := ssl.GetFakeSSLCert()
|
||||
config := &Configuration{
|
||||
|
|
|
|||
|
|
@ -136,7 +136,8 @@ func NewNGINXController(config *Configuration, mc metric.Collector) *NGINXContro
|
|||
n.updateCh,
|
||||
config.DisableCatchAll,
|
||||
config.DeepInspector,
|
||||
config.IngressClassConfiguration)
|
||||
config.IngressClassConfiguration,
|
||||
config.DisableSyncEvents)
|
||||
|
||||
n.syncQueue = task.NewTaskQueue(n.syncIngress)
|
||||
|
||||
|
|
|
|||
|
|
@ -251,7 +251,8 @@ func New(
|
|||
updateCh *channels.RingChannel,
|
||||
disableCatchAll bool,
|
||||
deepInspector bool,
|
||||
icConfig *ingressclass.IngressClassConfiguration) Storer {
|
||||
icConfig *ingressclass.IngressClassConfiguration,
|
||||
disableSyncEvents bool) Storer {
|
||||
|
||||
store := &k8sStore{
|
||||
informers: &Informer{},
|
||||
|
|
@ -267,9 +268,11 @@ func New(
|
|||
|
||||
eventBroadcaster := record.NewBroadcaster()
|
||||
eventBroadcaster.StartLogging(klog.Infof)
|
||||
eventBroadcaster.StartRecordingToSink(&clientcorev1.EventSinkImpl{
|
||||
Interface: client.CoreV1().Events(namespace),
|
||||
})
|
||||
if !disableSyncEvents {
|
||||
eventBroadcaster.StartRecordingToSink(&clientcorev1.EventSinkImpl{
|
||||
Interface: client.CoreV1().Events(namespace),
|
||||
})
|
||||
}
|
||||
recorder := eventBroadcaster.NewRecorder(scheme.Scheme, corev1.EventSource{
|
||||
Component: "nginx-ingress-controller",
|
||||
})
|
||||
|
|
|
|||
|
|
@ -125,7 +125,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
|
||||
|
|
@ -206,7 +207,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
ic := createIngressClass(clientSet, t, "not-k8s.io/not-ingress-nginx")
|
||||
|
|
@ -310,7 +312,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
validSpec := commonIngressSpec
|
||||
|
|
@ -426,7 +429,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
ingressClassconfig)
|
||||
ingressClassconfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
|
||||
|
|
@ -556,7 +560,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
ingressClassconfig)
|
||||
ingressClassconfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
validSpec := commonIngressSpec
|
||||
|
|
@ -656,7 +661,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
|
||||
|
|
@ -750,7 +756,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
invalidSpec := commonIngressSpec
|
||||
|
|
@ -836,7 +843,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
|
||||
|
|
@ -932,7 +940,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
|
||||
|
|
@ -1056,7 +1065,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
|
||||
|
|
@ -1177,7 +1187,8 @@ func TestStore(t *testing.T) {
|
|||
updateCh,
|
||||
false,
|
||||
true,
|
||||
DefaultClassConfig)
|
||||
DefaultClassConfig,
|
||||
false)
|
||||
|
||||
storer.Run(stopCh)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue