Skip to content

Commit 5c86a2f

Browse files
authored
AV-244023 Add Application Profile to Gateway API (#1840)
* AV-244023 Add Application Profile to Gateway API * AV-244023 Address review comments * AV-244023 Address review comments
1 parent e0d94f0 commit 5c86a2f

File tree

14 files changed

+1145
-206
lines changed

14 files changed

+1145
-206
lines changed

ako-gateway-api/k8s/gateway_controller.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ func (c *GatewayController) Start(stopCh <-chan struct{}) {
109109
go c.dynamicInformers.RouteBackendExtensionCRDInformer.Informer().Run(stopCh)
110110
informersList = append(informersList, c.dynamicInformers.RouteBackendExtensionCRDInformer.Informer().HasSynced)
111111
}
112+
113+
go c.dynamicInformers.AppProfileCRDInformer.Informer().Run(stopCh)
114+
informersList = append(informersList, c.dynamicInformers.AppProfileCRDInformer.Informer().HasSynced)
115+
112116
if !cache.WaitForCacheSync(stopCh, informersList...) {
113117
runtime.HandleError(fmt.Errorf("timed out waiting for caches to sync"))
114118
} else {

0 commit comments

Comments
 (0)