Use controller runtime and operator sdk
[ovn4nfv-k8s-plugin.git] / pkg / controller / add_pod.go
1 package controller
2
3 import (
4         "ovn4nfv-k8s-plugin/pkg/controller/pod"
5 )
6
7 func init() {
8         // AddToManagerFuncs is a list of functions to create controllers and add them to a manager.
9         AddToManagerFuncs = append(AddToManagerFuncs, pod.Add)
10 }