Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve CICD #345

Open
6 tasks
ygrishajev opened this issue Aug 30, 2024 · 4 comments
Open
6 tasks

Improve CICD #345

ygrishajev opened this issue Aug 30, 2024 · 4 comments
Assignees
Labels
P1 priority 1 feature/ enhancement

Comments

@ygrishajev
Copy link
Collaborator

Problem Statement

Our current CI pipeline is limited to building a Docker image without pushing it to any registry or automating the deployment process. To streamline our workflow and ensure better control over deployments, we need to extend the CI to handle deployments, use semantic-release for versioning, generate changelogs, and manage Docker images efficiently by promoting from staging to production without a re-build.

Proposed Solution

We propose the following CI/CD workflow:

  1. Feature Branch:

    • Run tests and validations exclusively within the feature branch.
    • Only allow rebases that are conflict-free to maintain branch integrity.
  2. Merge to Main:

    • When a branch is merged into the main branch, a workflow is triggered.
  3. Semantic Release for Versioning and Changelogs:

    • Implement semantic-release to automatically determine the version number based on conventional commits.
    • Automatically generate a changelog based on the commits.
    • The workflow updates the specific app's package.json with the new release version and commits the updated package.json and changelog to the repository.
    • Push these changes back to the origin.
  4. Release Candidate:

    • The workflow creates a GitHub release candidate (e.g., app_name/0.0.0-rc.0).
    • A Docker image for the release candidate is built, pushed to the registry, and deployed to the staging environment (specific to the app).
  5. Draft Release & Image Promotion:

    • The same workflow creates a draft release with the final version tag (e.g., app_name/0.0.0). If a draft with the same tag already exists, it is updated.
    • Once the draft release is published by a developer, the Docker image from the staging environment is promoted to the production environment without re-building, ensuring consistency and saving resources.
  6. Production Deployment:

    • A separate workflow is triggered upon publishing the draft release, promoting the staging Docker image to the production environment.

Tasks

  • Update CI pipeline to automate tests and validations on feature branches.
  • Implement semantic-release for version management and changelog generation.
  • Automate the process of committing and pushing updated package.json and changelog to the repository.
  • Configure the creation and deployment of release candidates to staging.
  • Set up the creation and management of draft releases.
  • Automate the promotion of Docker images from staging to production without re-building.

Benefits

This approach will:

  • Automate the deployment process while preserving control over when releases are published.
  • Utilize semantic-release for consistent and automated versioning and changelog generation.
  • Ensure that all versioning and changelog updates are committed and pushed to the repository automatically.
  • Improve efficiency by promoting Docker images from staging to production without the need for a re-build.
  • Reduce manual intervention and errors during the deployment process.

Additional Considerations

  • Ensure the workflow is compatible with our monorepo structure.
  • Validate the process thoroughly on a smaller app before applying it across the entire repository.
  • Document the new workflow so that all team members understand the process.
@JamesRyo
Copy link

JamesRyo commented Sep 6, 2024

@ygrishajev I am interested in this issue.
I want to contribute your team.
Is it possible to complete this issue?

@ygrishajev
Copy link
Collaborator Author

@JamesRyo Hey! Thanks for your interest! I think we could use some help here for sure. I'd like to approach this one step by step. Let me think what we could take off with here. I'll post later

@JamesRyo
Copy link

JamesRyo commented Sep 9, 2024

Thank you.
I am waiting for your post.

@baktun14 baktun14 added the P1 priority 1 feature/ enhancement label Sep 18, 2024
@JamesRyo
Copy link

JamesRyo commented Oct 8, 2024

Hello
I can handle this issue.
Could you give me opportunity to handle this issue?

@ygrishajev ygrishajev self-assigned this Oct 11, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 14, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 14, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 16, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit to ygrishajev/console that referenced this issue Oct 17, 2024
ygrishajev added a commit that referenced this issue Oct 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
P1 priority 1 feature/ enhancement
Projects
Status: In Progress (prioritized)
Development

No branches or pull requests

3 participants