fix(rdb): allow updates from bssd to lssd if new node type has enough space #4850
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: Acceptance Tests | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
products: | |
- Account | |
- AppleSilicon | |
- Baremetal | |
- Billing | |
- Block | |
- Cockpit | |
- Container | |
- Domain | |
- DocumentDB | |
- Function | |
- Iam | |
- Instance | |
- Iot | |
- IPAM | |
- Job | |
- K8S | |
- Lb | |
- Marketplace | |
- MNQ | |
- Object | |
- Rdb | |
- Redis | |
- Registry | |
- Secret | |
- ServerlessSQLDB | |
- Tem | |
- VPC | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run Acceptance Tests | |
run: go test -v ./... -timeout=2h -run "TestAccScaleway(DataSource)?${{ matrix.products }}.*" | |
env: | |
TF_LOG: DEBUG | |
TF_ACC: 1 | |
TF_UPDATE_CASSETTES: false | |
TF_TEST_DOMAIN: scaleway-terraform.com | |
TF_TEST_DOMAIN_ZONE: tf | |
SCW_DEBUG: 0 | |
SCW_ACCESS_KEY: "SCWXXXXXXXXXXXXXFAKE" | |
SCW_SECRET_KEY: "11111111-1111-1111-1111-111111111111" | |
SCW_ENABLE_BETA: true |