-
Notifications
You must be signed in to change notification settings - Fork 248
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
Release v0.15 #1483
Comments
LGTM |
/lgtm |
LGTM ! |
/lgtm |
1 similar comment
/lgtm |
/sig release |
Kubectl-nfd plugin entry: Kubectl-nfd pluginPR #1446 Adds a new binary to the NFD project.
|
Official announcement : https://groups.google.com/a/kubernetes.io/g/dev/c/q0DnlKlF714/m/sqCdf2U1AAAJ |
GitHub release page: Release announcement email: |
/close |
@marquiz: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Release Checklist
git branch release-0.$MAJ master
git push release-0.$MAJ
test-infra, submit a PR
hack/prepare-release.sh $VERSION
to turn references to point to the upcoming release(README, deployment templates, docs configuration, test/e2e flags), submit a PR against the release branch
prepare-release.sh
script above to the draft releasegit tag -s $VERSION
and inserts the changelog into the tag description.
git push $VERSION
gcr.io/k8s-staging-nfd/node-feature-discovery:$VERSION
https://kubernetes-sigs.github.io/node-feature-discovery/0.$MAJ/
registry.k8s.io/images/k8s-staging-nfd/images.yaml
to promote the container images (both "full" and "minimal" variants) to productionregistry.k8s.io/nfd/node-feature-discovery:$VERSION
) is available.which will also trigger a Helm repo index update to add the latest release
[email protected]
with the subject[ANNOUNCE] node-feature-discovery $VERSION is released
hack/prepare-release.sh $VERSION
but only committing README.md, and,submit a PR
DEVEL=v0.$(($MAJ+1)).0-devel; git tag $DEVEL master && git push $DEVEL
This ensures that the devel builds on the master branch will have a meaningful version number.
What's new
NodeFeatureRule API extended
Annotations
NFD now supports creating node annotations with the NodeFeatureRuless. See the documentation for details.
matchName
New
matchName
field was added to the NodeFeatureRule CRD. It can be used to match the names of features (instead of their values which is done with thematchExpressions
field). 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-label
and# +no-feature
directives 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
autoDefaultNs
configuration file option (defaults totrue
in 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
autoDefaultNs
option default will be changed tofalse
in a future NFD release. This will be a breaking change for users who rely on automatic prefixing of unprefixed names. Setting theautoDefaultNs
option tofalse
with 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.enabled
andfeature.node.kubernetes.io/cpu-se.enabled
labels were dropped. They are replaced byfeature.node.kubernetes.io/cpu-security.sgx.enabled
andfeature.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.topology
featuresocket_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
(feat: add cpu socket count incpu.topology
#1497)The text was updated successfully, but these errors were encountered: