kubernetes/pkg/kubelet/kubelet_node_status_windows.go
Gab Satch f8e90eb5b0 Replaces modifying node object with returning a map of labels
- Adds label to update flow so can be picked up by an existing node
2019-11-12 16:50:43 -05:00

34 lines
892 B
Go

// +build windows
/*
Copyright 2019 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 kubelet
import (
v1 "k8s.io/api/core/v1"
"k8s.io/kubernetes/pkg/kubelet/winstats"
)
func getOSSpecificLabels() (map[string]string, error) {
osInfo, err := winstats.GetOSInfo()
if err != nil {
return nil, err
}
return map[string]string{v1.LabelWindowsBuild: osInfo.GetBuild()}, nil
}