-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ui: code readability * fix: typos
- Loading branch information
Showing
11 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
docs/03-github-cloud-runner/06-advanced-topics/05-logging.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Logging | ||
|
||
Logs are streamed from the workload to the Game CI origin unless you use the | ||
Logs are streamed from the workload to the GameCI origin unless you use the | ||
|
||
## Kubernetes | ||
|
||
- Native kuberentes logging api | ||
- Native Kubernetes logging api | ||
|
||
## AWS | ||
|
||
- Fargate log to Cloud Watch | ||
- Subscription from Cloud Watch to Kinesis | ||
- Game CI streams from logs from Kinesis | ||
- GameCI streams from logs from Kinesis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ Create or edit the file called `.github/workflows/main.yml` and add a job to it. | |
|
||
Personal licenses require a one-time manual activation step. | ||
|
||
Make sure you [acquire and activate](/docs/github/activation) your license file and add it as a | ||
Make sure you [acquire and activate](/docs/github/activation) your license file, and add it as a | ||
secret. | ||
|
||
Then, define the build step as follows: | ||
|
@@ -490,8 +490,8 @@ keys for your project and then add to the `webfactory/ssh-agent` | |
and make sure that you you use `[email protected]:USER/PROJECT.git` instead of email for `-C` | ||
parameter because we're going to use it as deploy key for a single project and | ||
`webfactory/ssh-agent` going to use that for checking which repository this key is related to . | ||
- Add the public_key to Deploy settings of your private git repository ( | ||
https://github.com/USER/PROJECT/settings/keys) | ||
- Add the public_key to Deploy settings of your private git repository | ||
(https://github.com/USER/PROJECT/settings/keys) | ||
- Add private_key to Github secrets of the project that you want to build | ||
(https://github.com/USER/PROJECT/settings/secrets/actions) (key name should be SSH_PRIVATE_KEY ) | ||
- Add github to ssh known hosts : | ||
|
@@ -500,7 +500,7 @@ keys for your project and then add to the `webfactory/ssh-agent` | |
name: 'Add GitHub to the SSH known hosts file' | ||
run: | | ||
mkdir -p -m 0700 /home/runner/.ssh | ||
curl --silent https://api.github.com/meta | jq --raw-output '"github.com "+.ssh_keys[]' >> /home/runner/.ssh/known_hosts | ||
curl --silent https://api.github.com/meta | jq --raw-output '"github.com "+.ssh_keys[]' >> /home/runner/.ssh/known_hosts | ||
chmod 600 /home/runner/.ssh/known_hosts | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters