-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds proxies to builders docs (#1132)
Co-authored-by: Steven Smith <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,6 +207,9 @@ BUILD_MANAGER: | |
SSH_AUTHORIZED_KEYS: <11> | ||
- <ssh-rsa 12345 [email protected]> | ||
- <ssh-rsa 67890 [email protected]> | ||
HTTP_PROXY: <http://10.0.0.1:80> | ||
HTTPS_PROXY: <http://10.0.0.1:80> | ||
NO_PROXY: <hostname.example.com> | ||
---- | ||
<1> Obtained by running the following command: `$ oc get route quayregistry-quay-builder -n ${QUAY_PROJECT} -o jsonpath='{.spec.host}'`. | ||
<2> The hostname for your Redis service. | ||
|
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 |
---|---|---|
|
@@ -33,6 +33,9 @@ You can follow the steps in "Configuring bare metal builds for {productname-ocp} | |
SSH_AUTHORIZED_KEYS: <2> | ||
- <ssh-rsa 12345 [email protected]> | ||
- <ssh-rsa 67890 [email protected]> | ||
HTTP_PROXY: <http://10.0.0.1:80> | ||
HTTPS_PROXY: <http://10.0.0.1:80> | ||
NO_PROXY: <hostname.example.com> | ||
---- | ||
<1> Specifies an AMI name where _builds_ will be run. Unlike bare metal _builds_, these container _builds_ are done directly within an ephemeral EC2 instance. This AMI must utilize ignition and contain a docker. The AMI shown in this example is used by {quay.io} for its build system. | ||
<2> Allows public SSH keys to be added to the build environment for remote troubleshooting access. This key, or keys, should correspond to the private key that an admin or developer will use to SSH into the build worker for debugging purposes. This key can be obtained by establishing an SSH connection to the remote host using a specific SSH key and port. For example: `$ ssh -i /path/to/ssh/key/set/in/ssh_authorized_keys -p 9999 core@localhost`. |