diff --git a/nodeup/pkg/model/servicemanifest.go b/nodeup/pkg/model/servicemanifest.go deleted file mode 100644 index 6e6826d5cbcf4..0000000000000 --- a/nodeup/pkg/model/servicemanifest.go +++ /dev/null @@ -1,90 +0,0 @@ -/* -Copyright 2016 The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package model - -import "bytes" - -type ServiceManifest struct { - Sections []*ServiceManifestSection -} - -type ServiceManifestSection struct { - Key string - Entries []*ServiceManifestEntry -} - -type ServiceManifestEntry struct { - Key string - Value string -} - -func (s *ServiceManifest) Set(sectionKey string, key string, value string) { - section := s.getOrCreateSection(sectionKey) - section.Set(key, value) -} - -func (s *ServiceManifest) getOrCreateSection(key string) *ServiceManifestSection { - for _, section := range s.Sections { - if section.Key == key { - return section - } - } - section := &ServiceManifestSection{ - Key: key, - } - s.Sections = append(s.Sections, section) - return section -} - -func (s *ServiceManifest) Render() string { - var b bytes.Buffer - - for i, section := range s.Sections { - if i != 0 { - b.WriteString("\n") - } - b.WriteString(section.Render()) - } - - return b.String() -} - -func (s *ServiceManifestSection) Set(key string, value string) { - for _, entry := range s.Entries { - if entry.Key == key { - entry.Value = value - return - } - } - - entry := &ServiceManifestEntry{ - Key: key, - Value: value, - } - s.Entries = append(s.Entries, entry) -} - -func (s *ServiceManifestSection) Render() string { - var b bytes.Buffer - - b.WriteString("[" + s.Key + "]\n") - for _, entry := range s.Entries { - b.WriteString(entry.Key + "=" + entry.Value + "\n") - } - - return b.String() -}