diff --git a/shared/OrgMyLife/MIGRATION_TO_GITLAB.md b/shared/OrgMyLife/MIGRATION_TO_GITLAB.md index 6f030a4..9bb6c4c 100644 --- a/shared/OrgMyLife/MIGRATION_TO_GITLAB.md +++ b/shared/OrgMyLife/MIGRATION_TO_GITLAB.md @@ -25,3 +25,7 @@ In order to get the CI/CD and automation processes running again on GitLab, the 4. **Runner Configuration**: - Ensure the GitLab Runners have the necessary capabilities (e.g., Node.js environments) by utilizing standard Docker images in the `.gitlab-ci.yml` (e.g., `image: node:20`). + +5. **Optimize Pipeline Compute Efficiency**: + - Analyze and optimize the pipeline execution to drastically reduce compute time. + - **Context:** The previous runner consumed ~2000 minutes of compute time in just 10 days, which is highly inefficient for a small application. Strategies like reducing cron frequencies, utilizing caching, and conditionally running jobs should be implemented.