diff --git a/release_notes/ocp-4-3-release-notes.adoc b/release_notes/ocp-4-3-release-notes.adoc index 8f261d21bf..2e8ea05cad 100644 --- a/release_notes/ocp-4-3-release-notes.adoc +++ b/release_notes/ocp-4-3-release-notes.adoc @@ -1465,3 +1465,34 @@ $ oc get pods -n openshift-cluster-node-tuning-operator + Verify that the Pods are now in a `Running` state. (link:https://bugzilla.redhat.com/show_bug.cgi?id=1791916[*BZ#1791916*]) + +* The Node Feature Discovery (NFD) Operator version 4.3 fails to deploy from +OpertorHub on the {product-title} web console. As a workaround, download the +`oc` client for your operating system, and place the `kubeconfig` file from the +installer in `~/.kube/config`. Run these commands to deploy the NFD Operator +from the CLI and GitHub: ++ +---- +$ cd $GOPATH/src/openshift +$ git clone https://github.com/openshift/cluster-nfd-operator.git +$ cd cluster-nfd-operator +$ git checkout release-4.3 +$ PULLPOLICY=Always make deploy +$ oc get pods -n openshift-nfd +---- ++ +Example output: ++ +---- +$ oc get pods -n openshift-nfd +NAME READY STATUS RESTARTS AGE +nfd-master-gj4bh 1/1 Running 0 9m46s +nfd-master-hngrm 1/1 Running 0 9m46s +nfd-master-shwg5 1/1 Running 0 9m46s +nfd-operator-b74cbdc66-jsgqq 1/1 Running 0 10m +nfd-worker-87wpn 1/1 Running 2 9m47s +nfd-worker-d7kj8 1/1 Running 1 9m47s +nfd-worker-n4g7g 1/1 Running 1 9m47s +---- ++ +(link:https://bugzilla.redhat.com/show_bug.cgi?id=1793535[*BZ#1793535*])