Backend: - Add SecretsManager=9 type, Vault=550 and Consul=551 providers to IntegrationEnums - Create VaultConnectorPlugin (GET /v1/sys/health), ConsulConnectorPlugin (GET /v1/status/leader), EbpfAgentConnectorPlugin (GET /api/v1/health) - Register all 3 plugins in Program.cs and WebService.csproj - Extend Concelier JobRegistrationExtensions with 20 additional advisory source connectors (ghsa, kev, epss, debian, ubuntu, alpine, suse, etc.) - Add connector project references to Concelier WebService.csproj so Type.GetType() can resolve job classes at runtime - Fix job kind names to match SourceDefinitions IDs (jpcert not jvn, oracle not vndr-oracle, etc.) Infrastructure: - Add Consul service to docker-compose.integrations.yml (127.1.2.8:8500) - Add runtime-host nginx fixture to docker-compose.integration-fixtures.yml (127.1.1.9:80) Frontend: - Mirror SecretsManager/Vault/Consul enum additions in integration.models.ts - Fix Secrets tab route type from RepoSource to SecretsManager - Add SecretsManager to parseType() and TYPE_DISPLAY_NAMES E2E tests (117/117 passing): - vault-consul-secrets.e2e.spec.ts: compose health, probes, CRUD, UI - runtime-hosts.e2e.spec.ts: fixture probe, CRUD, hosts tab - advisory-sync.e2e.spec.ts: 21 sources sync accepted, catalog, management - ui-onboarding-wizard.e2e.spec.ts: wizard steps for registry/scm/ci - ui-integration-detail.e2e.spec.ts: detail tabs, health data - ui-crud-operations.e2e.spec.ts: search, sort, delete - helpers.ts: shared configs, API helpers, screenshot util - Updated playwright.integrations.config.ts with reporter and CI retries Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
104 lines
3.1 KiB
YAML
104 lines
3.1 KiB
YAML
# =============================================================================
|
|
# STELLA OPS - QA INTEGRATION FIXTURES
|
|
# =============================================================================
|
|
# Deterministic external-service fixtures used to prove successful UI onboarding
|
|
# for the providers currently exposed in the local Integrations Hub.
|
|
#
|
|
# Usage:
|
|
# docker compose -f devops/compose/docker-compose.integration-fixtures.yml up -d
|
|
# =============================================================================
|
|
|
|
networks:
|
|
stellaops:
|
|
external: true
|
|
name: stellaops
|
|
|
|
services:
|
|
harbor-fixture:
|
|
image: nginx:1.27-alpine
|
|
container_name: stellaops-harbor-fixture
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.1.1.6:80:80"
|
|
volumes:
|
|
- ./fixtures/integration-fixtures/harbor/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
networks:
|
|
stellaops:
|
|
aliases:
|
|
- harbor-fixture.stella-ops.local
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1/api/v2.0/health | grep -q 'healthy'"]
|
|
interval: 15s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 5s
|
|
labels:
|
|
com.stellaops.profile: "qa-fixtures"
|
|
com.stellaops.environment: "local-qa"
|
|
|
|
github-app-fixture:
|
|
image: nginx:1.27-alpine
|
|
container_name: stellaops-github-app-fixture
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.1.1.7:80:80"
|
|
volumes:
|
|
- ./fixtures/integration-fixtures/github-app/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
networks:
|
|
stellaops:
|
|
aliases:
|
|
- github-app-fixture.stella-ops.local
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1/api/v3/app | grep -q 'Stella QA GitHub App'"]
|
|
interval: 15s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 5s
|
|
labels:
|
|
com.stellaops.profile: "qa-fixtures"
|
|
com.stellaops.environment: "local-qa"
|
|
|
|
advisory-fixture:
|
|
image: nginx:1.27-alpine
|
|
container_name: stellaops-advisory-fixture
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.1.1.8:80:80"
|
|
volumes:
|
|
- ./fixtures/integration-fixtures/advisory/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
networks:
|
|
stellaops:
|
|
aliases:
|
|
- advisory-fixture.stella-ops.local
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1/health | grep -q 'healthy'"]
|
|
interval: 15s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 5s
|
|
labels:
|
|
com.stellaops.profile: "qa-fixtures"
|
|
com.stellaops.environment: "local-qa"
|
|
|
|
runtime-host-fixture:
|
|
image: nginx:1.27-alpine
|
|
container_name: stellaops-runtime-host-fixture
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.1.1.9:80:80"
|
|
volumes:
|
|
- ./fixtures/integration-fixtures/runtime-host/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
networks:
|
|
stellaops:
|
|
aliases:
|
|
- runtime-host-fixture.stella-ops.local
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1/api/v1/health | grep -q 'healthy'"]
|
|
interval: 15s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 5s
|
|
labels:
|
|
com.stellaops.profile: "qa-fixtures"
|
|
com.stellaops.environment: "local-qa"
|