// Module included in the following assemblies: // // * scalability_and_performance/understanding-node-observability-operator.adoc :_mod-docs-content-type: PROCEDURE [id="install-node-observability-using-cli_{context}"] = Installing the Node Observability Operator using the CLI You can install the Node Observability Operator by using the OpenShift CLI (oc). .Prerequisites * You have installed the OpenShift CLI (oc). * You have access to the cluster with `cluster-admin` privileges. .Procedure . Confirm that the Node Observability Operator is available by running the following command: + [source,terminal] ---- $ oc get packagemanifests -n openshift-marketplace node-observability-operator ---- + .Example output [source,terminal] ---- NAME CATALOG AGE node-observability-operator Red Hat Operators 9h ---- . Create the `node-observability-operator` namespace by running the following command: + [source,terminal] ---- $ oc new-project node-observability-operator ---- . Create an `OperatorGroup` object YAML file: + [source,yaml] ---- cat < -o yaml | yq '.status.phase' ---- + `` is the install plan name that you obtained from the output of the previous command. + .Example output [source,terminal] ---- COMPLETE ---- . Verify that the Node Observability Operator is up and running: + [source,terminal] ---- $ oc get deploy -n node-observability-operator ---- + .Example output [source,terminal] ---- NAME READY UP-TO-DATE AVAILABLE AGE node-observability-operator-controller-manager 1/1 1 1 40h ----