Questions tagged [continuous-delivery]
Use this tag for questions about manually deploying software to a production environment as part of a CI pipeline. For questions about automatic deployment to production use the [continuous-deployment] tag.
62 questions
1 vote
0 answers
41 views
How to Ensure ArgoCD Is Monitoring Dockerhub?
Context I deployed an application on a Kubernetes cluster using Helm and ArgoCD. ArgoCD is tasked with monitoring a GitLab repo (called manifests) which contains the Helm chart and application config. ...
0 votes
1 answer
200 views
Static Analysis for Feature Flag Safety
In a CD environment with new features hidden behind feature flags, there must be a way to ensure that code being pushed to production is effectively zero change? Particularly in a change management ...
0 votes
1 answer
39 views
Why is the development of a REST-API Webserver Application with less expected changes after its short term initial build a DevOps project?
I am thinking about setting up a project where a one-year development / built phase of a rest-API Server is planned. Providing an initial version in three months and deploying updates every month ...
0 votes
1 answer
283 views
What is manual, what is automatic in Continuous Delivery?
I've read lots of articles about the concept on the internet. I thought I got it, but some statements in other articles make me confused. In order to simplify and clarify things, I'll presume I use ...
1 vote
3 answers
3k views
What is the best practice for a multibranch pipeline configuration?
I'm messing around with a multibranch pipeline in jenkins. Currently we have zero pipelines in production and everything is using freestyle jobs which is very sloppy. I have my own multibranch ...
2 votes
3 answers
275 views
What is the idiomatic way to reload EKS/Kube configs when a new image is pushed to ECR
We are using CircleCI to automate the building of images when merges are detected on our release branch. Those images are then being pushed to ECR, but I am unsure of the best way to refresh some or ...
2 votes
1 answer
68 views
Is there a better model for my CI/CD cycle?
I am having some troubles finding a better model for my CI/CD cycle. This is mainly gitflow issue. My current model : We have 2 bitbucket branches : master and develop. Both are linked via webhooks to ...
0 votes
1 answer
581 views
Pull request and merge actions in CI/CD
The CI/CD pipeline supports pipelines per branch but no pipeline for feature branches is triggered automatically. There are pipelines deployed for the following branches: development, master. The ...