Skip to content

Commit 3e27465

Browse files
authored
Merge pull request #108852 from ricmmartins/ricmmartins-patch-1
Minor changes
2 parents 2e5e249 + e682da5 commit 3e27465

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

articles/openshift/howto-gpu-workloads.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ ARO supports the following GPU workers:
5858

5959
1. Enter **quotas** in the search box, then select **Compute**.
6060

61-
1. In the search box, enter **NCAv3_T4**, check the box for the region your cluster is in, and then select **Request quota increase**.
61+
1. In the search box, enter **NCAsv3_T4**, check the box for the region your cluster is in, and then select **Request quota increase**.
6262

6363
1. Configure quota.
6464

@@ -149,13 +149,13 @@ ARO uses Kubernetes MachineSet to create machine sets. The procedure below expla
149149
1. Change the `.spec.selector.matchLabels.machine.openshift.io/cluster-api-machineset` field to match the `.metadata.name` field.
150150

151151
```bash
152-
jq '.spec.selector.matchLabels."machine.openshift.io/cluster-api-machineset" = "nvidia-worker-southcentralus1"' gpu_machineset.json| sponge gpu_machineset.json
152+
jq '.spec.selector.matchLabels."machine.openshift.io/cluster-api-machineset" = "nvidia-worker-<region><az>"' gpu_machineset.json| sponge gpu_machineset.json
153153
```
154154

155155
1. Change the `.spec.template.metadata.labels.machine.openshift.io/cluster-api-machineset` to match the `.metadata.name` field.
156156

157157
```bash
158-
jq '.spec.template.metadata.labels."machine.openshift.io/cluster-api-machineset" = "nvidia-worker-southcentralus1"' gpu_machineset.json| sponge gpu_machineset.json
158+
jq '.spec.template.metadata.labels."machine.openshift.io/cluster-api-machineset" = "nvidia-worker-<region><az>"' gpu_machineset.json| sponge gpu_machineset.json
159159
```
160160

161161
1. Change the `spec.template.spec.providerSpec.value.vmSize` to match the desired GPU instance type from Azure.
@@ -244,6 +244,12 @@ This section explains how to create the `nvidia-gpu-operator` namespace, set up
244244
```bash
245245
CHANNEL=$(oc get packagemanifest gpu-operator-certified -n openshift-marketplace -o jsonpath='{.status.defaultChannel}')
246246
```
247+
> [!NOTE]
248+
> If your cluster was created without providing the pull secret, the cluster won't include samples or operators from Red Hat or from certified partners. This will result in the following error message:
249+
>
250+
> *Error from server (NotFound): packagemanifests.packages.operators.coreos.com "gpu-operator-certified" not found.*
251+
>
252+
> To add your Red Hat pull secret on an Azure Red Hat OpenShift cluster, [follow this guidance](howto-add-update-pull-secret.md).
247253
248254
1. Get latest Nvidia package using the following command:
249255

0 commit comments

Comments
 (0)