35 Questions to Ask While Creating a Deployment Pipeline
When you give developers the power to be able to deploy code, you have to be careful throughout the process that ensues.
Join the DZone community and get the full member experience.
Join For FreeSo, you want to enable your developers to be able to deploy code. It makes sense; we live in a rather microservices-oriented world today. If you do that, then you are going to give your developers some great power. When you give them that power, you have to be careful of that process.
In this post, we are going to ask all the questions one should ask when approaching the methodology of continuous deployment and giving that power.
Note that containerized deployment is a rather new world. Most of those in the world of microservices are not there yet. In these cases, the effort required for your developers to deploy is higher. We have to adopt and create techniques for proper orchestration of our servers. We will cover the challenge in this first post. As you will see, this challenge was not fully resolved by modern orchestration tools such as Kubernetes.
The Challenge
Deployment is not just taking an app and deploying it. Why not, you ask? Let's see all of the processes and questions that we can (and should!) raise about deployments done by developers.
How do you enforce so that developers can deploy only services they are allowed to?
Do you want your developers to view other deployment processes?
Are you going to purchase a tool or a set of tools, or going to check out open-source solutions, or maybe, do you need to develop an in-house solution? Which deployment tools are available? Will they answer your needs?
How do you integrate with all internal pre-existing services (source control, bug tracker, service deployment tracking, and any other already existing services which are affected by such a new process)?
This deployment tool that we are going to build- note that it’s another service and thus should be installed also with a deployment tool. Should this deployment tool be deployed by the deployment tool itself?
Do we need infrastructure alerts? (Those are both alerts tightly related to the deployment tool itself if it’s stuck or down.)
Applicative alerts: We want to have alerts on the status of the microservices itself, so do we need any new alerts as part of automating the deployment process?
How do we validate that a microservice has been installed successfully? What if it has started up, but in the wrong version?
Which stronger validations do we want to enforce once we let developers deploy their services (obviously, developers come from different places)?
What if we want to block deployments for a certain region or segment, or for certain teams? How can we achieve that? Who should have access to this block?
Do we want a project per microservice deployment, or do we want a global deployment tool where developers can choose the project they want to deploy from a list?
Are there new conventions and enforcements we might want to enforce? Should RND project names, for example, match RPM name? Or do we rather configuration?
How do we support gradual rollout?
Should we allow deployment to cross the data center or let the developer deploy the data center by data center?
Should developer care if we have multiple data centers? (All he wants is to run his code.)
Should our tool support both legacy platforms and modern ones such as Kubernetes and Swarm or do we solve one problem at a time? Should we have a shared interface?
How do we integrate users management with existing user and group management already existing?
What if a developer post-deployment needs to access (SSH) one of his services and do an operation? Should we enable him or her to do that? Or direct him or her to the production team for such access?
Which additional visibility on services should we enable to the developer?
How do we manage rollback? Now that developers are going to run more deployments, we need to support a quick rollback, possibly one-click rollback. Is it the same process as upgrade- only a different version or is it actually a different rollback? What if rollback fails? Do we provide enough tools for developers to mitigate such problems? Or should we not?
What is the discovery mechanism? Do we let developers deploy to specific services, or only by a general discovery mechanism (such as service name deployment)?
If a developer has a pull request, should he merge it externally to the deployment process or have the deployment pipeline do it for him?
Which info should we show the deployer prior to him making a deployment? Should we show warnings?
If a deployment failed in one of the stages, how do we make sure the target deployment environment gets clean?
If the deployment process involves changes to the database, how will the deployment pipeline support that? Should it support it at all?
How can the deployment process support both standard microservices and other types of jobs such as Hadoop jobs or Spark jobs? Should we mess with jobs at all? Maybe at future phases?
Should the deployment process support the deployment of intrastructure- and production-related changes such as network configuration?
How will the deployment pipeline be integrated with an already-existing system and end-to-end tests?
Would you like to make sure the same deployment pipeline is run on production, QA, CI, local development environment, or going to fall into the trap of having it a production-only tool?
Which insights and analytics do you want to derive from such a deployment pipeline?
Which system tests and end-to-end tests are you going to create for this deployment pipeline and how are you going to run them? (Testing the deployment tool itself.)
How do you create such a pipeline process without introducing yet another layer to manage, could this layer save other deployments layers from happening or would it add an additional one?
Which resiliency mechanisms do you need in this deployment tool? When would you want to retry, for example? Which timeouts do you need in place?
Is the deployment pipeline a microservice? Is it a set of microservices? A monolith, God forbid (or God bless)?
Many more. But you get the idea.
Summary
In this post, we saw that the continuous deployment pipeline is not just the usual Developer commits > Tests are run > Deploy to CI > QA > Production, assuming all is successful. There is much more complexity in it, and if you want to do it right, you have the ask the right questions. Now that we have asked some of the main questions, in the next posts, we will try to analyze this subject more and even answer some of the questions.
Opinions expressed by DZone contributors are their own.
Comments