Skip to content

Commit

Permalink
chore: E2E tooling fixes. (#989)
Browse files Browse the repository at this point in the history
* chore: Update docker buildx GHA to v3.

* fix: Set linked_clone to false during tests.
  • Loading branch information
kaiwalyajoshi authored Feb 13, 2024
1 parent c3b2b16 commit 992123b
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aws-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/azure-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Run E2E test for ${{ matrix.os }} with ${{ matrix.buildConfig }} configuration
uses: magefile/mage-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-devkit-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build and Push multi arch devkit image
run: make devkit-image-push-manifest
2 changes: 1 addition & 1 deletion .github/workflows/gcp-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Setup GOOGLE_APPLICATION_CREDENTIALS
run: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/podman-aws-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ami.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build Image ${{ matrix.os }} with ${{ matrix.buildConfig }} for Azure
uses: magefile/mage-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-gcp-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Setup GOOGLE_APPLICATION_CREDENTIALS
run: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-kib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
password: ${{ secrets.DOCKER_PASS }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Release
run: make release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-vsphere-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Setup SSH agent with private key to connect with pre-configured bastion host
uses: webfactory/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vsphere-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
password: ${{ secrets.NEXUS_PASSWORD }}

- name: Setup buildkit
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Setup SSH agent with private key to connect with pre-configured bastion host
uses: webfactory/[email protected]
Expand Down
1 change: 1 addition & 0 deletions test/infra/vsphere/packer-vsphere-airgap.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ packer:
network: "Airgapped"
resource_pool: "Users"
ssh_username: "kib"
linked_clone: "false"

0 comments on commit 992123b

Please sign in to comment.