Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bootstrap typo #828

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/markdown-pages/docs/manage-ecosystem/runs-get.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ The following example command returns test status in a summary format for tests
On Mac or Unix:

```
galasactl runs get --bootstrap http://example.com:30960/boostrap \
galasactl runs get --bootstrap http://example.com:30960/bootstrap \
--requestor bobsmith --age 2w:1w
```

On Windows (Powershell):

```
galasactl runs get --bootstrap http://example.com:30960/boostrap `
galasactl runs get --bootstrap http://example.com:30960/bootstrap `
--requestor bobsmith --age 2w:1w
```

Expand All @@ -80,7 +80,7 @@ On Windows (Powershell):
Results are returned on the terminal in the following example format:

```
$galasactl runs get --bootstrap http://example.com:30960/boostrap \
$galasactl runs get --bootstrap http://example.com:30960/bootstrap \
--requestor bobsmith --age 2w:1w --format summary

submitted-time(UTC) name status result test-name
Expand All @@ -103,13 +103,13 @@ The following example command returns test status in a details format:
On Mac or Unix:

```
$galasactl runs get --name U456 --bootstrap http://example.com:30960/boostrap \
$galasactl runs get --name U456 --bootstrap http://example.com:30960/bootstrap \
--format details
```

On Windows (Powershell):
```
galasactl runs get --name U456 --bootstrap http://example.com:30960/boostrap `
galasactl runs get --name U456 --bootstrap http://example.com:30960/bootstrap `
--format details
```

Expand All @@ -122,7 +122,7 @@ where:
Results are returned on the terminal in the following example format:

```
$galasactl runs get --name U456 --format details --bootstrap http://example.com:30960/boostrap
$galasactl runs get --name U456 --format details --bootstrap http://example.com:30960/bootstrap
name : U456
status : finished
result : Passed
Expand Down Expand Up @@ -150,13 +150,13 @@ The following example command returns test status in a raw format:
On Mac or Unix:

```
galasactl runs get --name U456 --bootstrap http://example.com:30960/boostrap \
galasactl runs get --name U456 --bootstrap http://example.com:30960/bootstrap \
--format raw
```

On Windows (Powershell):
```
galasactl runs get --name U456 --bootstrap http://example.com:30960/boostrap `
galasactl runs get --name U456 --bootstrap http://example.com:30960/bootstrap `
--format raw
```

Expand All @@ -181,19 +181,19 @@ On Mac or Unix:

```
galasactl runs get --age 1d --result failed,envfail \
--bootstrap http://example.com:30960/boostrap
--bootstrap http://example.com:30960/bootstrap
```

On Windows (Powershell):
```
galasactl runs get --age 1d --result failed,envfail `
--bootstrap http://example.com:30960/boostrap
--bootstrap http://example.com:30960/bootstrap
```

Results are returned on the terminal in the following example format:

```
galasactl runs get --age 1d --result failed,envfail --bootstrap http://example.com:30960/boostrap
galasactl runs get --age 1d --result failed,envfail --bootstrap http://example.com:30960/bootstrap

submitted-time(UTC) name status result test-name
2023-05-05 10:55:29 U456 ending Failed MyTestName1
Expand Down
24 changes: 12 additions & 12 deletions src/markdown-pages/docs/manage-ecosystem/runs-prepare.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ On Mac or Unix:

```
galasactl runs prepare \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--portfolio my_portfolio.yaml \
--stream BestSoFar \
--package dev.galasa.simbank.tests
Expand All @@ -30,7 +30,7 @@ On Windows (Powershell):

```
galasactl runs prepare `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--portfolio my_portfolio.yaml `
--stream BestSoFar `
--package dev.galasa.simbank.tests
Expand All @@ -46,7 +46,7 @@ On Mac or Unix:

```
galasactl runs prepare \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--portfolio my_portfolio.yaml \
--stream BestSoFar \
--package dev.galasa.simbank.tests,dev.galasa.example.banking
Expand All @@ -56,7 +56,7 @@ On Windows (Powershell):

```
galasactl runs prepare `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--portfolio my_portfolio.yaml `
--stream BestSoFar `
--package dev.galasa.simbank.tests,dev.galasa.example.banking
Expand All @@ -72,7 +72,7 @@ On Mac or Unix:

```
galasactl runs prepare \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--portfolio my_portfolio.yaml \
--class dev.galasa.simbank.tests/SimBankIVT \
--class dev.galasa.simbank.tests/BasicAccountCreditTest
Expand All @@ -82,7 +82,7 @@ On Windows (Powershell):

```
galasactl runs prepare `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--portfolio my_portfolio.yaml `
--class dev.galasa.simbank.tests/SimBankIVT `
--class dev.galasa.simbank.tests/BasicAccountCreditTest
Expand All @@ -101,7 +101,7 @@ On Mac or Unix:

```
galasactl runs prepare \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--portfolio my_portfolio.yaml \
--stream BestSoFar \
--package dev.galasa.simbank.tests \
Expand All @@ -113,7 +113,7 @@ On Windows (Powershell):

```
galasactl runs prepare `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--portfolio my_portfolio.yaml `
--stream BestSoFar `
--package dev.galasa.simbank.tests `
Expand All @@ -134,14 +134,14 @@ On Mac or Unix:

```
galasactl runs prepare \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--portfolio my_portfolio.yaml \
--stream BestSoFar \
--package dev.galasa.simbank.tests \
--override zos.default.lpar=MYLPAR \
--override zos.default.cluster=MYPLEX \
galasactl runs prepare \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--portfolio my_portfolio.yaml \
--append \
--stream BestSoFar \
Expand All @@ -154,14 +154,14 @@ On Windows (Powershell):

```
galasactl runs prepare `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--portfolio my_portfolio.yaml `
--stream BestSoFar `
--package dev.galasa.simbank.tests `
--override zos.default.lpar=MYLPAR `
--override zos.default.cluster=MYPLEX `
galasactl runs prepare `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--portfolio my_portfolio.yaml `
--append `
--stream BestSoFar `
Expand Down
8 changes: 4 additions & 4 deletions src/markdown-pages/docs/manage-ecosystem/runs-submit.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ On Mac or Unix:

```
galasactl runs submit \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--portfolio my_portfolio.yaml \
--poll 5 \
--progress 1 \
Expand All @@ -31,7 +31,7 @@ On Windows (Powershell):

```
galasactl runs submit `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--portfolio my_portfolio.yaml `
--poll 5 `
--progress 1 `
Expand All @@ -58,7 +58,7 @@ On Mac or Unix:

```
galasactl runs submit \
--bootstrap http://example.com:30960/boostrap \
--bootstrap http://example.com:30960/bootstrap \
--class dev.galasa.simbank.tests/SimBankIVT \
--class dev.galasa.simbank.tests/BasicAccountCreditTest \
--stream BestSoFar \
Expand All @@ -69,7 +69,7 @@ On Windows (Powershell):

```
galasactl runs submit `
--bootstrap http://example.com:30960/boostrap `
--bootstrap http://example.com:30960/bootstrap `
--class dev.galasa.simbank.tests/SimBankIVT `
--class dev.galasa.simbank.tests/BasicAccountCreditTest `
--stream BestSoFar `
Expand Down
Loading