Skip to content

Commit 13a2bf6

Browse files
authored
Merge pull request #2307 from marquiz/release-0.18
[release-0.18] Release v0.18
2 parents ac1eb50 + 6d832e9 commit 13a2bf6

File tree

12 files changed

+25
-25
lines changed

12 files changed

+25
-25
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ IMAGE_BUILD_CMD ?= docker build
88
IMAGE_BUILD_EXTRA_OPTS ?=
99
IMAGE_PUSH_CMD ?= docker push
1010
CONTAINER_RUN_CMD ?= docker run
11-
BUILDER_IMAGE ?= golang:1.25-trixie
11+
BUILDER_IMAGE ?= golang:1.25.1-trixie
1212
BASE_IMAGE_FULL ?= debian:bookworm-slim
1313
BASE_IMAGE_MINIMAL ?= scratch
1414

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ features and system configuration!
1212
#### Quick-start – the short-short version
1313

1414
```bash
15-
$ kubectl apply -k "https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.17.4"
15+
$ kubectl apply -k "https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.18.0
1616
namespace/node-feature-discovery created
1717
customresourcedefinition.apiextensions.k8s.io/nodefeaturegroups.nfd.k8s-sigs.io created
1818
customresourcedefinition.apiextensions.k8s.io/nodefeaturerules.nfd.k8s-sigs.io created
@@ -49,4 +49,4 @@ $ kubectl get no -o json | jq ".items[].metadata.labels"
4949
5050
```
5151
52-
[documentation]: https://kubernetes-sigs.github.io/node-feature-discovery
52+
[documentation]: https://kubernetes-sigs.github.io/node-feature-discovery/v0.18

deployment/base/gc/gc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ spec:
1717
serviceAccount: nfd-gc
1818
containers:
1919
- name: nfd-gc
20-
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
21-
imagePullPolicy: Always
20+
image: registry.k8s.io/nfd/node-feature-discovery:v0.18.0
21+
imagePullPolicy: IfNotPresent
2222
livenessProbe:
2323
httpGet:
2424
path: /healthz

deployment/base/master/master-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ spec:
1919
tolerations: []
2020
containers:
2121
- name: nfd-master
22-
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
23-
imagePullPolicy: Always
22+
image: registry.k8s.io/nfd/node-feature-discovery:v0.18.0
23+
imagePullPolicy: IfNotPresent
2424
resources:
2525
limits:
2626
cpu: 300m

deployment/base/topologyupdater-daemonset/topologyupdater-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ spec:
1717
serviceAccount: nfd-topology-updater
1818
containers:
1919
- name: nfd-topology-updater
20-
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
21-
imagePullPolicy: Always
20+
image: registry.k8s.io/nfd/node-feature-discovery:v0.18.0
21+
imagePullPolicy: IfNotPresent
2222
livenessProbe:
2323
httpGet:
2424
path: /healthz

deployment/base/worker-daemonset/worker-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ spec:
1717
dnsPolicy: ClusterFirstWithHostNet
1818
containers:
1919
- name: nfd-worker
20-
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
21-
imagePullPolicy: Always
20+
image: registry.k8s.io/nfd/node-feature-discovery:v0.18.0
21+
imagePullPolicy: IfNotPresent
2222
livenessProbe:
2323
httpGet:
2424
path: /healthz

deployment/base/worker-job/worker-job.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ spec:
2727
- nfd-worker
2828
containers:
2929
- name: nfd-worker
30-
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
31-
imagePullPolicy: Always
30+
image: registry.k8s.io/nfd/node-feature-discovery:v0.18.0
31+
imagePullPolicy: IfNotPresent
3232
command:
3333
- "nfd-worker"
3434
args:

deployment/helm/node-feature-discovery/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
appVersion: master
3-
icon: https://kubernetes-sigs.github.io/node-feature-discovery/master/assets/images/nfd/favicon.svg
2+
appVersion: v0.18.0
3+
icon: https://kubernetes-sigs.github.io/node-feature-discovery/v0.18/assets/images/nfd/favicon.svg
44
description: |
55
Detects hardware features available on each node in a Kubernetes cluster, and advertises
66
those features using node labels.

deployment/helm/node-feature-discovery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ labels. NFD provides flexible configuration and extension points for a wide
66
range of vendor and application specific node labeling needs.
77

88
See
9-
[NFD documentation](https://kubernetes-sigs.github.io/node-feature-discovery/master/deployment/helm.html)
9+
[NFD documentation](https://kubernetes-sigs.github.io/node-feature-discovery/v0.18/deployment/helm.html)
1010
for deployment instructions.

deployment/helm/node-feature-discovery/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
2-
repository: gcr.io/k8s-staging-nfd/node-feature-discovery
2+
repository: registry.k8s.io/nfd/node-feature-discovery
33
# This should be set to 'IfNotPresent' for released version
4-
pullPolicy: Always
4+
pullPolicy: IfNotPresent
55
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
66
# tag
77
imagePullSecrets: []

0 commit comments

Comments
 (0)