mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
Update references to v0.8.2
Generated with scripts/prepare-release.sh
This commit is contained in:
parent
e7913526d4
commit
7a47b66f05
9 changed files with 12 additions and 12 deletions
|
@ -11,11 +11,11 @@ features and system configuration!
|
|||
#### Quick-start – the short-short version
|
||||
|
||||
```bash
|
||||
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.1/nfd-master.yaml.template
|
||||
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.2/nfd-master.yaml.template
|
||||
namespace/node-feature-discovery created
|
||||
...
|
||||
|
||||
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.1/nfd-worker-daemonset.yaml.template
|
||||
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.2/nfd-worker-daemonset.yaml.template
|
||||
daemonset.apps/nfd-worker created
|
||||
|
||||
$ kubectl -n node-feature-discovery get all
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: v0.8.1
|
||||
appVersion: v0.8.2
|
||||
description: |
|
||||
Detects hardware features available on each node in a Kubernetes cluster, and advertises
|
||||
those features using node labels.
|
||||
|
|
|
@ -46,7 +46,7 @@ display_version_list: true
|
|||
|
||||
# Release is used to make external links to point to the correct blobs in the
|
||||
# Github repo
|
||||
release: v0.8.1
|
||||
release: v0.8.2
|
||||
|
||||
# Container image which to point to in the documentation
|
||||
container_image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1
|
||||
container_image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.2
|
||||
|
|
|
@ -67,7 +67,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: nfd-master
|
||||
securityContext:
|
||||
|
@ -83,7 +83,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: nfd-worker
|
||||
securityContext:
|
||||
|
|
|
@ -81,7 +81,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: nfd-master
|
||||
securityContext:
|
||||
|
|
|
@ -74,7 +74,7 @@ spec:
|
|||
effect: "NoSchedule"
|
||||
containers:
|
||||
- name: nfd-master
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
|
|
|
@ -23,7 +23,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: nfd-worker
|
||||
securityContext:
|
||||
|
|
|
@ -32,7 +32,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: nfd-worker
|
||||
securityContext:
|
||||
|
|
|
@ -47,7 +47,7 @@ import (
|
|||
|
||||
var (
|
||||
dockerRepo = flag.String("nfd.repo", "k8s.gcr.io/nfd/node-feature-discovery", "Docker repository to fetch image from")
|
||||
dockerTag = flag.String("nfd.tag", "v0.8.1", "Docker tag to use")
|
||||
dockerTag = flag.String("nfd.tag", "v0.8.2", "Docker tag to use")
|
||||
e2eConfigFile = flag.String("nfd.e2e-config", "", "Configuration parameters for end-to-end tests")
|
||||
openShift = flag.Bool("nfd.openshift", false, "Enable OpenShift specific bits")
|
||||
|
||||
|
|
Loading…
Reference in a new issue