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

aqtinstall trouble Installing Qt with QtWebview Module in a Windows Docker Container

I'm currently facing an issue while trying to install Qt 5.15.2 using aqt within a Windows Docker container. I'm in the process of setting up a CI/CD pipeline, and one of the requirements is to have Qt installed in the Windows Docker container.…
jdenozi
  • 212
  • 1
  • 11
0
votes
0 answers

Error in Argocd notifications github commit status

I'm facing error when the notification is triggered in argocd. I'm trying to setup github commit status when the app is deployed so I followed these docs (and they are latest) ArgoCd Notifications Here are my config…
0
votes
0 answers

how do i fix remote branch being ahead in this yml workflow

i am trying to rebase the dev-ci branch whenever something gets pushed to the dev branch but i keep getting the error that remote branch is ahead. here is my code name: Development to Development-CI Sync on: push: branches: -…
0
votes
0 answers

How to install a specific .NET framework on an azure deployment slot?

I've just updated a bunch of projects in a solution to .NET 7, the pipeline runs and builds but the release to a deployment slot fails claiming it doesn't have the .NET 7 SDK installed but the pipeline build says it's installed it. What's going on…
Matt Searles
  • 2,656
  • 2
  • 16
  • 18
0
votes
1 answer

Change the ArgoCD login and navbar icon

I am using version v2.4.3+471685f and I've made changes to the 'argocd-cm' configmap to update the ArgoCD icon by modifying my-styles.css as follows: .my-styles.css: | .nav-bar__logo img { content: url(https://My-logo.png); } However,…
0
votes
0 answers

How would you run end to end testing with playwright and Github actions with your backend/infrastructure?

I have a project that has a Next.js/React frontend and python/postgresql backend. Currently, I have setup a Github actions that runs playwright tests that tests a frontend feature branch with the deployed live backend (master). However, I'm not sure…
0
votes
1 answer

How to automate deployment of event hub and azure data explorer

I have my service hosted in two regions. In both the regions, I want separate event hubs and ADX cluster, database and 1 table. In my use case the service will send the event datas to same region's event hub. From event hub, the events will be…
0
votes
0 answers

GITLAB(CI/CD pipeline) Unable to deploy deployment.yaml file from gitlab pipeline to aws eks cluster

I can able to deploy the project in locally successfully and hence the error is not related to API versions I believe but in the gitlab pipeline getting the below error. $ kubectl apply -f deployment.yaml error: unable to recognize…
0
votes
0 answers

Do I need public key to deploy applicationn in Gitlab on deployment server

Question. In A GitLab Ci/CD pipeline. Do i need a public key to deploy my application from github to my deployment server. Becuase i followed a tutorial from tech with nana (Ci/CD pipline minute 54) in which the author only used a private key in…
0
votes
0 answers

How can I set up code signing for my Azure Data Factory pipelines to ensure code integrity?

I am looking for guidance on implementing code signing in Azure Data Factory(ADF) to enhance the security of our data integration pipelines. I want to ensure that the code executed within the pipelines is authentic and hasn't been tampered with by…
0
votes
0 answers

Jenkins Pipeline Ansible is stuck on SSH connection

I have a job in my Jenkins pipeline which deploys the application on the infrastructure created by terraform. Terraform creates infrastructure and appends IP addresses inside aws_hosts file. I am stuck on ansible stage with below output in Jenkins…
shubham
  • 367
  • 6
  • 14
0
votes
0 answers

Running default before_script for all stages

I have the following gitlab-ci file: include: # To fetch the latest template, use: - template: Terraform.latest.gitlab-ci.yml default: before_script: - export TF_PATH=$(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA | cut -d/…
0
votes
1 answer

How do I integrate a json file generated from a gitlab job in project p1 into a python script in project p2?

I have two projects in gitlab,p1, p2. In p1 '.gitlab-ci.yml' file it performs a terraform module deployment in the the apply stage it generates a json file which is located in the artifacts. In p2 we have python script that creates a pdf out of a…
0
votes
0 answers

How can I load Bitwarden Secrets into docker-compose

Im trying to load Secrets (to be more precise an .env File) from Bitwarden into a docker-compose.yml File using only a Bitwarden access Token. So more or less like in the Githubactions but as a docker-compose.yml. From the very slim Documentation i…
0
votes
0 answers

Flex-based Python data flow Terraform fails to run the template, yet the gcloud dataflow flex-template run command succeeds

I am attempting to deploy a Python based Dataflow Flex Template job using Terraform, written in Apache beam SDK. I have already built the Flex Template JSON file and stored it in my GCS bucket (container_spec_gcs_path). However, I am encountering an…
1 2 3
99
100