Skip to content
This repository was archived by the owner on Jun 10, 2025. It is now read-only.

Commit 0e80141

Browse files
authored
Deliver 0.41.0 doc updates (#874)
2 parents c964aba + 743ddbc commit 0e80141

File tree

14 files changed

+133
-22
lines changed

14 files changed

+133
-22
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: npm run serve &
5252

5353
- name: Check for broken links
54-
run: npx broken-link-checker -ro --exclude /docs/managers/ --filter-level 3 --host-requests 8 --user-agent Chrome/90 --exclude https://fonts.gstatic.com/ --exclude https://github.com/galasa-dev/extensions/ http://localhost:9000
54+
run: npx broken-link-checker -ro --exclude /docs/managers/ --filter-level 3 --host-requests 8 --user-agent Chrome/90 --exclude https://fonts.gstatic.com/ --exclude https://github.com/galasa-dev/extensions/ --exclude https://*.algolia.net/ --exclude https://github.com/ http://localhost:9000
5555

5656
- name: Upload raw site
5757
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
@@ -208,7 +208,7 @@ jobs:
208208
run: npm run serve &
209209

210210
- name: Check for broken links
211-
run: npx broken-link-checker -ro --exclude /docs/managers/ --filter-level 3 --host-requests 8 --user-agent Chrome/90 --exclude https://fonts.gstatic.com/ --exclude https://github.com/galasa-dev/extensions/ http://localhost:9000
211+
run: npx broken-link-checker -ro --exclude /docs/managers/ --filter-level 3 --host-requests 8 --user-agent Chrome/90 --exclude https://fonts.gstatic.com/ --exclude https://github.com/galasa-dev/extensions/ --exclude https://*.algolia.net/ --exclude https://github.com/ http://localhost:9000
212212

213213
- name: Upload raw site
214214
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0

src/data/nav.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@
8787
path: /docs/writing-own-tests/binding-tests
8888
- title: Key principles for writing tests
8989
path: /docs/writing-own-tests/key-principles
90+
- title: Controlling code execution after test failure
91+
path: /docs/writing-own-tests/test-result-provider
9092
- title: The Galasa Ecosystem
9193
path: /docs/ecosystem
9294
items:

src/markdown-pages/docs/cli-command-reference/installing-cli-tool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ On Mac:
3232
3. Then you have a choice. Either install the latest version fo the `galasactl` tool, or install a specific version.
3333
1. To install the latest version of `galasactl`:
3434
`brew install --no-quarantine galasactl`
35-
2. To install a specific version of `galasactl` (version 0.40.0 for example):
36-
`brew install --no-quarantine galasactl@0.40.0`
35+
2. To install a specific version of `galasactl` (version 0.41.0 for example):
36+
`brew install --no-quarantine galasactl@0.41.0`
3737
Note: You can check to see what versions are available using this:
3838
`brew tap-info galasa-dev/tap --json` and look in the `"cask_tokens"` part of the json file.
3939

src/markdown-pages/docs/ecosystem/ecosystem-installing-k8s.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,22 +237,22 @@ Once you have successfully installed the Ecosystem, you can then deploy your Gal
237237
## Upgrading the Galasa Ecosystem
238238

239239

240-
Get the latest version of the Ecosystem chart and upgrade the Galasa Ecosystem to use the newer version of Galasa - for example version 0.40.0 - by running the following command:
240+
Get the latest version of the Ecosystem chart and upgrade the Galasa Ecosystem to use the newer version of Galasa - for example version 0.41.0 - by running the following command:
241241

242242
On Mac or Unix:
243243

244244
```console
245245
helm repo update \
246246
helm upgrade <release-name> galasa/ecosystem --reuse-values \
247-
--set galasaVersion=0.40.0 --wait
247+
--set galasaVersion=0.41.0 --wait
248248
```
249249

250250
On Windows (Powershell):
251251

252252
```console
253253
helm repo update `
254254
helm upgrade <release-name> galasa/ecosystem --reuse-values `
255-
--set galasaVersion=0.40.0 --wait
255+
--set galasaVersion=0.41.0 --wait
256256
```
257257

258258
where:<br>

src/markdown-pages/docs/ecosystem/ecosystem-role-based-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The system also has some constraints on how these resources can be set up and us
8181
- The `owner` role can only be assigned using the Helm property, not via the command-line or REST interface.
8282

8383
## <a name="upgrading-to-a-version-of-galasa-which-supports-rbac"></a>Upgrading to a version of Galasa which supports RBAC
84-
When upgrading your Galasa service to a version 0.40.0 or later, any existing users will be assigned the role of `admin` without any extra action being required.
84+
When upgrading your Galasa service to a version 0.41.0 or later, any existing users will be assigned the role of `admin` without any extra action being required.
8585

8686
Under such circumstances you may wish to assign the role of `tester` to anyone who now should not have administration rights.
8787

src/markdown-pages/docs/manage-ecosystem/runs-get.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Use the tables provided to view the options for filtering test results, and for
2121
| `--result` | Use the [`--result` option](#result) to return test runs based on test run results. You can select more than one result by using a comma-separated list. The `--result` flag cannot be used in conjunction with the `--active` flag. The two flags are mutually exclusive. |
2222
| `--active` | Use the `--active` option to query tests that have not finished, so that you can quickly see which tests are currently running. The `--active` flag cannot be used in conjunction with the `--result` flag. The two flags are mutually exclusive.|
2323
| `--group` | Use the `--group` flag to get all the test runs associated with the given group name. A custom group name can be assigned to a set of test runs when submitting tests using the [galasactl runs submit](./ecosystem-cli-runs-submit) command, otherwise a random group name will be assigned. `--group` can be used with other flags, like `--age`, `--requestor`, and `--result`, to filter test runs as desired, but it cannot be used alongside the `--name` flag. |
24+
| `--tags` | Use the `--tags` flag to get all the test runs that have the given test tags assigned to them. A custom set of tags can be assigned to a set of test runs when submitting tests using the [galasactl runs submit](./ecosystem-cli-runs-submit) command. `--tags` can be used with other flags, like `--age`, `--requestor`, and `--result`, to filter test runs as desired. Multiple tags can be supplied by either providing `--tags` with a comma-separated list of tags (e.g. `--tags tag1,tag2,tag3`) or by providing multiple `--tags` flags separately (e.g. `--tags tag1 --tags tag2 --tags tag3`). |
2425

2526
<b>Table 2:</b> The following table shows the options that you can set on the `galasactl runs get` command to display test run results in different formats:
2627

src/markdown-pages/docs/managers.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@ Each Manager is tagged with one of the follow readiness indicators:
3030

3131

3232

33+
<details>
34+
<summary><b>IMS TM Managers</b></summary>
35+
36+
Name | Description |
37+
| :-------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
38+
| **[IMS TM Manager](/docs/managers/ims-tm-manager)**<br> ![alpha](../../images/alpha.svg) | Provides configuration information for pre-existing IMS TM systems. Drives provisioning services from other managers, e.g. z/OS 3270 Manager. |
39+
40+
</details>
41+
42+
43+
3344
<details>
3445
<summary><b>Cloud Managers</b></summary>
3546

src/markdown-pages/docs/managers/galasa-ecosystem-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ The following are properties used to configure the Galasa Ecosystem Manager.
154154
| Required: | No |
155155
| Default value: | None |
156156
| Valid values: | Valid URL |
157-
| Examples: | <code>galasaecosystem.isolated.mvp.zip=https://github.com/galasa-dev/isolated/releases/download/v0.40.0/galasa-isolated-mvp-0.40.0.zip</code> |
157+
| Examples: | <code>galasaecosystem.isolated.mvp.zip=https://github.com/galasa-dev/isolated/releases/download/v0.41.0/galasa-isolated-mvp-0.41.0.zip</code> |
158158

159159
</details>
160160

src/markdown-pages/docs/running-simbank-tests/running-simbank-tests-cli-offline.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ In order to run the Galasa SimBanks tests you need to add some configuration inf
4848

4949
## Running the SimBank IVT test class by using the CLI
5050

51-
The SimBank tests are located in the `maven` directory of the `isolated.zip` downloadable file. Complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `0.40.0`.
51+
The SimBank tests are located in the `maven` directory of the `isolated.zip` downloadable file. Complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `0.41.0`.
5252

5353
Remember to initialise your local environment by running the `galasactl local init` command and to start the SimPlatform server by running the `run-simplatform.sh` script, as described in the [Running Galasa SimBank using the CLI offline](simbank-cli-offline) documentation.
5454

@@ -59,14 +59,14 @@ You are now ready to run a local Galasa test offline with just the contents of t
5959
On Mac or Unix:
6060
```
6161
galasactl runs submit local --log - \
62-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr \
62+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr \
6363
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT \
6464
--localMaven file:////Users/youruserid/Downloads/isolated/maven
6565
```
6666
On Windows (Powershell):
6767
```
6868
galasactl runs submit local --log - `
69-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr `
69+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr `
7070
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT `
7171
--localMaven file:////Users/youruserid/Downloads/isolated/maven
7272
```
@@ -80,7 +80,7 @@ On Mac or Unix:
8080

8181
```
8282
galasactl runs submit local --log - \
83-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr \
83+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr \
8484
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest \
8585
--localMaven file:////Users/youruserid/Downloads/isolated/maven
8686
```
@@ -89,7 +89,7 @@ On Windows (Powershell):
8989

9090
```
9191
galasactl runs submit local --log - `
92-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr `
92+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr `
9393
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest `
9494
--localMaven file:////Users/youruserid/Downloads/isolated/maven
9595
```

src/markdown-pages/docs/running-simbank-tests/running-simbank-tests-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In order to run the Galasa SimBanks tests you need to add some configuration inf
5050

5151
The SimBank tests are held in the <a href="https://github.com/galasa-dev/simplatform" target="_blank"> Galasa simplatform repository</a> in GitHub. To start running the tests you need to clone the repository, if you have not already done so. To find out how to clone the cli repository, follow the instruction in the [Running Galasa SimBank online](../running-simbank-tests/simbank-cli) documentation.
5252

53-
After cloning the repository, complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `0.40.0` and Galasa uber OBR version `0.40.0`.
53+
After cloning the repository, complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `0.41.0` and Galasa uber OBR version `0.41.0`.
5454

5555
You can find the version of the `dev.galasa.simbank.obr` that you are using by looking in the `pom.xml` file in the `dev.galasa.simbank.obr` folder. The `dev.galasa.uber.obr` is the OBR that contains all the bundles that are needed for Galasa to work including Managers, any required dependencies, the framework, etc. The version of the `dev.galasa.uber.obr` depends on which version of Galasa you have installed.
5656

@@ -84,13 +84,13 @@ If you are a Mac or Linux user, the messages will be almost identical.
8484
On Mac or Unix:
8585
```
8686
galasactl runs submit local --log - \
87-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr \
87+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr \
8888
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT
8989
```
9090
On Windows (Powershell):
9191
```
9292
galasactl runs submit local --log - `
93-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr `
93+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr `
9494
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT
9595
```
9696
where:
@@ -107,15 +107,15 @@ On Mac or Unix:
107107

108108
```
109109
galasactl runs submit local --log - \
110-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr \
110+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr \
111111
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest
112112
```
113113

114114
On Windows (Powershell):
115115

116116
```
117117
galasactl runs submit local --log - `
118-
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.40.0/obr `
118+
--obr mvn:dev.galasa/dev.galasa.simbank.obr/0.41.0/obr `
119119
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest
120120
```
121121

0 commit comments

Comments
 (0)