Skip to content

Commit

Permalink
[release-0.14] Update references to release v0.14
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Eduardo Arango Gutierrez <[email protected]>
  • Loading branch information
ArangoGutierrez committed Sep 7, 2023
1 parent 2e6a202 commit 61afda1
Show file tree
Hide file tree
Showing 15 changed files with 63 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions deployment/base/gc/gc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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: []
4 changes: 2 additions & 2 deletions deployment/base/master/master-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: []
Expand Down
4 changes: 2 additions & 2 deletions deployment/base/worker-daemonset/worker-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions deployment/base/worker-job/worker-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/node-feature-discovery/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/node-feature-discovery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions deployment/helm/node-feature-discovery/values.yaml
Original file line number Diff line number Diff line change
@@ -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: []
Expand Down
4 changes: 2 additions & 2 deletions deployment/overlays/prune/master-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 added node-feature-discovery-chart-0.14.0.tgz
Binary file not shown.
37 changes: 37 additions & 0 deletions node-feature-discovery-chart-0.14.0.tgz.prov
Original file line number Diff line number Diff line change
@@ -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-----

0 comments on commit 61afda1

Please sign in to comment.