Last active
April 14, 2018 00:50
-
-
Save ecowden/50e86e402afbf6bf34521dc510cbae30 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ( | |
// We used an import alias when Logrus replaced | |
// the standard logging library a while back | |
log "github.com/sirupsen/logrus" | |
// Two scheme packages | |
"k8s.io/client-go/kubernetes/scheme" | |
myscheme "github.mycompany.com/product-engineering/my-project/pkg/client/clientset/versioned/scheme" | |
// So many v1 packages! | |
appsv1 "k8s.io/api/apps/v1" | |
corev1 "k8s.io/api/core/v1" | |
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | |
typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment