skip to Main Content

We’re a small team of 4 developers and 2 testers and I’m a team lead of the team. Developers do their tasks each in separate branch. Our stack is ASP.NET MVC, ASP.NET Core, Entity Framework 6, MSSQL, IIS, Windows Server. We also use Bitbucket, Jira software to store code and manage issues.

For example, there is a task "add an about window". A developer creates branch named "add-about-window" and put all the code there. Once the task is done, I do code review and in case all was good, I merge the branch into some accumulating branch let’s name it "main". As a next step, I then manually deploy the updated "main" branch to test server with installed IIS, MSSQL. Once done I notify testers to test freshly uploaded app to make sure "add about window" is done correctly and works good. If testers find a bug, I have to revert the task branch merge from "main" branch and tell the developer to fix the bug in task’s branch. Once the developer fixed it, I merge the branch into "main" branch again and ask testers to check again. In the end the task branch gets deleted.

This is really inconvenient, time consuming and frustrating. I have heard about git flow (maybe this is kind of what we have now).

Ideally, I would like this process to be as this:

  1. Each developer still do work in separate branches.
  2. Once a task is done and all the task code is in task branch I do code review.
  3. Once code review is done and all found issues are fixed I just click "deploy"
  4. There is a Docker image which contains IIS, MSSQL, Windows. It also with some base version of the application we work on, fully tested and stable. Let’s say it’s on a state of some date, like start of the year.

The Docker image is taken and a new container starts.

  1. This Docker container gets fully initialized and then the code from a branch gets installed on the running container.
  2. This container then has own domain name like "proj-100.branches.ourcompany.com" ("proj-100" is task’s ID in Jira) which testers can go on and test.

This would definitely decrease time I spend on deployment and also will make the process more convenient and comfortable.

Can someone advice some resources I can learn about similar deployment models? Or maybe someone can share info on this. Any info will be very appreciated.

5

Answers


  1. This kind of setup is usually supported by a CICD tool coupled with Kubernetes.

    In both instances, the idea remains the same: create a ephemeral execution environment (a Docker container with the right components in it) for each pushed branch, in order to execute tests.

    That way, said tests can take place before any merge between a feature branch and an integration branch like main.
    If the tests pass, Jenkins itself could trigger an automatic merge (assuming the feature branch was rebased first on top of the target branch, main in your case)

    Login or Signup to reply.
  2. We have similar process in our team.
    We use gitlab-ci.

    Hence there are some out of docker infrastructure (nginx with test stand dns),
    we just create dev1, dev2 … stands (5 stands for team of 10 developer and more than 6 microservices). For each devX stand and each microservice we have deploy to devX button in our CI-CD. And we just reserve in slack devX for feature Y on time of tests after deploy. Whan tests are done and bugs are fixed we merge to main branch and other feature brunch can be deployed and tested on devX stand.

    Login or Signup to reply.
    • regardless of your stack, and before talking about the solutions, what you describe is the basic use case of any CI-CD process. all the exhausting manual steps you described, can be done with any CI tool.
    • now, let’s consider what you already have, and talk about the steps for your desired solution – you’re using bitbucket, which already gives you at least steps 1 and 2 – merging only approved PRs into master/main.
    • step 3 is where we start the CI automation process – you define a webhook upon certain actions in the bitbucket repo, which triggers a CI job/pipeline(can be a Jenkins server, gitlab-ci, or many other CI solutions). this way, you won’t even need a "deploy" button, since the merging action can trigger the job, which can automatically run unit tests, integration tests(if you define them), build artifacts/docker-images and finally deploy.
    • step 4 needs some basic understanding of the docker containers design – a docker image is not a VM. it has its use cases and relevant scenarios, and more importantly an advised architecture guideline to follow.
      to make it short, I’ll only mention the principle of separation – each service should be in a separate container. it allows upscaling and easier debugging, and much more. which means – what you need is not a docker image that contains your entire system, but an orchestration of containers, each containing an independent software unit, with a clear responsibility. and here Kubernetes comes into play.
    • back to the CI job – after the PR merge, the job starts, running the pre-defined unit tests, building the container, and uploading to your registry.
    • moving to CD – depending on your process, after the updated and tested docker images are in your registry(could be artifactory/GitLab registry/docker registry…), the CD job can take any image it needs, and deploy them in your Kubernetes cluster. and that’s it! the process is done.


    A word of advice – if you don’t have a professional DevOps team, or a good understanding of docker, CI-CD process, and Kubernetes, and if your dev team is small(and unfortunately it seems so) you may want to consider hiring a DevOps company to build the DevOps/CICD infrastructure for you, preferably with a completely managed DevOps solution and then do a handover. everything I wrote is just the guideline and basic points, to give you the big picture. good luck!

    Login or Signup to reply.
    • As a next step, I then manually deploy the updated "main" branch to test server with installed IIS, MSSQL.
    • Once done I notify testers to test freshly uploaded app to make sure "add about window" is done correctly and works good.
    • If testers find a bug, I have to revert the task branch merge from "main" branch and tell the developer to fix the bug in task’s branch.
    1. If there are multiple environments then devs could deploy themselves into them. Even a single "dev" environment they can deploy to would greatly help. The devs should be able to deploy themselves and notify the testers without going through you.
    2. That the deploy is "manual" is suspicious. How manual? Ideally it should just be a few button clicks. Sometimes you can even have it so that pushing to a branch does a deploy (through webhooks).
    3. You should be able to deploy from branches besides main. What that means or looks like can vary a lot but the point is that if you’re forcing everything there and having to revert when it doesn’t work you’re creating a lot of unneeded work. Ideally there should be some way to test locally. If there really can’t be then you need to at least allow a way to deploy from any branch (or something like force pushing to a branch called ‘dev’ or something).

    From another angle, unless the application gets horribly broken you don’t necessarily need to rollback changes unless a release is coming soon. You can just have it fixed in another pull request.

    All in all the main problem here sounds like there’s only a single environment for testing, the process to deploy to it is far too manual, and the devs have no way to deploy to it themselves. This sort of thing is a massive bottle neck. Having a burdensome process to even begin to test things takes a big toll on everyone’s morale — which can be worse than the loss in velocity. You don’t necesscarily need every dev to be able to spin up as many environments as they want at the push of a button but devs do need some autonomy to be able to test.

    Having the application run in Docker containers can greatly help with running it locally as well as making the deployment process simpler. I’ve tried to stay away from specific product suggestions because this is more of a process problem it sounds like.

    Login or Signup to reply.
  3. All the other answers are here great still I would like to add my piece of advice.

    Recently I was also working on a product and we were three team members. It was a node.js project. If you are on AWS then you can use the AWS pipeline. This will detect pushes from a specific GitHub branch and the changes will get deployed to the server. The pipeline service has a build stage too. You can also configure slack notifications.
    But you should have at least two environments production and dev to check if deployment is working properly on dev.
    AWS also has services like AWS Code Commit and AWS Code Deploy.

    This is just a basic solution. You don’t actually need fancy software to set up ci/cd.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search