2018-02-15 12:13:18 +00:00
|
|
|
/*
|
2021-03-01 07:02:22 +00:00
|
|
|
Copyright 2018-2021 The Kubernetes Authors.
|
2018-02-15 12:13:18 +00:00
|
|
|
|
|
|
|
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 storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2018-06-21 16:02:30 +00:00
|
|
|
|
2018-11-28 12:30:03 +00:00
|
|
|
"sigs.k8s.io/node-feature-discovery/source"
|
2018-02-15 12:13:18 +00:00
|
|
|
)
|
|
|
|
|
2021-05-12 13:27:29 +00:00
|
|
|
const Name = "storage"
|
|
|
|
|
2021-03-01 07:02:22 +00:00
|
|
|
// storageSource implements the LabelSource interface.
|
|
|
|
type storageSource struct{}
|
2018-02-15 12:13:18 +00:00
|
|
|
|
2021-03-01 07:02:22 +00:00
|
|
|
// Singleton source instance
|
|
|
|
var (
|
|
|
|
src storageSource
|
|
|
|
_ source.LabelSource = &src
|
|
|
|
)
|
2020-04-21 19:03:37 +00:00
|
|
|
|
2021-03-01 07:02:22 +00:00
|
|
|
// Name returns an identifier string for this feature source.
|
|
|
|
func (s *storageSource) Name() string { return Name }
|
2020-04-21 19:03:37 +00:00
|
|
|
|
2021-03-01 07:02:22 +00:00
|
|
|
// Priority method of the LabelSource interface
|
|
|
|
func (s *storageSource) Priority() int { return 0 }
|
2020-04-21 19:03:37 +00:00
|
|
|
|
2021-03-01 16:39:49 +00:00
|
|
|
// GetLabels method of the LabelSource interface
|
|
|
|
func (s *storageSource) GetLabels() (source.FeatureLabels, error) {
|
2021-03-01 05:45:32 +00:00
|
|
|
features := source.FeatureLabels{}
|
2018-02-15 12:13:18 +00:00
|
|
|
|
|
|
|
// Check if there is any non-rotational block devices attached to the node
|
2020-05-20 11:32:07 +00:00
|
|
|
blockdevices, err := ioutil.ReadDir(source.SysfsDir.Path("block"))
|
2018-02-15 12:13:18 +00:00
|
|
|
if err == nil {
|
|
|
|
for _, bdev := range blockdevices {
|
2020-05-20 11:32:07 +00:00
|
|
|
fname := source.SysfsDir.Path("block", bdev.Name(), "queue/rotational")
|
2018-02-15 12:13:18 +00:00
|
|
|
bytes, err := ioutil.ReadFile(fname)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't read rotational status: %s", err.Error())
|
|
|
|
}
|
|
|
|
if bytes[0] == byte('0') {
|
|
|
|
// Non-rotational storage is present, add label.
|
2018-06-21 16:02:30 +00:00
|
|
|
features["nonrotationaldisk"] = true
|
2018-02-15 12:13:18 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return features, nil
|
|
|
|
}
|
2021-03-01 07:02:22 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
source.Register(&src)
|
|
|
|
}
|