Questions tagged [continuous-deployment]
Use this tag for questions about automatically deploying software to a production environment as part of a CI pipeline. For questions about manual deployment to production use the [continuous-delivery] tag.
140 questions
-1 votes
2 answers
104 views
AWS Amplify vs Vercel vs Expo
I want to deploy intergrate React.js with configuration done Prior to operation. Which one to choose? It seems to me they are all the same. Vercel AWS Amplify Expo
0 votes
0 answers
24 views
Azure DevOps pipelines - Dynamic environment selection based on branch
We try to configure Azure DevOps pipeline to select dynamic the environment name Hard-coding the environment: production works as expected, but we need to select environment based on branch. The ...
0 votes
0 answers
23 views
Deploying an Application During a Pull Request (PR) in Azure DevOps
I want to add a pre-validation step, to be run during a pull request, in Azure DevOps, but I am not finding out a way to do that through the YAML specifications documented by Microsoft. Today, I can ...
0 votes
1 answer
76 views
When to use AWS amplify and when to use Expo + React-Native?
Say developer team is trying to build a full-stack app client+server+database (e.g:chatGTP) which requirements are admin page android application IOS application web application Tablet support Is it ...
0 votes
1 answer
365 views
Argo rollouts rollback is being reverted by argo cd auto sync policy
I'm using Argo Rollouts and ArgoCD. When I try to rollback a rollout in argo rollouts, it is immediately reverted by ArgoCD as I've enabled auto-sync. How should I tackle this problem? If there was a ...
2 votes
1 answer
746 views
how to deploy a docker compose project in gitlab CI/CD
New to the Devop world so my terminology may be limited or incorrect. I have a self-hosted gitlab server. I had a "hello world" container project that spun up a "hello world" ...
0 votes
1 answer
286 views
Green/Blue Deployments with multiple development teams
I am working in Azure in an AKS cluster environment. The environment has several clusters separated from each other. Each cluster is hosting several containers of services, each of them is developed ...
1 vote
0 answers
79 views
Liquibase - CICD pipeline failure
Question: Azure CICD pipeline is failing with the below error. There hasnt been any recent changes to the environment/YAML. The "Replace tokens in Liquibase properties" step in the Deploy ...
0 votes
1 answer
92 views
Tool for deployment via series of Powershell Scripts
I am responsible for continuing to develop legacy software. The software is run as a service on a handful of servers. For making a new release of a component of the software the following steps are ...
1 vote
1 answer
184 views
What would be the best approach or tool to deploy one-off SQL scripts?
A vendor is supplying one-off "hot fixes" and I am trying to streamline these deployments best I can. Currently I am going out to an FTP site, downloading the SQL scripts and manually ...
0 votes
1 answer
474 views
Full deployment of Azure Function via bicep
We have a deployment running in an azure devops server and base currently on az cli, now we want to go for bicep. I created bicep definitions for the resources what works easily. But now I got stuck ...
1 vote
1 answer
84 views
Is there a distinction between Flux and GitOps Toolkit?
What is the difference between Flux and the GitOps Toolkit? Is Flux v2 simply a distribution of the GitOps Toolkit components (such as the source controller for polling/scraping git repos, the ...
2 votes
1 answer
522 views
Best practice multiple pipelines into production
Working with a larger corporate. They are planning on opening a second pipeline for a hybrid mobile app. This second pipeline will be for hotfixes straight into production. My gut feeling is that this ...
0 votes
1 answer
325 views
How are you managing automated deployments with active development on the next release while features are still being tested in QA?
CI/CD tool: Azure Devops Services Branching Strategy: Git Flow Build Triggers: Auto build Dev branch on PR merges, Auto build on PR creation Release Triggers: Create release on every build Deploy ...
0 votes
1 answer
148 views
Release rollback approaches?
I've got an old monolithic project using MariaDB and PHP that I'm trying to put on CI/CD. The project has DB migrations to update the DB state. My current CD is built on top of AWS CodeCommit + ...