docs: Add GPU NodePool verification and creation guide for EKS Auto Mode #2
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: pre-commit | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| - uses: hashicorp/setup-terraform@v3 | |
| with: | |
| terraform_version: "1.12.2" | |
| - name: install tf_lint | |
| run: curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash | |
| - name: Install terraform-docs | |
| uses: jaxxstorm/action-install-gh-release@4304621e8c48d66093a8a214af5d5b5bc3b3d943 # v2.0.0 | |
| with: | |
| repo: terraform-docs/terraform-docs | |
| tag: v0.20.0 | |
| - name: install trufflehog | |
| run: curl -sSfL https://raw.githubusercontent.com/trufflesecurity/trufflehog/main/scripts/install.sh | sh -s -- -b /usr/local/bin | |
| - uses: pre-commit/action@v3.0.1 |