-
-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trust that docker is installed and use a Kind cluster.
This PR relies on that Docker is preinstalled on all platforms, and uses a Kind cluster instead of kubeception. This removes the need for a special proprietary kubeception token when running the integration tests, and also opens up for running tests that require Docker on all platforms. Docker is not installed on macOS by default. The Silicon chip lacks support for nested virtualization. This will be remedied shortly, but for now, the macOS tests will run on amd64 only, and use a special action to install Docker. Signed-off-by: Thomas Hallgren <[email protected]> Signed-off-by: Thomas Hallgren <[email protected]>
- Loading branch information
Showing
4 changed files
with
18 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,6 @@ on: | |
- labeled | ||
|
||
env: | ||
KUBECONFIG: ${{ github.workspace }}/kubeconfig.yaml | ||
DTEST_KUBECONFIG: ${{ github.workspace }}/kubeconfig.yaml | ||
TELEPRESENCE_REGISTRY: localhost:5000 | ||
DTEST_REGISTRY: localhost:5000 | ||
SCOUT_DISABLE: "1" | ||
|
@@ -49,11 +47,8 @@ jobs: | |
runners: | ||
- ubuntu-latest | ||
- ubuntu-arm64 | ||
- macos-latest # this runner uses arm64 | ||
- windows-2019 | ||
clusters: | ||
- distribution: Kubeception | ||
version: "1.29" | ||
- macos-13 # Ensure amd64 (see https://github.com/marketplace/actions/setup-docker-on-macos) | ||
- windows-latest | ||
runs-on: ${{ matrix.runners }} | ||
needs: build_image | ||
steps: | ||
|
@@ -63,18 +58,8 @@ jobs: | |
ref: "${{ github.event.pull_request.head.sha }}" | ||
- name: install dependencies | ||
uses: ./.github/actions/install-dependencies | ||
- name: install dependencies for arm64 | ||
if: runner.os == 'Linux' && runner.arch == 'arm64' | ||
run: | | ||
sudo rm -f /etc/apt/sources.list.d/google-chrome.list | ||
sudo apt-get update -y | ||
sudo apt-get install -y socat gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu make jq uidmap | ||
- name: install docker for arm64 | ||
if: runner.os == 'Linux' && runner.arch == 'arm64' | ||
run: | | ||
curl -fsSL https://get.docker.com -o get-docker.sh | ||
sudo sh get-docker.sh | ||
dockerd-rootless-setuptool.sh install | ||
- name: Create k8s Kind Cluster | ||
uses: helm/kind-action@v1 | ||
- name: Build client | ||
env: | ||
TELEPRESENCE_VERSION: ${{needs.build_image.outputs.telepresenceVersion}} | ||
|
@@ -84,16 +69,6 @@ jobs: | |
env: | ||
TELEPRESENCE_VERSION: ${{needs.build_image.outputs.telepresenceVersion}} | ||
run: make client-image | ||
- name: Create cluster | ||
uses: datawire/infra-actions/[email protected] | ||
with: | ||
kubeconfig: ${{ env.KUBECONFIG }} | ||
kubeceptionToken: ${{ secrets.DEV_TELEPRESENCE_KUBECEPTION_TOKEN }} | ||
kubeceptionProfile: small | ||
lifespan: 7200 | ||
distribution: ${{ matrix.clusters.distribution }} | ||
version: ${{ matrix.clusters.version }} | ||
gkeCredentials: '{"project_id": "foo"}' # See https://github.com/datawire/infra-actions/issues/66 | ||
- name: Download prebuilt docker image | ||
uses: actions/download-artifact@v3 | ||
with: | ||
|
@@ -110,6 +85,7 @@ jobs: | |
env: | ||
DEV_TELEPRESENCE_VERSION: ${{needs.build_image.outputs.telepresenceVersion}} | ||
TELEPRESENCE_VERSION: ${{needs.build_image.outputs.telepresenceVersion}} | ||
DTEST_KUBECONFIG: ${{ env.HOME }}/.kube/config | ||
uses: nick-fields/retry/@v3 | ||
with: | ||
max_attempts: 3 | ||
|
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