1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-17 05:48:21 +00:00

Merge pull request #1340 from ArangoGutierrez/version_ready_014

[release-0.14] Update references to release v0.14
This commit is contained in:
Kubernetes Prow Robot 2023-09-07 08:26:58 -07:00 committed by GitHub
commit b2c04e0643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 63 additions and 26 deletions

View file

@ -8,7 +8,7 @@ IMAGE_BUILD_CMD ?= docker build
IMAGE_BUILD_EXTRA_OPTS ?=
IMAGE_PUSH_CMD ?= docker push
CONTAINER_RUN_CMD ?= docker run
BUILDER_IMAGE ?= golang:1.20-bullseye
BUILDER_IMAGE ?= golang:1.20.8-bullseye
BASE_IMAGE_FULL ?= debian:bullseye-slim
BASE_IMAGE_MINIMAL ?= gcr.io/distroless/base

View file

@ -12,7 +12,7 @@ features and system configuration!
#### Quick-start the short-short version
```bash
$ kubectl apply -k https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.13.4
$ kubectl apply -k https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.14.0
namespace/node-feature-discovery created
customresourcedefinition.apiextensions.k8s.io/nodefeaturerules.nfd.k8s-sigs.io created
serviceaccount/nfd-master created
@ -39,4 +39,4 @@ $ kubectl get no -o json | jq '.items[].metadata.labels'
```
[documentation]: https://kubernetes-sigs.github.io/node-feature-discovery
[documentation]: https://kubernetes-sigs.github.io/node-feature-discovery/v0.14

View file

@ -17,7 +17,7 @@ spec:
serviceAccount: nfd-gc
containers:
- name: nfd-gc
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
command:
- "nfd-gc"

View file

@ -18,8 +18,8 @@ spec:
tolerations: []
containers:
- name: nfd-master
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
command: ["/usr/bin/grpc_health_probe", "-addr=:8080"]
@ -34,8 +34,8 @@ spec:
command:
- "nfd-master"
- name: nfd-worker
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
command:
- "nfd-worker"
args: []

View file

@ -19,8 +19,8 @@ spec:
tolerations: []
containers:
- name: nfd-master
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
command: ["/usr/bin/grpc_health_probe", "-addr=:8080"]

View file

@ -17,8 +17,8 @@ spec:
serviceAccount: nfd-topology-updater
containers:
- name: nfd-topology-updater
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
command:
- "nfd-topology-updater"
args: []

View file

@ -17,8 +17,8 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: nfd-worker
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
command:
- "nfd-worker"
args:

View file

@ -27,8 +27,8 @@ spec:
- nfd-worker
containers:
- name: nfd-worker
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
command:
- "nfd-worker"
args:

View file

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: master
appVersion: v0.14.0
description: |
Detects hardware features available on each node in a Kubernetes cluster, and advertises
those features using node labels.

View file

@ -6,5 +6,5 @@ labels. NFD provides flexible configuration and extension points for a wide
range of vendor and application specific node labeling needs.
See
[NFD documentation](https://kubernetes-sigs.github.io/node-feature-discovery/master/deployment/helm.html)
[NFD documentation](https://kubernetes-sigs.github.io/node-feature-discovery/v0.14/deployment/helm.html)
for deployment instructions.

View file

@ -1,7 +1,7 @@
image:
repository: gcr.io/k8s-staging-nfd/node-feature-discovery
repository: registry.k8s.io/nfd/node-feature-discovery
# This should be set to 'IfNotPresent' for released version
pullPolicy: Always
pullPolicy: IfNotPresent
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
# tag
imagePullSecrets: []

View file

@ -15,8 +15,8 @@ spec:
tolerations: []
containers:
- name: nfd-master
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
imagePullPolicy: Always
image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0
imagePullPolicy: IfNotPresent
command:
- "nfd-master"
args:

View file

@ -43,7 +43,7 @@ plugins:
# - vendor/ruby/
# Document versioning
version: master
version: v0.14
display_version_list: true
# Customize page width (make it wider) for large screens
@ -57,7 +57,7 @@ scss: |
# Release is the full released version number. Used to make external links to
# point to the correct blobs in the Github repo. This is also the version shown
# in the sidebar (top left corner of the page)
release: master
release: v0.14.0
# Container image which to point to in the documentation
container_image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
container_image: registry.k8s.io/nfd/node-feature-discovery:v0.14.0

Binary file not shown.

View file

@ -0,0 +1,37 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
apiVersion: v2
appVersion: v0.14.0
description: 'Detects hardware features available on each node in a Kubernetes cluster,
and advertises those features using node labels. '
home: https://github.com/kubernetes-sigs/node-feature-discovery
keywords:
- - feature-discovery
- - feature-detection
- - node-labels
name: node-feature-discovery
sources:
- - https://github.com/kubernetes-sigs/node-feature-discovery
type: application
version: 0.14.0
...
files:
node-feature-discovery-chart-0.14.0.tgz: sha256:cf3de96a95448654502b6b151df5ed97ef380602a6ada7fe724e9cf6228ff155
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCAAyFiEEKrKKtcjq6L+Y2HjvVpcBfkTZBzcFAmT5itIUHGVkdWFyZG9h
QG52aWRpYS5jb20ACgkQVpcBfkTZBzcsHQ/9GvaxTy5qcJYpNyKVBD9xXWTC7PIZ
fbxQKcfl2um18dLvfQemPvm7fvdi3E0jdoxC16pmM1BIuadVQsZ9i1e2UH+KsFJl
TYn5yNDnZmGfkc5KMqbJJtcHBPY7y1riTGNXQ1f+uwHuxUVc5wK4ofleFJIUOzdI
Yk5hrOZz08mapmvcrt0xQM0TjGRLWDyIZsOK0+FlmsP0w3hNF387J8FBhhRjS/JI
dh/25D2H9jKeNBZXqwrEl2y/jnl8tVbgOG+266puSvFmAyM+MYglcflEgeTz0vuO
pP5UfuX+GY7MjtepjuWjQYTSj8engBpdQjAFdqTMwNhi+XOdmfbnjnHv9kfTriY7
DNfDnmHa2h6e7vXTebGYBRkieOYXO1WUazYSuG5TlBU8LvE8UXqvzcZh13XE8Ywq
lcP7tYpZal6ErWZcw6U7ZuyH4i2/YPvXFr6T/VrhXzyXaU0v4/WObH6MydFSB3QD
bhhfwGBYN2ywgrDYrVZxBg741RFmbYI68alW8+jJn7C4MZjU0UCk99mMbm5/oLH8
089XS4Aono0BqzDAJSHjM9l2FU5kHp3+leHobfjlesnRWXVW7EKFIsHz32jlewsj
4iiE8H8lmuvG4HTWQTkQiuI5cCR0GjURzZcQBZo3HNAOIc1X8w/td+Gttcdh+SXM
DVCewnsLpmkdMN4=
=YaWA
-----END PGP SIGNATURE-----