-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
165 additions
and
9 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,3 @@ | ||
# Any file that is not a doc *.md file | ||
src: | ||
- "!**/**.md" |
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 |
---|---|---|
|
@@ -7,6 +7,25 @@ on: | |
pull_request: null | ||
|
||
jobs: | ||
changes: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
paths: ${{ steps.filter.outputs.changes }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@v2 | ||
with: | ||
disable-sudo: true | ||
egress-policy: block | ||
allowed-endpoints: > | ||
api.github.com:443 | ||
github.com:443 | ||
- uses: dorny/paths-filter@v3 | ||
id: filter | ||
with: | ||
base: ${{ github.ref }} | ||
filters: .github/filters.yml | ||
ci: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
@@ -61,3 +80,45 @@ jobs: | |
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
REV=${{ github.ref_name }} | ||
e2e-tests: | ||
runs-on: ubuntu-latest | ||
needs: changes | ||
if: ${{ contains(fromJSON(needs.changes.outputs.paths), 'src') }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.github_token }} | ||
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }} | ||
IMG: linode/linode-cloud-controller-manager:${{ github.ref == 'refs/heads/main' && 'latest' || format('pr-{0}', github.event.number) || github.ref_name }} | ||
LINODE_REGION: us-lax | ||
LINODE_CONTROL_PLANE_MACHINE_TYPE: g6-standard-2 | ||
LINODE_MACHINE_TYPE: g6-standard-2 | ||
WORKER_NODES: '2' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: 'go.mod' | ||
check-latest: true | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Install devbox | ||
uses: jetify-com/[email protected] | ||
|
||
- name: Setup CAPL Management Kind Cluster and CAPL Child Cluster For Testing | ||
run: devbox run mgmt-and-capl-cluster | ||
|
||
- name: Run E2E Tests | ||
run: devbox run e2e-test | ||
|
||
- name: Cleanup Resources | ||
if: always() | ||
run: devbox run cleanup-cluster |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
apiVersion: ctlptl.dev/v1alpha1 | ||
kind: Cluster | ||
product: kind | ||
kindV1Alpha4Cluster: | ||
name: caplccm | ||
nodes: | ||
- role: control-plane | ||
image: kindest/node:v1.29.2 |