github.phpd.cn/cilium/cilium@v1.6.12/pkg/labels/model/model.go (about) 1 // Copyright 2016-2018 Authors of Cilium 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package model 16 17 import ( 18 "github.com/cilium/cilium/api/v1/models" 19 "github.com/cilium/cilium/pkg/labels" 20 ) 21 22 // NewOplabelsFromModel creates new label from the model. 23 func NewOplabelsFromModel(base *models.LabelConfigurationStatus) *labels.OpLabels { 24 if base == nil { 25 return nil 26 } 27 28 return &labels.OpLabels{ 29 Custom: labels.NewLabelsFromModel(base.Realized.User), 30 Disabled: labels.NewLabelsFromModel(base.Disabled), 31 OrchestrationIdentity: labels.NewLabelsFromModel(base.SecurityRelevant), 32 OrchestrationInfo: labels.NewLabelsFromModel(base.Derived), 33 } 34 } 35 36 func NewModel(o *labels.OpLabels) *models.LabelConfigurationStatus { 37 return &models.LabelConfigurationStatus{ 38 Realized: &models.LabelConfigurationSpec{ 39 User: o.Custom.GetModel(), 40 }, 41 SecurityRelevant: o.OrchestrationIdentity.GetModel(), 42 Derived: o.OrchestrationInfo.GetModel(), 43 Disabled: o.Disabled.GetModel(), 44 } 45 }