chore(deps): update helm release node-feature-discovery to v0.15.4#63
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.11.0->0.15.4Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
kubernetes-sigs/node-feature-discovery (node-feature-discovery)
v0.15.4Compare Source
This patch release fixes a potential crash in nfd-master (#1644).
v0.15.3Compare Source
Changelog
This patch release fixes a critical memory leak in nfd-master, along with updating dependencies.
Full Changelog: kubernetes-sigs/node-feature-discovery@v0.15.2...v0.15.3
v0.15.2Compare Source
Changelog
This release fixes a bug in hooks and updates dependencies.
Full Changelog: kubernetes-sigs/node-feature-discovery@v0.15.1...v0.15.2
v0.15.1Compare Source
What's Changed
This patch release adds detection of
speedattribute of virtual network interfaces.List of PRs
Full Changelog: kubernetes-sigs/node-feature-discovery@v0.15.0...v0.15.1
v0.15.0Compare Source
What's new
NodeFeatureRule API extended
Annotations
NFD now supports creating node annotations with the NodeFeatureRuless. See the documentation for details.
matchName
New
matchNamefield was added to the NodeFeatureRule CRD. It can be used to match the names of features (instead of their values which is done with thematchExpressionsfield). Seedocumentation for details.
Feature files
Hidden feature files: feature files whose name start with a dot (
.) are now ignored by nfd-worker. This makes it easier to update the feature files by creating a temporary file in the same directory. (#1353)Skip labels or features: Feature files support
# +no-labeland# +no-featuredirectives to skip label and feature generation, respectively. See the documentation for details and examples.Container image based on scratch
NFD switched to use scratch as the base container image and to build fully statically linked binaries. Switching to the virtually empty base image means that the default container image only supports running hooks that are also fully statically linked. For example, many go binaries that are "almost" statically linked don't work. The full image variant can be used for richer hook support. NOTE: hooks are deprecated and support for them will be removed in a future release.
Base image of the full image variant was updated to Debian Bookworm.
Discover virtual network interfaces
NFD now discovers virtual network interfaces as features that can be used in NodeFeatureRules. (#1448)
Kubectl plugin
Starting as a developer preview, we are introducing a kubectl-nfd plugin to perform 3 operations against NodeFeatureRule files. (#1446)
See the documentation for more information.
Deprecations
Automatic prefixing of names deprecated
Automatic prefixing of names (of labels, annotations or extended resources) is deprecated. Unprefixed names should not be used in NodeFeatureRules, feature files, hooks or custom rules. The default
feature.node.kubernetes.io/prefix should be added to unprefixed names.The nfd-master has new
autoDefaultNsconfiguration file option (defaults totruein v0.15) to stop automatically adding thefeature.node.kubernetes.io/prefix to node labels, annotations and extended resources. If set tofalse, unprefixed names will be denied. (#1461)NOTE: The
autoDefaultNsoption default will be changed tofalsein a future NFD release. This will be a breaking change for users who rely on automatic prefixing of unprefixed names. Setting theautoDefaultNsoption tofalsewith NFD v0.15 can be used to test that all NodeFeatureRules, feature files, hooks and custom rules (configuration of the "custom" feature source of nfd-worker) work correctly when the default will be switched tofalse.Deprecated security labels dropped
Deprecated
feature.node.kubernetes.io/cpu-sgx.enabledandfeature.node.kubernetes.io/cpu-se.enabledlabels were dropped. They are replaced byfeature.node.kubernetes.io/cpu-security.sgx.enabledandfeature.node.kubernetes.io/cpu-security.se.enabled. (#1350)Legacy "matchOn" custom rule format dropped
Support for the legacy "matchOn" rule format of the custom source of nfd-worker was removed (deprecated since v0.10.0). (#1397)
Miscellaneous
CPU features
Detection of Intel APX and AVX10 as new CPUID features.
New
cpu.topologyfeaturesocket_count.Liveness probe
gRPC health probe utility replaced with Kubernetes' built-in gRPC liveness probe. This means that the Kubernetes v1.23 or later is required by the default deployments. (#1046)
Annotations
The nfd-master doesn't create NFD version node annotations anymore. (#1394)
Metrics
Metrics for nfd-gc were added. (#1407)
Example grafana dashboard to display NFD metrics was added. (#1413)
Helm chart
Various fixes and improvments in the Helm chart, for example ability to disable/enable nfd-master and nfd-worker.
NodeFeature API
The nfd-worker now sets owner reference in NodeFeature objects it creates, so orphaned NodeFeatures are automatically garbage-collected when the nfd-worker pod goes away. (#1491)
List of PRs
cpu.topology(#1497)v0.14.6Compare Source
This patch release fixes a potential crash in nfd-master (https://github.com/kubernetes-sigs/node-feature-discovery/pull/1645).
v0.14.5Compare Source
Changelog
This patch release fixes a critical memory leak in nfd-master, along with updating dependencies.
Full Changelog: kubernetes-sigs/node-feature-discovery@v0.14.4...v0.14.5
v0.14.4Compare Source
This patch release updates dependencies.
v0.14.3Compare Source
This patch release fixes a bug in node update retries and updates dependencies.
List of PRs
v0.14.2Compare Source
Changelog
This patch release contains fixes to the Helm chart in addition to dependency updates.
List of PRs
https://github.com/kubernetes-sigs/node-feature-discovery/pull/1379
https://github.com/kubernetes-sigs/node-feature-discovery/pull/1403
https://github.com/kubernetes-sigs/node-feature-discovery/pull/1404
https://github.com/kubernetes-sigs/node-feature-discovery/pull/1409
https://github.com/kubernetes-sigs/node-feature-discovery/pull/1410
v0.14.1Compare Source
Changelog
This patch release contains fixes to the Helm chart in addition to dependency updates.
List of PRs
v0.14.0Compare Source
What's new
NodeFeature API
The NodeFeature API is now enabled by default. The new CRD-based API replaces the previous gRPC-based communication between nfd-master and nfd-worker and, reducing network traffic and allows changes in NodeFeatureRules to take effect immediately (independent of the sleep-interval of nfd-worker). NodeFeature API can also be used to implement 3rd party extensions, see customization guide for more details.
Garbage collection of stale NodeFeature objects was added in the form of nfd-gc daemon.
The gRPC API is now deprecated and will be removed in a future release. The related command-line flags are also deprecated (and don't have any effect when NodeFeature API is in use):
-ca-file,-cert-file,-key-file,-port,-verify-node-name-ca-file,-cert-file,-key-file,-server,-server-name-overrideMetrics
NFD now provides Prometheus metrics for better observability. Also, the Helm and kustomize deployments support enabling metrics collection with the Prometheus operator. See the documentation for more information about the available metrics and deployment instructions.
Hooks disabled by default
The deprecation of nfd-worker hooks continues, disabling them by default in v0.14. Potential users of hooks are encouraged to switch to use the NFD CRDs (NodeFeature and
NodeFeatureRule) or feature files. Hooks can still be enabled with the
sources.local.hooksEnabledconfiguration option.
Feature files
Expiry time: NFD now supports specifying an expiry time for the features specified in a feature file, providing better lifecycle management for the feature labels. See the documentation for more details.
Size limit: There is now a 64kB size limit for feature files.
Miscellaneous
NodeFeatureRule API
Dynamic values for labels is now supported by using the
@notation, see documentation for more details.NFD-Master
-nfd-api-parallelismflagCPU features
Detection of Intel TDX guests is now supported.
Logging
The project was migrated structured logging, making log messages more consistent, better machine parseable and enables future improvements in logging.
Support policy
The project now officially documented it's supported versions and deprecation policy, see the documentation for details.
List of PRs
v0.13.6Compare Source
This patch release updates dependencies.
List of PRs
v0.13.5Compare Source
Changelog
This patch release contains fixes to the Helm chart in addition to dependency updates.
List of PRs
v0.13.4Compare Source
Changelog
This release contains one bug fix to the nfd-topology-updater and makes it runnable in Kubernetes v1.28, in addition to updating dependencies.
List of PRs
v0.13.3Compare Source
This patch release contains a few bug fixes in addition to updating dependencies.
What's Changed
Full Changelog: kubernetes-sigs/node-feature-discovery@v0.13.2...v0.13.3
v0.13.2Compare Source
This patch release adds validation for feature label names and values, updates dependencies and contains fixes to the Helm chart.
List of PRs
v0.13.1Compare Source
Changelog
This patch release contains bug fixes to nfd-master and infd-topology-updater.
List of PRs
Full Changelog: kubernetes-sigs/node-feature-discovery@v0.13.0...v0.13.1
v0.13.0Compare Source
Changelog
Default image based on distroless
The default container image is now based on distroless/base. This was formerly shipped as the "minimal" image, and "v0.13.0-minimal" image tag is thus provided for backwards compatibility. A new "full" image variant (v0.13.0-full) that corresponds the previous default image is made available.
The practical user impact of this change is that support for hooks is limited to statically linked ELF binaries. Bash or Perl scripts are not supported b
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.