-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ghes docs, deployments (#149)
* move runners to enterprise scope by default * update GHES docs * s/ae/es/g * one little typo gets its very own commit
- Loading branch information
1 parent
777a542
commit f26fc40
Showing
7 changed files
with
22 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# GHES runners | ||
|
||
There's nothing special about these runners. They deploy to a different Kubernetes cluster (the `bare-metal` environment) and attach to a different organization in GHES. The [`bootstrap.sh`](bootstrap.sh) script takes a URL and token to set up test environments very quickly. | ||
There's nothing special about these runners. They deploy to a different Kubernetes cluster (the `docker-desktop` environment or the `open-shift` environment) and attach to a different organization in GHES for testing/demonstration. The [`bootstrap.sh`](bootstrap.sh) script takes a URL and token to set up test environments very quickly. | ||
|
||
## Local environments | ||
|
||
This bootstrap script has been tested and is used routinely on [Docker Desktop's local Kubernetes cluster](https://docs.docker.com/desktop/kubernetes/), [Azure Kubernetes Service](https://azure.microsoft.com/en-us/products/kubernetes-service/#overview), and [RedHat OpenShift Local](https://access.redhat.com/documentation/en-us/red_hat_openshift_local). | ||
|
||
For OpenShift, because these are privileged pods, you must allow this explicitly in the namespaces the pods will run in. | ||
|
||
```shell | ||
oc adm policy add-scc-to-user privileged -z default -n runners | ||
oc adm policy add-scc-to-user privileged -z default -n test-runners | ||
``` |
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