-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switches CI workflow to use OCI runner
- Loading branch information
1 parent
363f66c
commit 31124eb
Showing
2 changed files
with
20 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Self-Hosted Github Action Runners on Oracle Cloud via Cirun.io | ||
# Reference: https://docs.cirun.io/reference/yaml | ||
runners: | ||
- name: "oci-cncf-runner" | ||
cloud: "oracle" | ||
# https://docs.oracle.com/en-us/iaas/Content/Compute/References/computeshapes.htm#vm-standard | ||
instance_type: "VM.Standard.E4.Flex" | ||
# https://docs.oracle.com/en-us/iaas/images/ | ||
machine_image: "ocid1.image.oc1.us-sanjose-1.aaaaaaaavslpj7yhhuswzti6cucy2qofpb3vbijj4tw5q53d7j3dwpnxj7ta" | ||
# https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm | ||
region: "us-sanjose-1" | ||
# Add this label in the "runs-on" param in .github/workflows/<workflow-name>.yml | ||
# So that this runner is created for running the workflow | ||
labels: | ||
- "oci-cncf-runner" |
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