Skip to content

Commit 2ffbcb5

Browse files
committed
Adding worker nodes using the Assisted Installer REST API - invalid spaces
The space ` ` following the `\` must be removed, otherwise the command doesn't work when copied.
1 parent de7dbf1 commit 2ffbcb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ai-adding-worker-nodes-to-cluster.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ $ CLUSTER_ID=$(curl "$API_URL/api/assisted-install/v2/clusters/import" -H "Autho
6969
[source,terminal]
7070
----
7171
export INFRA_ENV_REQUEST=$(jq --null-input \
72-
--slurpfile pull_secret <path_to_pull_secret_file> \ //<1>
73-
--arg ssh_pub_key "$(cat <path_to_ssh_pub_key>)" \ //<2>
72+
--slurpfile pull_secret <path_to_pull_secret_file> \//<1>
73+
--arg ssh_pub_key "$(cat <path_to_ssh_pub_key>)" \//<2>
7474
--arg cluster_id "$CLUSTER_ID" '{
7575
"name": "<infraenv_name>", <3>
7676
"pull_secret": $pull_secret[0] | tojson,

0 commit comments

Comments
 (0)