continuous-deployment Questions
2
Solved
Use trigger for dynamic select test job
prepare_test:
image: $CI_REGISTRY/platform/docker-images/vault:1.8
variables:
CONTEXT_TEST: |
include:
# PRODUCT
- project: 'gitlabci/integration-test'...
Simplistic asked 15/1, 2022 at 22:31
3
Solved
In Azure Pipelines YAML, you can specify an environment for a job to run in.
jobs:
- deployment: Deploy
displayName: Deploy
environment: $(environment)
Passing a new value to the pipeline shou...
Cavein asked 12/10, 2021 at 20:13
3
Solved
Let's suppose I have 3 environments on Azure: Dev, Test and Prod. I have the same pipeline for building and deploying the resources and the code for each one of the environments except for two diff...
Landowner asked 10/11, 2020 at 22:28
4
I have the following access policy set on an IAM user in my AWS account. The policy references the bucket name which is "xo-staging".
{
"Version": "2012-10-17",
&quo...
Enidenigma asked 13/12, 2021 at 11:11
3
Solved
I am using the GitHub cache action, but I noticed that the no cache will be created if the job fails. From the docs:
If the job completes successfully, the action creates a new cache with the co...
Arnst asked 2/3, 2020 at 15:20
3
I've been trying to make an application but keep getting this error.
proj list:
argocd proj list
NAME DESCRIPTION DESTINATIONS SOURCES CLUSTER-RESOURCE-WHITELIST NAMESPACE-RESOURCE-BLACKLIST SIGN...
Mainis asked 8/8, 2023 at 21:17
16
Solved
I need the latest artifact (for example, a snapshot) from a repository in Artifactory. This artifact needs to be copied to a server (Linux) via a script.
What are my options? Something like Wget ...
Alidaalidade asked 21/12, 2012 at 11:10
2
Solved
(I already asked in the Microsoft Forum but didn't get an answer.)
I have an App Service using a private registry with Continuous Deployment enabled. The app is running totally fine but the Webhoo...
Ipecac asked 15/2, 2019 at 17:2
1
I try to sign a WPF ClickOnce application with EV certificate stored on a HSM from Gemalto. I have a Continuous Deployment (CD) configured and I want to sign automatically without user interaction,...
Najera asked 25/2, 2019 at 12:1
3
I am trying to migrate a set of microservices from Docker Swarm, to AWS ECS using Fargate.
I have created an ECS cluster. Moreover, I have initialized repositories using the ECR, each of which con...
Polled asked 10/1, 2019 at 15:13
1
Consider an enterprise mobile app available for both Android and iOS, with build and release pipelines.
What I'm trying to achieve is a promotional model for the release pipeline, such that the ap...
Sonyasoo asked 11/9, 2019 at 14:45
5
Solved
The task create:release creates a new release. How do we add the artifact core.zip in task create:release?
prepare:release:
stage: prepare_release
before_script:
- echo "Setting up packages...
Normand asked 17/5, 2021 at 13:43
3
Solved
I got this workflow:
name: Build and Release
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: ac...
Teriann asked 30/5, 2023 at 7:6
2
Solved
We have a full-blown setup using AWS EKS with Tekton installed and want to use ArgoCD for application deployment.
As the docs state we installed ArgoCD on EKS in GitHub Actions with:
- name: Insta...
Epirogeny asked 8/2, 2022 at 7:40
2
Solved
I have uploaded a file named example.conf in the repository's secure files and want to download that file while running the CI / CD pipeline script. I followed the Project-level Secure Files sectio...
Rigsby asked 26/4, 2023 at 10:38
5
Solved
I am very new to Gitlab CI/CD and I have read its documentation very carefully about creating a new CI/CD process using .gitlab-ci.yml file. As I have found out in order to have Continuous Deployme...
Olympe asked 3/6, 2021 at 11:48
3
I am looking to dive into a project using AppSync. So far I have been able to find plenty of articles and such online giving all the steps as to what buttons to click in order to get a sample proje...
Cruciate asked 9/8, 2018 at 21:33
3
Solved
I'm using Azure DevOps, to handle PBI, repos, PRS, and builds, but all my infrastructure, including Kubernetes is managed by AWS.
There's not documentation, neither "the right and easy way" of how...
Longwinded asked 6/7, 2019 at 12:39
2
Solved
We have a test environment that runs on the test branch, I would like to run an Github Action that keeps test up to date when pushes are made to main, but I just cant seem to get it. When I run the...
Spurrier asked 19/6, 2023 at 18:39
3
Solved
I have the weirdest error in GitHub Actions that I have been trying to resolve for multiple hours now and I am all out of ideas.
I currently use a very simple GitHub Action. The end goal is to run ...
Blossomblot asked 21/7, 2020 at 10:16
5
Solved
I have a monorepo with two workflows:
.github/workflows/test.yml
name: test
on: [push, pull_request]
jobs:
test-packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: te...
Misapprehension asked 18/10, 2019 at 19:34
3
I use Firebase in React and when initializing Firebase, I use environment variables fetched from my .env file with dotenv. I want to build and deploy my React app to Firebase hosting, I use GitHub ...
Maguire asked 21/3, 2020 at 11:37
4
Solved
I'd like to run my build pipeline only when my repo is tagged with certain specific release tags. I can get the tag value from the CODEBUILD_WEBHOOK_TRIGGER environment variable and I can condition...
Barnard asked 16/12, 2018 at 19:5
3
I'm working on a proof of concept to deploy using flyway's command-line tool from a centralized server to deploy to multiple database platforms. (MySQL, Postgres, and SQL Server)
I'm able to deplo...
Coed asked 15/1, 2016 at 17:19
2
I am using gitlab and deploying it to google app engine for my nodejs application.
Google Service access is added as variable in gitlab settings
SERVICE_ACCOUNT_KEY:
{
"type": "se...
Dutiful asked 12/12, 2020 at 13:42
1 Next >
© 2022 - 2025 — McMap. All rights reserved.