本文整理匯總了Golang中k8s/io/kubernetes/pkg/api.PodTemplateSpec.Labels方法的典型用法代碼示例。如果您正苦於以下問題:Golang PodTemplateSpec.Labels方法的具體用法?Golang PodTemplateSpec.Labels怎麽用?Golang PodTemplateSpec.Labels使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類k8s/io/kubernetes/pkg/api.PodTemplateSpec
的用法示例。
在下文中一共展示了PodTemplateSpec.Labels方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: writePodTemplateSpec
func writePodTemplateSpec(r *schema.ResourceData, item *api.PodTemplateSpec) error {
var template map[string]interface{}
if x, ok := extractSingleMap(r.Get("template")); ok {
template = x
}
if template == nil {
return fmt.Errorf("missing template")
}
if x, ok := extractSingleMap(template["labels"]); ok && x != nil {
item.Labels = map[string]string{}
for k, v := range x {
item.Labels[k] = v.(string)
}
}
if x, ok := extractSingleMap(template["node_selector"]); ok && x != nil {
item.Spec.NodeSelector = map[string]string{}
for k, v := range x {
item.Spec.NodeSelector[k] = v.(string)
}
}
if x, ok := template["volume"].([]interface{}); ok && x != nil {
for _, i := range x {
volume := api.Volume{}
writePodVolume(i.(map[string]interface{}), &volume)
item.Spec.Volumes = append(item.Spec.Volumes, volume)
}
}
if x, ok := template["image_pull_secret"].([]interface{}); ok && x != nil {
for _, i := range x {
ref := api.LocalObjectReference{}
writePodImagePullSecret(i.(map[string]interface{}), &ref)
item.Spec.ImagePullSecrets = append(item.Spec.ImagePullSecrets, ref)
}
}
if x, ok := template["container"].([]interface{}); ok && x != nil {
for _, i := range x {
ref := api.Container{}
err := writePodContainer(i.(map[string]interface{}), &ref)
if err != nil {
return err
}
item.Spec.Containers = append(item.Spec.Containers, ref)
}
}
if x, ok := template["restart_policy"].(string); ok {
item.Spec.RestartPolicy = api.RestartPolicy(x)
}
if x, ok := template["dns_policy"].(string); ok {
item.Spec.DNSPolicy = api.DNSPolicy(x)
}
if x, ok := template["service_account_name"].(string); ok {
item.Spec.ServiceAccountName = x
}
if x, ok := template["node_name"].(string); ok {
item.Spec.NodeName = x
}
if x, ok := template["termination_grace_period"].(int); ok && x > 0 {
l := int64(x)
item.Spec.TerminationGracePeriodSeconds = &l
}
if x, ok := template["active_deadline"].(int); ok && x > 0 {
l := int64(x)
item.Spec.ActiveDeadlineSeconds = &l
}
return nil
}