File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ $ ./node-joiner.sh
7070```
7171The script will generate a temporary namespace prefixed with ` openshift-node-joiner ` in the target cluster,
7272where 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
7676By default the script looks for a configuration file named ` nodes-config.yaml ` . It's possible to specify a
Original file line number Diff line number Diff line change 120120res=$( oc exec node-joiner -n " ${namespace} " -- cat /assets/exit_code)
121121if [ " $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
124124else
125125 oc logs node-joiner -n " ${namespace} "
126126 echo " node-joiner failed"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
2121
2222const (
2323 agentISOFilename = "agent.%s.iso"
24- agentAddNodesISOFilename = "agent-addnodes .%s.iso"
24+ agentAddNodesISOFilename = "node .%s.iso"
2525 iso9660Level1ExtLen = 3
2626)
2727
You can’t perform that action at this time.
0 commit comments