Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

align network operator namespace to nvidia-network-operator #72

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/getting-started-kubernetes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ Prerequisites

.. code-block:: console

$ kubectl create ns network-operator
$ kubectl label --overwrite ns network-operator pod-security.kubernetes.io/enforce=privileged
$ kubectl create ns nvidia-network-operator
$ kubectl label --overwrite ns nvidia-network-operator pod-security.kubernetes.io/enforce=privileged

#. Node Feature Discovery (NFD) is a dependency for the Operator on each node.
By default, NFD master and worker are automatically deployed by the Operator.
Expand Down Expand Up @@ -1311,7 +1311,7 @@ E.g.: old method to configure nodes in a parallel:

.. code-block:: bash

kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n network-operator default --patch '{ "spec": { "maxParallelNodeConfiguration": 5 } }' --type='merge'
kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n nvidia-network-operator default --patch '{ "spec": { "maxParallelNodeConfiguration": 5 } }' --type='merge'


New method to configure nodes in a parallel:
Expand Down Expand Up @@ -1342,7 +1342,7 @@ To apply SriovNetworkNodePolicy on several nodes in parallel, specify the ``feat

.. code-block:: bash

kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n network-operator default --patch '{ "spec": { "featureGates": { "parallelNicConfig": true } } }' --type='merge'
kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n nvidia-network-operator default --patch '{ "spec": { "featureGates": { "parallelNicConfig": true } } }' --type='merge'

---------------------------------------------------------------------------
SR-IOV Network Operator Deployment – SR-IOV Using the systemd Service
Expand All @@ -1352,7 +1352,7 @@ To enable systemd SR-IOV configuration mode, specify the configurationMode optio

.. code-block:: bash

kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n network-operator default --patch '{ "spec": { "configurationMode": "systemd"} }' --type='merge'
kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n nvidia-network-operator default --patch '{ "spec": { "configurationMode": "systemd"} }' --type='merge'

-------------------------------------------------------------
Network Operator Deployment with an SR-IOV InfiniBand Network
Expand Down Expand Up @@ -1908,7 +1908,7 @@ Enable ``manageSoftwareBridges`` featureGate for sriov-network-operator

.. code-block:: bash

kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n network-operator default --patch '{ "spec": { "featureGates": { "manageSoftwareBridges": true } } }' --type='merge'
kubectl patch sriovoperatorconfigs.sriovnetwork.openshift.io -n nvidia-network-operator default --patch '{ "spec": { "featureGates": { "manageSoftwareBridges": true } } }' --type='merge'

Create IPPool object for nv-ipam

Expand Down