Questions tagged [continuous-deployment]

A software engineering approach in which teams keep producing software in short cycles and ensure that the software can be released to production at any time.

Continuous Deployment (CD) is a continuous automation process where deployment of software to production systems is fully automated. This ensures that fixes and new features can be brought to production quickly.

This usually includes having a good set of automated tests to automatically verify the fitness of the software for production use.

See the article Continuous Delivery on Wikipedia for more information.

2667 questions
0
votes
1 answer

MSbuild make /property:OutDir skip missing files

Is there someway to get MSBuild to skip over missing files when using /p:OutDir? I am working with TeamCity to continuously build a large webproject. I have written a program that handles our continuous deployment but I am running into an issue with…
Patrick Lorio
  • 5,520
  • 11
  • 45
  • 74
0
votes
1 answer

Jenkins read wrong default value of booleanParam from my Jenkinsfile

pipeline { agent any parameters { booleanParam(name: 'RUN_Deploy', defaultValue: false) } stages { stage('Deploy') { when { allOf { expression { …
0
votes
0 answers

Retaining source files after deploying from Git to Azure Web App

I would like to be able to read the the Razor view source files unders the Pages folder after deploying my website from the Git repo to an Azure Web App but currently the source files are not retained on Azure after the deployment. Can I modify the…
RadarBug
  • 707
  • 1
  • 6
  • 13
0
votes
0 answers

creating build on remote server: itch.io API error (400): /wharf/builds: invalid game

I've created github actions to automate CI/CD, for a Unity project and deploy it on itch.io. But when the deploy action runs, it gives me the error :creating build on remote server: itch.io API error (400): /wharf/builds: invalid game. Any idea what…
0
votes
0 answers

How to make CI-CD with Azure Databricks and Azure DevOps to update repos

I'm struggling with CI-CD on Azure DevOps, we had a workflow in which we were able to use Databricks CLI command "databricks repos update" to update our repo in Databricks workspace, but we were using a user personal access token for that, now we…
0
votes
0 answers

How can I provide multiple destination (clusters) when using Git Generator (in an ArgoCD applicationset)?

I am leveraging Git Directory Generator and want to see if there is a way to provide multiple destinations (Multiple K8s clusters) In the list generator, I can provide elements with cluster, url & path. How can I provide the same when using Git…
0
votes
0 answers

Jenkins cannot connect to nodes

I had a jenkins node connected and working in my jenkins server, however two days ago all agents running in the server lost the connection and they began to show this error: java.io.IOException: Could not copy remoting.jar into '/home/desarrollo' on…
0
votes
0 answers

Ansible: Failed to connect to the host via ssh with gitlab CI/CD

I wanted to set gitlab CI/CD with ansible for my Ubuntu server. in my gitlab-ci.yml I have the following commands: before_script: - ansible --version - mkdir secret - echo "$ANSIBLE_SSH_KEY" > secret/ansible.key ## import ansible ssh key -…
0
votes
1 answer

How to use OIDC with AWS Amplify in Bitbucket Pipeline?

I'd like to run tests on my React app first and after they were successful, I'd like to create an Amplify app that gets manually deployed within the pipe. My current pipeline is failing and looks like this: pipelines: default: - step: …
0
votes
1 answer

How do I push service container in Github Actions to the registry?

I have a Github Action that needs to grab database dump, put it into dabase, run SQL queries on it, and push the new containerised version of the database to ghcr. How do I push the service container instead of the main one? What I have right…
0
votes
0 answers

Next.js Deployment on Google Cloud VM via GitHub Actions and Docker - Facing 502 Error After Nginx Configuration

I'm working on a project involving the deployment of a Next.js application on a Google Cloud Virtual Machine. To streamline the deployment process, I used GitHub Actions for CI/CD, and I've encapsulated my application within a Docker container for…
0
votes
0 answers

Too much database load when multiple instances refresh cache from DB at scheduled time

There are 3000 instances of a service running to serve the trafffic. On midnight a job is scheduled in which each of these instances have to refresh their Local cache from database. Since this results in huge number of db connections, DB load…
nanosoft
  • 2,913
  • 4
  • 41
  • 61
0
votes
0 answers

Approval Rule based off of Lines of Code in Merge Request

Is there a way either through something in a pipeline or through an approval rule to specify that an approval is required if a merge request has more than x lines of code? Looked into Approval Rules but could only find rules based on folders/areas…
0
votes
0 answers

GitVersion config not working on main branch

I am using a gitversion for automatic versioning and it is working like a charm. I am using it for a nuget package and the develop creates a package with alpha tag and release branches create packages with beta tags. Problem occurs when I merge a PR…
Branislav B.
  • 509
  • 7
  • 21
0
votes
0 answers

Cannot parse key privately (github actions CD. deploy meteor app to ec2)

I am trying to setup up a simple CD workflow through github actions that deploys my meteor starter project on ec2 whenever i make a commit to the main branch. I have successfully configure my ec2 and mup.js to be able to deploy the project by…