-
Notifications
You must be signed in to change notification settings - Fork 8
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
4 changed files
with
82 additions
and
2 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,34 @@ | ||
name: e2e peer-pods | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
- uses: ./.github/actions/setup_nix | ||
with: | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
cachixToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | ||
- name: Login to Azure | ||
uses: azure/login@a65d910e8af852a8061c627c456678983e180302 # v2.2.0 | ||
with: | ||
creds: ${{ secrets.CONTRAST_CI_INFRA_AZURE }} | ||
- name: Cleanup .azure dir | ||
run: | | ||
rm "$HOME/.azure/{commandIndex.json,versionCheck.json}" | ||
- id: resourcegroup | ||
working-directory: contrast | ||
run: | | ||
echo "rg=contrastpp$RANDOM" >> "$GITHUB_OUTPUT" | ||
- name: Test peer-pods | ||
run: | | ||
export azure_resource_group="${{ steps.resourcegroup.outputs.rg }}" | ||
nix run .#scripts.test-peerpods | ||
- name: Terminate cluster | ||
if: always() | ||
run: | | ||
az group delete --name "${{ steps.resourcegroup.outputs.rg }}_caa_cluster" --yes |
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,36 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2024 Edgeless Systems GmbH | ||
# SPDX-License-Identifier: AGPL-3.0-only | ||
|
||
set -euo pipefail | ||
|
||
# just create AKS-PEER-SNP | ||
# just get-credentials AKS-PEER-SNP | ||
# just node-installer AKS-PEER-SNP | ||
|
||
cat <<EOF | kubectl apply -f - | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nginx | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: nginx | ||
replicas: 1 | ||
template: | ||
metadata: | ||
labels: | ||
app: nginx | ||
spec: | ||
runtimeClassName: kata-remote | ||
containers: | ||
- name: nginx | ||
image: nginx | ||
imagePullPolicy: Always | ||
EOF | ||
|
||
if ! kubectl wait --for=condition=available --timeout=5m deployment/nginx; then | ||
kubectl describe pods | ||
exit 1 | ||
fi |