mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-05-12 22:39:26 +00:00
Adds a workflow for release tests: - builds a docker image for launching nodes in the tests (basically has additional nimflags set) - creates a K8s cluster in Digital Ocean - one pod in the cluster is dedicated as the test runner (uses the logos-storage-nim-cs-dist-tests:latest image) - the release will fail if the docker image build or the release tests fail - the K8s cluster is torn down after the tests finish (failure or not)
17 lines
428 B
HCL
17 lines
428 B
HCL
terraform {
|
|
backend "s3" {
|
|
endpoints = {
|
|
s3 = "https://fra1.digitaloceanspaces.com"
|
|
}
|
|
bucket = "codex-infra-terraform"
|
|
key = "clusters/codex-dist-tests-do-ams3/terraform.tfstate"
|
|
region = "fra1"
|
|
|
|
skip_credentials_validation = true
|
|
skip_requesting_account_id = true
|
|
skip_metadata_api_check = true
|
|
skip_region_validation = true
|
|
skip_s3_checksum = true
|
|
}
|
|
}
|