diff --git a/README.md b/README.md index 1744fa928..421e56145 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/deployment/node-feature-discovery/Chart.yaml b/deployment/node-feature-discovery/Chart.yaml index b671e4a46..055517a52 100644 --- a/deployment/node-feature-discovery/Chart.yaml +++ b/deployment/node-feature-discovery/Chart.yaml @@ -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. diff --git a/docs/_config.yml b/docs/_config.yml index a0c6c2912..fcfcc3bde 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -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 diff --git a/nfd-daemonset-combined.yaml.template b/nfd-daemonset-combined.yaml.template index d453de63a..2a29c124e 100644 --- a/nfd-daemonset-combined.yaml.template +++ b/nfd-daemonset-combined.yaml.template @@ -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: diff --git a/nfd-master.yaml.template b/nfd-master.yaml.template index 818c2b851..66462f1d0 100644 --- a/nfd-master.yaml.template +++ b/nfd-master.yaml.template @@ -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: diff --git a/nfd-prune.yaml.template b/nfd-prune.yaml.template index f6cde35ac..2e292c5c4 100644 --- a/nfd-prune.yaml.template +++ b/nfd-prune.yaml.template @@ -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 diff --git a/nfd-worker-daemonset.yaml.template b/nfd-worker-daemonset.yaml.template index 54b3050fb..637dc1f4f 100644 --- a/nfd-worker-daemonset.yaml.template +++ b/nfd-worker-daemonset.yaml.template @@ -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: diff --git a/nfd-worker-job.yaml.template b/nfd-worker-job.yaml.template index 9f68bc9f0..3b468ca58 100644 --- a/nfd-worker-job.yaml.template +++ b/nfd-worker-job.yaml.template @@ -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: diff --git a/test/e2e/node_feature_discovery.go b/test/e2e/node_feature_discovery.go index 6b7e7e2bc..57b3623a5 100644 --- a/test/e2e/node_feature_discovery.go +++ b/test/e2e/node_feature_discovery.go @@ -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")