diff --git a/README.md b/README.md index c5b9561..5e8a8ba 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ resources: Verify that it has been scheduled on one of the __CPU__ nodes. -You can also test by running the example deployment YAML under the `example` folder +You can also test by running the example deployment YAML under the [example](./example) folder ## Troubleshooting diff --git a/internal/common/topology/types.go b/internal/common/topology/types.go index 76b92e3..3771d95 100644 --- a/internal/common/topology/types.go +++ b/internal/common/topology/types.go @@ -1,8 +1,6 @@ package topology import ( - "fmt" - "k8s.io/apimachinery/pkg/types" ) @@ -62,7 +60,3 @@ type GenericDevice struct { Name string `yaml:"name"` Count int `yaml:"count"` } - -// Errors -var ErrNoNodes = fmt.Errorf("no nodes found") -var ErrNoNode = fmt.Errorf("node not found")