The supervisor JWKS observer and TLS cert controllers use the ctx after all, whoops.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer 2020-11-04 13:08:50 -06:00
parent 418f4d20ae
commit 4da3d93f6e
No known key found for this signature in database
GPG Key ID: EAE88AD172C5AE2D
2 changed files with 4 additions and 4 deletions

View File

@ -49,12 +49,12 @@ func NewJWKSObserverController(
},
withInformer(
secretInformer,
pinnipedcontroller.MatchAnythingFilter(pinnipedcontroller.SingletonQueue()),
pinnipedcontroller.MatchAnythingFilter(nil),
controllerlib.InformerOption{},
),
withInformer(
oidcProviderInformer,
pinnipedcontroller.MatchAnythingFilter(pinnipedcontroller.SingletonQueue()),
pinnipedcontroller.MatchAnythingFilter(nil),
controllerlib.InformerOption{},
),
)

View File

@ -49,12 +49,12 @@ func NewTLSCertObserverController(
},
withInformer(
secretInformer,
pinnipedcontroller.MatchAnythingFilter(pinnipedcontroller.SingletonQueue()),
pinnipedcontroller.MatchAnythingFilter(nil),
controllerlib.InformerOption{},
),
withInformer(
oidcProviderInformer,
pinnipedcontroller.MatchAnythingFilter(pinnipedcontroller.SingletonQueue()),
pinnipedcontroller.MatchAnythingFilter(nil),
controllerlib.InformerOption{},
),
)