This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from platform-engineering-org/crc-cloud
feat(ci): Spin crc-cloud in CI
- Loading branch information
Showing
1 changed file
with
81 additions
and
0 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,81 @@ | ||
name: crc-cloud | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
crc-cloud: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
steps: | ||
- name: Write pullsecret | ||
env: | ||
PULLSECRET_BASE64: ${{ secrets.PS_64 }} | ||
run: | | ||
echo $PULLSECRET_BASE64 | base64 --decode > pullsecret.txt | ||
- name: Write boot key | ||
run: | | ||
echo "${{ secrets.ID_ECDSA }}" > key.txt | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: ${{ secrets.ROLE }} | ||
aws-region: eu-west-2 | ||
|
||
- name: Create cluster | ||
run: | | ||
docker run -d --name crc-cloud-create --rm \ | ||
-v ${PWD}:/workspace:z \ | ||
-e AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} \ | ||
-e AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} \ | ||
-e AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN} \ | ||
-e AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION} \ | ||
quay.io/crcont/crc-cloud:v0.0.2 \ | ||
create aws \ | ||
--project-name "crc-ocp412" \ | ||
--backed-url "file:///workspace" \ | ||
--output "/workspace" \ | ||
--aws-ami-id "ami-019669c0960dbcf14" \ | ||
--pullsecret-filepath /workspace/pullsecret.txt \ | ||
--key-filepath /workspace/key.txt | ||
- name: View cluster creation logs | ||
continue-on-error: true | ||
run: | | ||
docker logs -f crc-cloud-create | ||
- name: Check cluster config | ||
continue-on-error: true | ||
run: | | ||
ls -al /tmp | ||
pwd | ||
ls -al | ||
ssh -i id_rsa core@$(cat host) "cat /opt/kubeconfig" | ||
- name: Destroy cluster | ||
run: | | ||
docker run -d --name crccloud-destroy --rm \ | ||
-v ${PWD}:/workspace:z \ | ||
-e AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} \ | ||
-e AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} \ | ||
-e AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN} \ | ||
-e AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION} \ | ||
quay.io/crcont/crc-cloud:v0.0.2 \ | ||
destroy \ | ||
--project-name "crc-ocp412" \ | ||
--backed-url "file:///workspace" \ | ||
--provider "aws" | ||
- name: View cluster destroy logs | ||
run: | | ||
docker logs -f crccloud-destroy |