Skip to content

Commit bb49634

Browse files
committed
feedback
1 parent 08c014c commit bb49634

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

cmd/kots/cli/get-joincommand.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func GetJoinCmd() *cobra.Command {
4949

5050
format := v.GetString("output")
5151
if format == "string" || format == "" {
52-
fmt.Println(strings.Join(joinCmd, " && \n "))
52+
fmt.Println(strings.Join(joinCmd, " && \\\n "))
5353
return nil
5454
} else if format == "json" {
5555
type joinCommandResponse struct {

web/src/components/apps/EmbeddedClusterManagement.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -431,16 +431,16 @@ const EmbeddedClusterManagement = ({
431431
{rolesData?.roles &&
432432
rolesData.roles.length > 1 &&
433433
"Select one or more roles to assign to the new node."}{" "}
434-
Copy the join commands and run them on the machine you'd like to join to
434+
Copy the commands and run them on the machine you'd like to join to
435435
the cluster.
436436
</p>
437437
</div>
438438
);
439439
};
440440

441441
const addNodesCommandInstructions = [
442-
"Download the installation assets",
443-
"Extract the installation assets",
442+
"Download the binary on the new node",
443+
"Extract the binary",
444444
"Join the node to the cluster",
445445
];
446446

web/src/components/modals/AddANodeModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const AddANodeModal = ({
3131
{rolesData?.roles &&
3232
rolesData.roles.length > 1 &&
3333
"Select one or more roles to assign to the new node. "}
34-
Copy the join commands and run them on the machine you'd like to join to
34+
Copy the commands and run them on the machine you'd like to join to
3535
the cluster.
3636
</p>
3737
{children}

0 commit comments

Comments
 (0)