Version matrix
This tool displays a list of all environment stages (e.g. dev
, stage
, prod
) and their metadata:
- Currently deployed version
- Deployment time
- List of services deployed to the environment stage
- Links to services available through HTTPS
Configuration
You can configure version matrix via AWS SSM Parameter Store. You can find the details in [Optional] Set tools env variables.
Deployment
Deployment of the version matrix service contains two steps. First, you need to run build command:
pnpm nx run status-dashboard:build
After successful build you can run AWS deployment script:
pnpm nx run status-dashboard:deploy
This command should be called only after saas aws set-env [STAGE_NAME]
command.
Updating version on CI pipeline
Application environment version and individual services versions are updated automatically on the CI/CD pipeline using
pnpm nx run tools:upload-version
and pnpm nx run tools:upload-service-version
commands.
Find more about pnpm nx run tools:upload-version
and pnpm nx run tools:upload-service-version
commands in the
tools
package API Reference.