Trying cloud-nuke to clear aws resources #10
Workflow file for this run
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
name: "Integration Tests" | |
on: | |
push: | |
schedule: | |
- cron: "0 0 * * MON" | |
workflow_dispatch: | |
jobs: | |
test-integration: | |
name: "Pytest Integration" | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
strategy: | |
matrix: | |
provider: | |
- aws | |
# - do | |
# - gcp | |
fail-fast: false | |
steps: | |
- name: "Checkout Infrastructure" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install Nebari | |
run: | | |
pip install .[dev] | |
conda install --quiet --yes conda-build | |
playwright install | |
- name: Retrieve secret from Vault | |
uses: hashicorp/vault-action@v2.5.0 | |
with: | |
method: jwt | |
url: "https://quansight-vault-public-vault-b2379fa7.d415e30e.z1.hashicorp.cloud:8200" | |
namespace: "admin/quansight" | |
role: "repository-nebari-dev-nebari-role" | |
secrets: | | |
kv/data/repository/nebari-dev/nebari/amazon_web_services/nebari-dev-ci role_name | AWS_ROLE_ARN; | |
kv/data/repository/nebari-dev/nebari/google_cloud_platform/nebari-dev-ci/github-nebari-dev-repo-ci project_id | PROJECT_ID; | |
kv/data/repository/nebari-dev/nebari/google_cloud_platform/nebari-dev-ci/github-nebari-dev-repo-ci workload_identity_provider | GCP_WORKFLOW_PROVIDER; | |
kv/data/repository/nebari-dev/nebari/google_cloud_platform/nebari-dev-ci/github-nebari-dev-repo-ci service_account_name | GCP_SERVICE_ACCOUNT; | |
kv/data/repository/nebari-dev/nebari/azure/nebari-dev-ci/github-nebari-dev-repo-ci tenant_id | ARM_TENANT_ID; | |
kv/data/repository/nebari-dev/nebari/azure/nebari-dev-ci/github-nebari-dev-repo-ci subscription_id | ARM_SUBSCRIPTION_ID; | |
kv/data/repository/nebari-dev/nebari/shared_secrets DIGITALOCEAN_TOKEN | DIGITALOCEAN_TOKEN; | |
kv/data/repository/nebari-dev/nebari/cloudflare/internal-devops@quansight.com/nebari-dev-ci token | CLOUDFLARE_TOKEN; | |
- name: 'Authenticate to GCP' | |
if: ${{ matrix.provider == 'gcp' }} | |
uses: 'google-github-actions/auth@v1' | |
with: | |
token_format: access_token | |
create_credentials_file: 'true' | |
workload_identity_provider: ${{ env.GCP_WORKFLOW_PROVIDER }} | |
service_account: ${{ env.GCP_SERVICE_ACCOUNT }} | |
- name: Set required environment variables | |
if: ${{ matrix.provider == 'gcp' }} | |
run: | | |
echo "GOOGLE_CREDENTIALS=${{ env.GOOGLE_APPLICATION_CREDENTIALS }}" >> $GITHUB_ENV | |
- name: Authenticate to AWS | |
if: ${{ matrix.provider == 'aws' }} | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: ${{ env.AWS_ROLE_ARN }} | |
role-session-name: github-action | |
aws-region: us-west-2 | |
- name: Set Environment AWS | |
if: ${{ matrix.provider == 'aws' }} | |
run: | | |
echo "AWS_REGION=us-west-2" >> $GITHUB_ENV | |
- name: Set Environment DO | |
if: ${{ matrix.provider == 'do' }} | |
run: | | |
echo "SPACES_ACCESS_KEY_ID=${{ secrets.SPACES_ACCESS_KEY_ID }}" >> $GITHUB_ENV | |
echo "SPACES_SECRET_ACCESS_KEY=${{ secrets.SPACES_SECRET_ACCESS_KEY }}" >> $GITHUB_ENV | |
echo "NEBARI_K8S_VERSION"=1.25.12-do.0 >> $GITHUB_ENV | |
# - name: Integration Tests | |
# run: | | |
# pytest --version | |
# pytest tests/tests_integration/ -vvv -s -m ${{ matrix.provider }} | |
- name: Set Environment AWS | |
if: ${{ matrix.provider == 'aws' && always()}} | |
run: | | |
wget https://github.com/gruntwork-io/cloud-nuke/releases/download/v0.32.0/cloud-nuke_linux_amd6 | |
mv cloud-nuke_linux_amd6 cloud-nuke | |
chmod +x cloud-nuke | |
./tests/scripts/nuke-aws.sh |