diff options
author | 2019-03-12 15:04:11 +0000 | |
---|---|---|
committer | 2019-03-12 15:04:11 +0000 | |
commit | 98e83cc404987387466721aedca3fc6c97cab40b (patch) | |
tree | e646a959426290038255b54bd71eb64ed3e1c7de /src/k8splugin/internal/rb/profile.go | |
parent | f70a3d22ce65e9c17a99fc921d350fbcbe146332 (diff) | |
parent | 2416ab0120bfe15cd3c5ef6cd0bbade288b32e7a (diff) |
Merge "Add support for parsing profile yaml files"
Diffstat (limited to 'src/k8splugin/internal/rb/profile.go')
-rw-r--r-- | src/k8splugin/internal/rb/profile.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/k8splugin/internal/rb/profile.go b/src/k8splugin/internal/rb/profile.go index 2456ad2d..d78e32e4 100644 --- a/src/k8splugin/internal/rb/profile.go +++ b/src/k8splugin/internal/rb/profile.go @@ -51,6 +51,7 @@ type ProfileManager interface { type ProfileClient struct { storeName string tagMeta, tagContent string + manifestName string } // NewProfileClient returns an instance of the ProfileClient @@ -58,9 +59,10 @@ type ProfileClient struct { // Uses rb/def prefix func NewProfileClient() *ProfileClient { return &ProfileClient{ - storeName: "rbprofile", - tagMeta: "metadata", - tagContent: "content", + storeName: "rbprofile", + tagMeta: "metadata", + tagContent: "content", + manifestName: "manifest.yaml", } } |