diff --git a/README.md b/README.md index bcb6aef1d..1744fa928 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.0/nfd-master.yaml.template +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.1/nfd-master.yaml.template namespace/node-feature-discovery created ... -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.0/nfd-worker-daemonset.yaml.template +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.1/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 313275b1d..305dcf971 100644 --- a/deployment/node-feature-discovery/Chart.yaml +++ b/deployment/node-feature-discovery/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: v0.8.0 +appVersion: v0.8.1 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 4998284aa..a0c6c2912 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.0 +release: v0.8.1 # Container image which to point to in the documentation -container_image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.0 +container_image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1 diff --git a/nfd-daemonset-combined.yaml.template b/nfd-daemonset-combined.yaml.template index 85cf7c33e..d453de63a 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.0 + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1 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.0 + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1 imagePullPolicy: IfNotPresent name: nfd-worker securityContext: diff --git a/nfd-master.yaml.template b/nfd-master.yaml.template index 803a048f2..fd08f038d 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.0 + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1 imagePullPolicy: IfNotPresent name: nfd-master securityContext: diff --git a/nfd-prune.yaml.template b/nfd-prune.yaml.template index 7dde3e45e..f6cde35ac 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.0 + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1 imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false diff --git a/nfd-worker-daemonset.yaml.template b/nfd-worker-daemonset.yaml.template index 5db5d27a8..54b3050fb 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.0 + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1 imagePullPolicy: IfNotPresent name: nfd-worker securityContext: diff --git a/nfd-worker-job.yaml.template b/nfd-worker-job.yaml.template index c88a666be..9f68bc9f0 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.0 + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.1 imagePullPolicy: IfNotPresent name: nfd-worker securityContext: diff --git a/test/e2e/node_feature_discovery.go b/test/e2e/node_feature_discovery.go index 0d80a9232..6b7e7e2bc 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.0", "Docker tag to use") + dockerTag = flag.String("nfd.tag", "v0.8.1", "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")