Merge pull request #81 from sethpollack/skip

refactor namespaces to use PathConfig
This commit is contained in:
Jingfang Liu
2018-06-11 12:08:35 -07:00
committed by GitHub
4 changed files with 80 additions and 6 deletions

View File

@@ -28,6 +28,7 @@ import (
var service = schema.GroupVersionKind{Version: "v1", Kind: "Service"}
var secret = schema.GroupVersionKind{Version: "v1", Kind: "Secret"}
var cmap = schema.GroupVersionKind{Version: "v1", Kind: "ConfigMap"}
var ns = schema.GroupVersionKind{Version: "v1", Kind: "Namespace"}
var deploy = schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"}
var statefulset = schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "StatefulSet"}
var foo = schema.GroupVersionKind{Group: "example.com", Version: "v1", Kind: "Foo"}