Skip to content

Commit 9154b36

Browse files
authored
Fix typos (#431)
* ui: code readability * fix: typos
1 parent 8a8a225 commit 9154b36

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

docs/03-github-cloud-runner/01-introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ indicates the stability and support for cloud runner features and workflows.
6666
| Azure | ⚠ Considered |
6767
```
6868

69-
_Note for Kuberentes support:_ _Usually the cluster needs to be up and running at all times, as
69+
_Note for Kubernetes support:_ _Usually the cluster needs to be up and running at all times, as
7070
starting up a cluster is slow._ _Use Google Cloud's Kubernetes Autopilot you can scale down to the
7171
free tier automatically while not in use._ _Kubernetes support currently requires cloud storage,
7272
only S3 support is built-in._

docs/03-github-cloud-runner/03-examples/01-command-line.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dpx game-ci build
2727

2828
# Help
2929

30-
_You can run `yarn run cli -h` or `yarn run cli --help` to List all modes and paramters with
30+
_You can run `yarn run cli -h` or `yarn run cli --help` to list all modes and paramters with
3131
descriptions_
3232

3333
# Main Command Parameters

docs/03-github-cloud-runner/03-examples/02-github-examples/03-kubernetes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
- You must have a Kuberentes cluster setup and ready that supports persistent volumes.
5+
- You must have a Kubernetes cluster setup and ready that supports persistent volumes.
66
- Create a kubeconfig and encode it as base64.
77

88
## K8s Credentials
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Logging
22

3-
Logs are streamed from the workload to the Game CI origin unless you use the
3+
Logs are streamed from the workload to the GameCI origin unless you use the
44

55
## Kubernetes
66

7-
- Native kuberentes logging api
7+
- Native Kubernetes logging api
88

99
## AWS
1010

1111
- Fargate log to Cloud Watch
1212
- Subscription from Cloud Watch to Kinesis
13-
- Game CI streams from logs from Kinesis
13+
- GameCI streams from logs from Kinesis

docs/03-github-cloud-runner/06-advanced-topics/06-secrets.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ provider being used supports.
55

66
## Kubernetes
77

8-
secrets are created as native kuberentes secret objects and mounted to job containers as env
8+
Secrets are created as native Kubernetes secret objects and mounted to job containers as env
99
variables.
1010

1111
## AWS
1212

13-
secrets are created as aws secret manager secrets and mounted to fargate tasks from secrets to env
13+
Secrets are created as aws secret manager secrets and mounted to fargate tasks from secrets to env
1414
variables.

docs/03-github/03-test-runner.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ Initializes Docker using the host network.
350350

351351
This is useful if Unity needs to access a local server that was started as part of your workflow.
352352

353-
Options are: "true", "false"
353+
Options are: `true`, `false`
354354

355355
_**required:** `false`_ _**default:** `false`_
356356

docs/03-github/04-builder.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Create or edit the file called `.github/workflows/main.yml` and add a job to it.
3434

3535
Personal licenses require a one-time manual activation step.
3636

37-
Make sure you [acquire and activate](/docs/github/activation) your license file and add it as a
37+
Make sure you [acquire and activate](/docs/github/activation) your license file, and add it as a
3838
secret.
3939

4040
Then, define the build step as follows:
@@ -490,8 +490,8 @@ keys for your project and then add to the `webfactory/ssh-agent`
490490
and make sure that you you use `git@github.com:USER/PROJECT.git` instead of email for `-C`
491491
parameter because we're going to use it as deploy key for a single project and
492492
`webfactory/ssh-agent` going to use that for checking which repository this key is related to .
493-
- Add the public_key to Deploy settings of your private git repository (
494-
https://github.com/USER/PROJECT/settings/keys)
493+
- Add the public_key to Deploy settings of your private git repository
494+
(https://github.com/USER/PROJECT/settings/keys)
495495
- Add private_key to Github secrets of the project that you want to build
496496
(https://github.com/USER/PROJECT/settings/secrets/actions) (key name should be SSH_PRIVATE_KEY )
497497
- Add github to ssh known hosts :
@@ -500,7 +500,7 @@ keys for your project and then add to the `webfactory/ssh-agent`
500500
name: 'Add GitHub to the SSH known hosts file'
501501
run: |
502502
mkdir -p -m 0700 /home/runner/.ssh
503-
curl --silent https://api.github.com/meta | jq --raw-output '"github.com "+.ssh_keys[]' >> /home/runner/.ssh/known_hosts
503+
curl --silent https://api.github.com/meta | jq --raw-output '"github.com "+.ssh_keys[]' >> /home/runner/.ssh/known_hosts
504504
chmod 600 /home/runner/.ssh/known_hosts
505505
```
506506

versioned_docs/version-2/03-github-cloud-runner/01-introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ indicates the stability and support for cloud runner features and workflows.
6666
| Azure | ⚠ Considered |
6767
```
6868

69-
_Note for Kuberentes support:_ _Usually the cluster needs to be up and running at all times, as
69+
_Note for Kubernetes support:_ _Usually the cluster needs to be up and running at all times, as
7070
starting up a cluster is slow._ _Use Google Cloud's Kubernetes Autopilot you can scale down to the
7171
free tier automatically while not in use._ _Kubernetes support currently requires cloud storage,
7272
only S3 support is built-in._

versioned_docs/version-2/03-github-cloud-runner/03-examples/02-github-examples/03-kubernetes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
- You must have a Kuberentes cluster setup and ready that supports persistent volumes.
5+
- You must have a Kubernetes cluster setup and ready that supports persistent volumes.
66
- Create a kubeconfig and encode it as base64.
77

88
## K8s Credentials

versioned_docs/version-2/03-github-cloud-runner/06-advanced-topics/05-logging.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Logs are streamed from the workload to the Game CI origin unless you use the
44

55
## Kubernetes
66

7-
- Native kuberentes logging api
7+
- Native Kubernetes logging api
88

99
## AWS
1010

0 commit comments

Comments
 (0)