Questions tagged [gitlab-auto-devops]

23 questions
0
votes
0 answers

Docker-in-docker/GitLab CI: adding and using credential helper

For my organization I am building a GitLab CI/CD pipeline for one of our projects. One job in this pipeline will be executed on a Docker executor GitLab runner running on one of our own servers. The job involves using image docker:20.10.20 together…
0
votes
1 answer

Keep GitLab environment running in Docker container

I'm aiming to deploy an environment for testing. It's a PHP application, and I could simply serve the PHP files using the embedded server. My .gitlab-ci.yml is plain simple: docker_test: stage: deploy image: php:7.2 rules: - if:…
0
votes
0 answers

GITLab with Multiple Servers

I have gitlab setup and deployed: We are pushing to 3 different Development Servers, 3 different Test Servers, and ultimately 9 different production servers. Each server has separate configurations, i.e. Dev Server 1 reads from Database x, while Dev…
Nathan
  • 73
  • 4
0
votes
2 answers

How to force install an rpm?

I have a gitlab pipeline where I will be installing latest rpm everytime. Some times, even if the target machine is changed manually, the rpm should be installed successfully. But some how I am getting below error. Loaded plugins:…
Kalel
  • 134
  • 1
  • 4
  • 16
0
votes
0 answers

How to check either of variable exist in the gitlab rules?

I have a gitlab rule condition like below. '$ACTION && $REGION && $ROLE_ARN && $PACKAGEURL && $ACTION == "new" && $CLOUD_PLATFORM == "aws" && $ROLE_ARN != "" && $PACKAGEURL != "" && $REGION != ""' Want to modify it a bit so that, it should check…
Kalel
  • 134
  • 1
  • 4
  • 16
0
votes
1 answer

How to resume a manual step in pipeline with gitlab api?

I have a pipeline as below. pipeline First two are automatic and the last two jobs are manual. When I ran the curl command to run the pipeline, as below. curl -X POST \ --fail \ -F token=TOKEN \ -F "ref=REF_NAME" \ -F…
Kalel
  • 134
  • 1
  • 4
  • 16
0
votes
1 answer

How do I have to configure certmanaager when using a gitlab managed cluster?

I use a scaleway kubernetes cluster v1.21.1 managed by gitlab. To do this, I created a Cluster Management Project with the default template. https://docs.gitlab.com/ee/user/clusters/management_project_template.html (only ingress & certmanager…
0
votes
1 answer

How pass dotenv file to my deployment using Gitlab's Auto DevOps

Recently I was deployed a EKS cluster and connect it with our Gitlab.com group, I already deployed some examples and templates from Gitlab and all works fine. Now I’ll want to deploy my Node.js based app. I set STAGING_ENABLED because I’m interest…
Rodrigo Moreno
  • 243
  • 1
  • 2
  • 11
1
2