46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
# =============================================================================
|
|
# STELLA OPS TESTING ENVIRONMENT CONFIGURATION
|
|
# =============================================================================
|
|
# Environment template for docker-compose.testing.yml
|
|
# Uses different ports to avoid conflicts with development/production.
|
|
#
|
|
# Usage:
|
|
# cp env/testing.env.example .env
|
|
# docker compose -f docker-compose.testing.yml --profile ci up -d
|
|
#
|
|
# =============================================================================
|
|
|
|
# =============================================================================
|
|
# CI INFRASTRUCTURE (different ports to avoid conflicts)
|
|
# =============================================================================
|
|
|
|
# PostgreSQL Test Database (port 5433)
|
|
TEST_POSTGRES_PORT=5433
|
|
TEST_POSTGRES_USER=stellaops_ci
|
|
TEST_POSTGRES_PASSWORD=ci_test_password
|
|
TEST_POSTGRES_DB=stellaops_test
|
|
|
|
# Valkey Test (port 6380)
|
|
TEST_VALKEY_PORT=6380
|
|
|
|
# RustFS Test (port 8180)
|
|
TEST_RUSTFS_PORT=8180
|
|
|
|
# Mock Registry (port 5001)
|
|
TEST_REGISTRY_PORT=5001
|
|
|
|
# =============================================================================
|
|
# GITEA CONFIGURATION
|
|
# =============================================================================
|
|
|
|
TEST_GITEA_PORT=3000
|
|
TEST_GITEA_SSH_PORT=3022
|
|
|
|
# =============================================================================
|
|
# SIGSTORE TOOLS
|
|
# =============================================================================
|
|
|
|
# Rekor CLI and Cosign versions (for sigstore profile)
|
|
REKOR_CLI_VERSION=v1.4.3
|
|
COSIGN_VERSION=v3.0.4
|