Questions tagged [cicd]

Use for questions related to practices of CICD (Continuous Integration and Continuous Delivery or Continuous Deployment) and its related tools.

2046 questions
0
votes
1 answer

Passing Gitlab CI variables to Google Cloud Secret Manager

I have variables in my gitlab CI that I want to pass to GCP secret manager through my CI/CD piepeline. I found this command that allows me to create a single secret : gcloud secrets create secret-id --data-file="/path/to/file.txt" But when it comes…
0
votes
0 answers

I am seeing authentication error in Tosca execution in jenkins for multiuser workspace

I am setting up jenkins using a multiworkspace repository of Tosca and I am facing issue in authentication .The Same tests works fine in jenkins when i run through local workspace but when I run the tests in jenkins using multiuser workspace it…
ShilpaSP
  • 1
  • 2
0
votes
0 answers

Download Gitlab Artifacts from parent brach (ref)

I have a job the compresses files from a repo when a new tag is pushed and makes that compressed file available as an artifact. I want to use new tags to trigger the job and use a static curl command to download the latest artifact regardless of tag…
PeteKW
  • 1
0
votes
1 answer

Accounting for build order / interdependencies between CI pipelines

Suppose I have two libraries A and B, where B has a dependency on A. Both A and B are set up for Continuous Integration with their own respective pipelines. A change in A will cause the "A" pipeline to run and deploy a new version, and likewise for…
Sigenes
  • 445
  • 2
  • 13
0
votes
1 answer

Azure Pipeline - Control deployment with SonarQube Quality Gates

I am using Azure yaml pipeline with SonarQube and here's how my pipeline is setup: - checkout: self - task: SonarQubePrepare@5 displayName: 'SonarQube - Prepare' inputs: …
0
votes
1 answer

getting Error permission denied while changes github action server

sftp> put -r ./dist/* /var/www/project_1 Entering ./dist/assets/ Couldn't stat remote file: No such file or directory remote open("/var/www/project_1/common.js"): Permission denied . . . This error has been seen after updating the deployment…
0
votes
0 answers

How to use Github Action for deploying web-app to DigitalOcean`s droplet?

I have read this SO for deploying My small PHP`s Project. So far, I am successfully in CI process, that marks by I already push My app docker image with latest tag on it. But, for newbie like me, what's step for sending my Docker image into a…
Fadly Dzil
  • 2,154
  • 3
  • 34
  • 85
0
votes
1 answer

About CI/CD for kubernetes

I am using kubernetes. I can do docker builds from GitHub and upload them to docker hub on our own. However, I would like to automate the creation and updating of pods. How about Circle CI for example? Or is it possible to use the k8s library to…
manaty
  • 3
  • 1
0
votes
0 answers

Run gitlab pipeline when commit to other branches except develop and master, also while merge to master branch

Task is to trigger gitlab pipeline when commit to other branches except develop and master, also while merge to master branch only. Below code pipeline runs for all commits and merges stages: backup pull build deploy before_script: Run ssh-agent…
0
votes
1 answer

Separating of tests build form application build in CI/CD without rebuilding

I have a project with files: main.cpp - application sum.h sum.cpp tester.cpp - tester application I build it with CMake, CMakeLists.txt: cmake_minimum_required(VERSION 3.10) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set…
amplifier
  • 1,793
  • 1
  • 21
  • 55
0
votes
1 answer

Not able to read Custom Environment variable on Vercel using Angular

It looks like Vercel is ignoring my Stage environment variables. It just read the Production environment variables. I committed my changes on stage branch and Vercel is deploying it correctly on Preview(stage) environment, but it don't read my…
Pankwood
  • 1,799
  • 5
  • 24
  • 43
0
votes
1 answer

Need help on yaml side

I have one repo it has 3 yaml files for frontend, backend & admin frontend. Developer push on backend works on every time. My 3 yamls running but frontend & admin frontend folder code have no changes in that time i need only backend yaml only…
Saran raj
  • 11
  • 2
0
votes
0 answers

Jenkins job unstable after adding Ansible playbook command

I successfully connected my Jenkins server to my Ansible server/control node and it built a stable and successful job after I made a change to my github too. But when I actually created an ansible playbook to create and tag a docker image and then…
codestein
  • 59
  • 6
0
votes
0 answers

Push code to Google Optimize from Ci/CD pipeline

We currently use Google Optimize for A/B Testing, which involves copy/pasting multiple javascript snippets into the Optimize website for each variant. I'd like to be able to do this from our CI/CD pipeline, rather than it being a manual and…
peter.swallow
  • 905
  • 14
  • 38
0
votes
0 answers

Gitlab CI/CD $CI_COMMIT_TAG pipeline issue

Would like to replace branch to master if commit tag contains test with the below code. just trigger: trigger: project: testing-prj/test1 branch: develop rules: - if: '$CI_COMMIT_TAG =~ /^rel/' - if:…
RamK
  • 99
  • 2
  • 8