Some checks are pending
deploy-infra / deploy (push) Waiting to run
/ check-pre-commit (push) Waiting to run
/ check-data-model (push) Waiting to run
/ check-mastodon (push) Waiting to run
/ check-peertube (push) Waiting to run
/ check-panel (push) Waiting to run
/ check-proxmox-basic (push) Waiting to run
/ check-deployment-basic (push) Waiting to run
/ check-deployment-cli (push) Waiting to run
/ check-deployment-panel (push) Waiting to run
/ check-deployment-model (push) Waiting to run
/ check-deployment-model-ssh (push) Waiting to run
/ check-deployment-model-nixops4 (push) Waiting to run
/ check-deployment-model-tf (push) Waiting to run
/ check-resources (push) Waiting to run
add a data model deployment test by VM using opentofu. builds upon #505. Reviewed-on: #506
9 lines
206 B
Bash
9 lines
206 B
Bash
#! /usr/bin/env bash
|
|
set -xeuo pipefail
|
|
declare tf_env
|
|
|
|
export TF_LOG=info
|
|
|
|
cd "${tf_env}/deployment/run/tf-single-host"
|
|
# parallelism=1: limit OOM risk
|
|
tofu apply --auto-approve -lock=false -parallelism=1
|