feat(ray-on-eks): batch LLM inference blueprint with Iceberg + tokeno… #103
Workflow file for this run
This file contains hidden or 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: e2e-parallel-destroy-only | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| TFDestroy: | ||
| description: 'Destroy TF Automatically (false/true) - Default: true' | ||
| required: true | ||
| default: 'true' | ||
| concurrency: e2e-parallel-destroy | ||
| jobs: | ||
| deploy: | ||
| name: Run e2e test | ||
| runs-on: ubuntu-latest | ||
| # These permissions are needed to interact with GitHub's OIDC Token endpoint. | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| include: [] | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| - name: Setup backend | ||
| # Un-comment remote backend for use in workflow | ||
| run: sed -i "s/# //g" ${{ matrix.example_path }}/versions.tf | ||
| - name: Auth AWS | ||
| uses: aws-actions/configure-aws-credentials@e1e17a757e536f70e52b5a12b2e8d1d1c60e04ef # v1-node16 | ||
| with: | ||
| role-to-assume: ${{ secrets.ROLE_TO_ASSUME }} | ||
| aws-region: us-west-2 | ||
| role-duration-seconds: 3600 | ||
| role-session-name: GithubActions-Session | ||
| - name: Setup Terraform | ||
| uses: hashicorp/setup-terraform@633666f66e0061ca3b725c73b2ec20cd13a8fdd1 # v2 | ||
| with: | ||
| terraform_version: 1.0.0 | ||
| - name: Terraform Destroy | ||
| working-directory: ${{ matrix.example_path }} | ||
| run: | | ||
| terraform init -upgrade=true | ||
| terraform destroy -target=module.eks_blueprints_kubernetes_addons -no-color -input=false -auto-approve | ||
| terraform destroy -target=module.eks_blueprints -no-color -input=false -auto-approve | ||
| terraform destroy -no-color -input=false -auto-approve | ||