Skip to content

Commit

Permalink
Merge pull request #529 from marquiz/devel/release-0.8.2
Browse files Browse the repository at this point in the history
Update references to v0.8.2
  • Loading branch information
k8s-ci-robot authored May 18, 2021
2 parents e791352 + 7a47b66 commit 94dbcbc
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deployment/node-feature-discovery/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions nfd-daemonset-combined.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion nfd-master.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion nfd-prune.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion nfd-worker-daemonset.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion nfd-worker-job.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/node_feature_discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 94dbcbc

Please sign in to comment.