Skip to main content

Default Workflow

When you create a new environment, Atmosly automatically generates a Default Workflow for each application service. This workflow contains the core pipeline stages pre-configured based on your project and environment settings.


Default Stages

StageDescription
SourcePre-configured with the repository, branch, and source settings from the environment's service configuration.
BuildPre-configured with the Dockerfile path, build context, and container registry from the service settings.
PushPushes the built image to the container registry configured for the service.
DeployDeploys to the environment where the service was created, using automatic deployment by default.
note

Workflows operate at the service level. If your application has multiple services (e.g., frontend and backend), each service gets its own distinct default workflow.


Accessing Default Workflows

  1. Navigate to your Project from the left menu.
  2. Select the service whose workflow you want to view.
  3. The default workflow will be listed under the service's workflow section.
Default workflow in service list


Workflow Details View

Clicking on a workflow opens the Workflow Details view — a visual representation of the pipeline stages built with a drag-and-drop canvas.

Workflow details view

From this view, you can:

ActionDescription
Add ToolsIntegrate security scanners (Trivy, detect-secrets, SonarQube) or custom scripts between stages.
Modify StagesClick on any stage node to adjust its configuration — source, build, push, or deploy settings.
Execute WorkflowClick Update & Execute Now to save changes and trigger the workflow immediately.
View Execution HistoryAccess past execution runs, analytics, and logs.
View ReportsAccess security and quality scan reports from previous executions.
Manage CI VariablesDefine build-time variables from the bottom-left panel.

Deploy-Only Default Workflow

When a service is configured with a Container Registry source (instead of a Git repository), Atmosly generates a deploy-only workflow that skips the Build and Push stages:

StageDescription
SourceReferences a pre-built image from the configured container registry and image tag.
DeployDeploys the referenced image to the target environment.
tip

Deploy-only workflows are ideal when your images are built externally and you only need Atmosly to handle deployment.