Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

source/storage: implement FeatureSource #649

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions deployment/base/nfd-crds/cr-sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ spec:
major: {op: In, value: ["5"]}
minor: {op: Gt, value: ["10"]}

- feature: storage.block
matchExpressions:
rotational: {op: In, value: ["0"]}
dax: {op: In, value: ["0"]}

- feature: system.osrelease
matchExpressions:
ID: {op: In, value: ["fedora", "centos"]}
Expand Down
4 changes: 4 additions & 0 deletions deployment/components/worker-config/nfd-worker.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@
# major: {op: In, value: ["5"]}
# minor: {op: Gt, value: ["10"]}
#
# - storage.block:
# rotational: {op: In, value: ["0"]}
# dax: {op: In, value: ["0"]}
#
# - feature: system.osrelease
# matchExpressions:
# ID: {op: In, value: ["fedora", "centos"]}
Expand Down
4 changes: 4 additions & 0 deletions deployment/helm/node-feature-discovery/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@ worker:
# major: {op: In, value: ["5"]}
# minor: {op: Gt, value: ["10"]}
#
# - storage.block:
# rotational: {op: In, value: ["0"]}
# dax: {op: In, value: ["0"]}
#
# - feature: system.osrelease
# matchExpressions:
# ID: {op: In, value: ["fedora", "centos"]}
Expand Down
99 changes: 79 additions & 20 deletions source/storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,35 @@ package storage
import (
"fmt"
"io/ioutil"
"path/filepath"
"strings"

"k8s.io/klog/v2"

"sigs.k8s.io/node-feature-discovery/pkg/api/feature"
"sigs.k8s.io/node-feature-discovery/pkg/utils"
"sigs.k8s.io/node-feature-discovery/source"
)

const Name = "storage"

// storageSource implements the LabelSource interface.
type storageSource struct{}
const BlockFeature = "block"

// storageSource implements the FeatureSource and LabelSource interfaces.
type storageSource struct {
features *feature.DomainFeatures
}

// Singleton source instance
var (
src storageSource
_ source.LabelSource = &src
_ source.FeatureSource = &src
_ source.LabelSource = &src
)

// queueAttrs is the list of files under /sys/block/<dev>/queue that we're trying to read
var queueAttrs = []string{"dax", "rotational", "nr_zones", "zoned"}

// Name returns an identifier string for this feature source.
func (s *storageSource) Name() string { return Name }

Expand All @@ -42,25 +56,70 @@ func (s *storageSource) Priority() int { return 0 }

// GetLabels method of the LabelSource interface
func (s *storageSource) GetLabels() (source.FeatureLabels, error) {
features := source.FeatureLabels{}

// Check if there is any non-rotational block devices attached to the node
blockdevices, err := ioutil.ReadDir(source.SysfsDir.Path("block"))
if err == nil {
for _, bdev := range blockdevices {
fname := source.SysfsDir.Path("block", bdev.Name(), "queue/rotational")
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.
features["nonrotationaldisk"] = true
break
}
labels := source.FeatureLabels{}
features := s.GetFeatures()

for _, dev := range features.Instances[BlockFeature].Elements {
if dev.Attributes["rotational"] == "0" {
labels["nonrotationaldisk"] = true
break
}
}

return labels, nil
}

// Discover method of the FeatureSource interface
func (s *storageSource) Discover() error {
s.features = feature.NewDomainFeatures()

devs, err := detectBlock()
if err != nil {
return fmt.Errorf("failed to detect block devices: %w", err)
}
s.features.Instances[BlockFeature] = feature.InstanceFeatureSet{Elements: devs}

utils.KlogDump(3, "discovered storage features:", " ", s.features)

return nil
}

// GetFeatures method of the FeatureSource Interface.
func (s *storageSource) GetFeatures() *feature.DomainFeatures {
if s.features == nil {
s.features = feature.NewDomainFeatures()
}
return s.features
}

func detectBlock() ([]feature.InstanceFeature, error) {
sysfsBasePath := source.SysfsDir.Path("block")

blockdevices, err := ioutil.ReadDir(sysfsBasePath)
if err != nil {
return nil, fmt.Errorf("failed to list block devices: %w", err)
}

// Iterate over devices
info := make([]feature.InstanceFeature, 0, len(blockdevices))
for _, device := range blockdevices {
info = append(info, *readBlockDevQueueInfo(filepath.Join(sysfsBasePath, device.Name())))
}

return info, nil
}

func readBlockDevQueueInfo(path string) *feature.InstanceFeature {
attrs := map[string]string{"name": filepath.Base(path)}
for _, attrName := range queueAttrs {
data, err := ioutil.ReadFile(filepath.Join(path, "queue", attrName))
if err != nil {
klog.V(3).Infof("failed to read block device queue attribute %s: %w", attrName, err)
continue
}
attrs[attrName] = strings.TrimSpace(string(data))
}
return features, nil
return feature.NewInstanceFeature(attrs)
}

func init() {
Expand Down
36 changes: 36 additions & 0 deletions source/storage/storage_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
Copyright 2021 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 storage

import (
"testing"

"github.com/stretchr/testify/assert"
"sigs.k8s.io/node-feature-discovery/pkg/api/feature"
)

func TestStorageSource(t *testing.T) {
assert.Equal(t, src.Name(), Name)

// Check that GetLabels works with empty features
src.features = feature.NewDomainFeatures()
l, err := src.GetLabels()

assert.Nil(t, err, err)
assert.Empty(t, l)

}