Skip to content

Commit 27d4241

Browse files
- Corrections and nicer patterns.
1 parent 9dfacc0 commit 27d4241

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

docs/walkthroughs/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ using `stackql`. If you have some use case that you would like to see added her
1010
All walkthrough files are testable with CI, leveraging annotations (eg: code block info strings)
1111
in order to setup, run, verify and tear down testing scenarios. The tests *can* be run:
1212

13-
- Locally, on your own machine. Thats the whole idea; please mix and match and let us know any ideas thast occur.
13+
- Locally, on your own machine. Thats the whole idea; please follow the instructions, mix and match, and let us know any ideas that occur.
1414
- Directly from CI. Reports are generated and archived.
1515
- From test harnesses, such as robot framework. This has not yet been implemented.
1616

17+
## Running from CI
18+
19+
The canonical, **ruleset-protected** tag form is `scenario-<run_number>-<anything>`. At this stage, `run_number` must refer to a `stackql` run for which a `linux` `amd64` stackql binary archive is present at the time the tag is run.
20+
1721

1822

docs/walkthroughs/get-google-accelerator-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ stackql shell --approot=<app-root-path>
1414

1515
## Method
1616

17-
Do this in the `stackql` shell, replacing `<project>` with your GCP project name:
17+
Do this in the `stackql` shell, replacing `<project>` with your GCP project name, and `<zone>` as desired, eg: `australia-southeast1-a`:
1818

19-
```sql stackql-shell input required project=ryuki-it-sandbox-01 region=australia-southeast1-a
19+
```sql stackql-shell input required project=stackql-demo zone=australia-southeast1-a
2020

2121
registry pull google;
2222

@@ -26,7 +26,7 @@ select
2626
FROM google.compute.accelerator_types
2727
WHERE
2828
project = '<project>'
29-
AND zone = '<region>'
29+
AND zone = '<zone>'
3030
ORDER BY
3131
name desc
3232
;

docs/walkthroughs/get-google-vms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ stackql shell --approot=<app-root-path>
1414

1515
## Method
1616

17-
Do this in the `stackql` shell, replacing `<project>` with your GCP project name:
17+
Do this in the `stackql` shell, replacing `<project>` with your GCP project name, and `<zone>` as desired, eg: `australia-southeast1-a`:
1818

19-
```sql stackql-shell input required project=ryuki-it-sandbox-01 region=australia-southeast1-a
19+
```sql stackql-shell input required project=stackql-demo zone=australia-southeast1-a
2020

2121
registry pull google;
2222

@@ -26,7 +26,7 @@ select
2626
FROM google.compute.instances
2727
WHERE
2828
project = '<project>'
29-
AND zone = '<region>'
29+
AND zone = '<zone>'
3030
;
3131

3232
```

0 commit comments

Comments
 (0)