Skip to content

Commit 9367c3b

Browse files
committed
rename add node iso artifact
1 parent a60f6d1 commit 9367c3b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/user/agent/add-node/add-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ $ ./node-joiner.sh
7070
```
7171
The script will generate a temporary namespace prefixed with `openshift-node-joiner` in the target cluster,
7272
where a pod will be launched to execute the effective node-joiner workload.
73-
In case of success, the `agent-addnodes.x86_64.iso` ISO image will be downloaded in the assets folder.
73+
In case of success, the `node.x86_64.iso` ISO image will be downloaded in the assets folder.
7474

7575
### Configuration file name
7676
By default the script looks for a configuration file named `nodes-config.yaml`. It's possible to specify a

docs/user/agent/add-node/node-joiner.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ done
120120
res=$(oc exec node-joiner -n "${namespace}" -- cat /assets/exit_code)
121121
if [ "$res" = 0 ]; then
122122
echo "node-joiner successfully completed, extracting ISO image..."
123-
oc cp -n "${namespace}" node-joiner:/assets/agent-addnodes.x86_64.iso agent-addnodes.x86_64.iso
123+
oc cp -n "${namespace}" node-joiner:/assets/node.x86_64.iso node.x86_64.iso
124124
else
125125
oc logs node-joiner -n "${namespace}"
126126
echo "node-joiner failed"

pkg/asset/agent/image/agentimage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
const (
2323
agentISOFilename = "agent.%s.iso"
24-
agentAddNodesISOFilename = "agent-addnodes.%s.iso"
24+
agentAddNodesISOFilename = "node.%s.iso"
2525
iso9660Level1ExtLen = 3
2626
)
2727

0 commit comments

Comments
 (0)