feat: pivot psql-stack to EKS Auto Mode defaults (#10) #15
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: on-push-main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/on-push-main.yaml" | |
| - ".github/workflows/on-version-tagged.yaml" | |
| - ".gitops/**" | |
| - "apis/**" | |
| - "examples/**" | |
| - "functions/**" | |
| - "tests/**" | |
| - "upbound.yaml" | |
| permissions: | |
| packages: write | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| validate: | |
| uses: unbounded-tech/workflows-crossplane/.github/workflows/validate.yaml@feat/multi-api-support | |
| with: | |
| examples: | | |
| [ | |
| { "example": "examples/psqlstacks/minimal.yaml", "api_path": "apis/psqlstacks" }, | |
| { "example": "examples/psqlstacks/standard.yaml", "api_path": "apis/psqlstacks" }, | |
| { "example": "examples/psqlclusters/minimal.yaml", "api_path": "apis/psqlclusters" }, | |
| { "example": "examples/psqlclusters/standard.yaml","api_path": "apis/psqlclusters" }, | |
| { "example": "examples/psqlbranches/same-namespace.yaml", "api_path": "apis/psqlbranches" } | |
| ] | |
| error_on_missing_schemas: true | |
| test: | |
| uses: unbounded-tech/workflows-crossplane/.github/workflows/test.yaml@feat/multi-api-support | |
| e2e: | |
| uses: unbounded-tech/workflows-crossplane/.github/workflows/e2e.yaml@feat/multi-api-support | |
| with: | |
| # See on-pr.yaml — 90 min for the full Ready chain. | |
| timeout-minutes: 90 | |
| cleanup-timeout-minutes: 30 | |
| version-and-tag: | |
| name: Version and Tag | |
| needs: | |
| - validate | |
| - test | |
| - e2e | |
| uses: unbounded-tech/workflow-vnext-tag/.github/workflows/workflow.yaml@v1.21.0 | |
| secrets: | |
| DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
| with: | |
| useDeployKey: true |