Skip to content

Commit

Permalink
Merge pull request #1719 from marquiz/release-0.16
Browse files Browse the repository at this point in the history
[release-0.16] Prepare v0.16
  • Loading branch information
k8s-ci-robot committed May 27, 2024
2 parents cdf94eb + b98668c commit 2e93c3f
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 22 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.22-bookworm
BUILDER_IMAGE ?= golang:1.22.3-bookworm
BASE_IMAGE_FULL ?= debian:bookworm-slim
BASE_IMAGE_MINIMAL ?= scratch

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.15.4
$ kubectl apply -k https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.16.0
namespace/node-feature-discovery created
customresourcedefinition.apiextensions.k8s.io/nodefeaturerules.nfd.k8s-sigs.io created
customresourcedefinition.apiextensions.k8s.io/nodefeatures.nfd.k8s-sigs.io created
Expand Down Expand Up @@ -48,4 +48,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.16
4 changes: 2 additions & 2 deletions deployment/base/gc/gc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ 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.16.0
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: 20m
Expand Down
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.16.0
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: 300m
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.16.0
imagePullPolicy: IfNotPresent
livenessProbe:
grpc:
port: 8082
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.16.0
imagePullPolicy: IfNotPresent
livenessProbe:
grpc:
port: 8082
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.16.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.16.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.16/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.16.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.16
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.16.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.16.0

0 comments on commit 2e93c3f

Please sign in to comment.