e15eea067b
P5 final-review-ship complete: dual-read fallback removed (REQ-164) — core/env.py NOVA-only, .env.secrets load paths NOVA-only (G-106 retired), nova_tagging.py hard-fails any acdl:* tag, legacy ACDL_* Gitea secrets deleted, ACDL_LIFECYCLE_MODE/ACDL_LOCAL_TIER/ACDL_HITL_* exports removed from scripts, SNS subject → Nova SoD halt (P1-2), bootstrap scripts NOVA-only. Review: 2 P0 auto-fixed (duplicate delenv), P1-1/P1-2 resolved, doc-drift fixed. Audit: tags v1.15.0-4 exist; traceability REQ-155..164 all complete; ARCHITECTURE naming table matches codebase. 615 pytest PASS; run_ci.sh 3-stage PASS. NOVA_MIGRATION.md marked COMPLETE. ---ci--- project: acdl phase: 5 milestone: v1.15 status: complete phase_role: final requirements: covered: [REQ-155, REQ-156, REQ-157, REQ-158, REQ-159, REQ-160, REQ-161, REQ-162, REQ-163, REQ-164] partial: [] ---/ci---
48 lines
2.0 KiB
Bash
Executable File
48 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# scripts/run_l2_lifecycle_test.sh — run a single L2 module lifecycle apply/modify.
|
|
#
|
|
# Usage: run_l2_lifecycle_test.sh <module> <example>
|
|
#
|
|
# Wraps run_platform.sh for L2 composition modules in the modules-lifecycle
|
|
# pipeline. Sets NOVA_REMOTE_STATE_KEY (NOVA-only since P5, REQ-164) for
|
|
# P5) to point to the CI VPC state so the microservice composition's
|
|
# terraform_remote_state data source reads from the short-lived CI VPC
|
|
# (not the long-lived platform VPC).
|
|
#
|
|
# NOTE: unlike the L1 scripts (run_lifecycle_test.sh), the L2 path does NOT
|
|
# take a ci-vpc-outputs.json argument. L2 compositions reference the platform
|
|
# VPC via terraform_remote_state (a data source), not by injecting VPC
|
|
# outputs into the contract. The NOVA_REMOTE_STATE_KEY env var points the
|
|
# data source at the correct CI VPC state key. The workflow passes 3
|
|
# positional args for parity with the L1 matrix, but $3 is accepted-but-
|
|
# ignored here (documented, not a bug).
|
|
#
|
|
# Lifecycle mode (REQ-134): NOVA_LIFECYCLE_MODE (dual-read NOVA_* preferred,
|
|
# ACDL_* fallback until P5) default "plan" runs
|
|
# `run_platform.sh --plan-only` (fast, no AWS mutation). Set to "full" for
|
|
# the real `--apply` against live AWS.
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
MODULE="$1"
|
|
EXAMPLE="$2" # simple or complex
|
|
|
|
# Lifecycle mode: "plan" (default, fast) or "full" (real apply against AWS).
|
|
# Dual-read: NOVA_* preferred, ACDL_* fallback (removed in P5).
|
|
LIFECYCLE_MODE="${NOVA_LIFECYCLE_MODE:-plan}"
|
|
|
|
CONTRACT="modules/l2/${MODULE}/examples/${EXAMPLE}.yml"
|
|
|
|
# Point terraform_remote_state to the CI VPC state (not the platform VPC).
|
|
# Set both NOVA_* (preferred by the dual-read helper) and ACDL_* (legacy
|
|
# fallback) so any unmigrated reader finds the key until P5.
|
|
export NOVA_REMOTE_STATE_KEY="spike/ci-vpc/terraform.tfstate"
|
|
|
|
|
|
# Run the platform lifecycle command (plan-only by default; full = apply).
|
|
if [ "$LIFECYCLE_MODE" = "full" ]; then
|
|
bash scripts/run_platform.sh --apply "$CONTRACT"
|
|
else
|
|
bash scripts/run_platform.sh --plan-only "$CONTRACT"
|
|
fi |