"k8s.io/apimachinery/pkg/runtime/schema"
 
        utils "github.com/onap/multicloud-k8s/src/k8splugin/internal"
-       "github.com/onap/multicloud-k8s/src/k8splugin/internal/plugin"
        "github.com/onap/multicloud-k8s/src/k8splugin/internal/helm"
+       "github.com/onap/multicloud-k8s/src/k8splugin/internal/plugin"
 )
 
+// Compile time check to see if genericPlugin implements the correct interface
+var _ plugin.Reference = genericPlugin{}
+
 // ExportedVariable is what we will look for when calling the generic plugin
 var ExportedVariable genericPlugin
 
 
        "github.com/onap/multicloud-k8s/src/k8splugin/internal/plugin"
 )
 
+// Compile time check to see if namespacePlugin implements the correct interface
+var _ plugin.Reference = namespacePlugin{}
+
 // ExportedVariable is what we will look for when calling the plugin
 var ExportedVariable namespacePlugin
 
 
 package main
 
 import (
-       v1 "github.com/onap/multicloud-k8s/src/k8splugin/plugins/network/v1"
        "regexp"
 
+       v1 "github.com/onap/multicloud-k8s/src/k8splugin/plugins/network/v1"
+
        utils "github.com/onap/multicloud-k8s/src/k8splugin/internal"
        "github.com/onap/multicloud-k8s/src/k8splugin/internal/helm"
        "github.com/onap/multicloud-k8s/src/k8splugin/internal/plugin"
        "k8s.io/apimachinery/pkg/runtime/schema"
 )
 
+// Compile time check to see if networkPlugin implements the correct interface
+var _ plugin.Reference = networkPlugin{}
+
 // ExportedVariable is what we will look for when calling the plugin
 var ExportedVariable networkPlugin
 
 
        "github.com/onap/multicloud-k8s/src/k8splugin/internal/plugin"
 )
 
+// Compile time check to see if servicePlugin implements the correct interface
+var _ plugin.Reference = servicePlugin{}
+
 // ExportedVariable is what we will look for when calling the plugin
 var ExportedVariable servicePlugin