About 50 results
Open links in new tab
  1. kubernetes - Argo CD App of Apps – How to automatically sync a ...

    Dec 24, 2025 · parent-app ├── app-a ├── app-b └── app-c When syncing app-a, we want app-c to be synced automatically as well. We are already using sync waves for ordering. Is there a supported …

  2. Argocd helm app with multiple value files - Stack Overflow

    Apr 13, 2023 · In the context of Argo CD, when you are declaring multiple values files under helm.valueFiles within an Application manifest, the last file in the list will take the highest precedence.

  3. kubernetes - Argo Workflow: Permission issue with `system ...

    Jul 5, 2024 · The service account is attempting to patch pods in the default namespace, but it only has patch permissions for the argo namespace. To fix this, run the workflow in the argo namespace or …

  4. Argo-workflows install and run in specific namespace

    Jan 7, 2025 · 0 I am trying to solve a scenario where argo-cd is installed cluster-wide, and we have to install the argo-workflows application within a separate namespace. Let's say team-1 has a …

  5. Argo - submit workflow from python with input parameter file

    Jul 2, 2022 · I basically want to run this command: argo submit -n argo workflows/workflow.yaml -f params.json through the official python SDK. This example covers how to submit a workflow …

  6. Argocd Connection to GITLAB repo - Stack Overflow

    Oct 19, 2020 · I am trying to add the Gitlab repo to Argo CD but it is throwing this error. Unable to connect HTTPS repository: unexpected client error: unexpected requesting …

  7. Argo Workflows template - Stack Overflow

    Jul 26, 2023 · Argo Workflows template - how to create conditional parameter based on runtime information Asked 2 years, 8 months ago Modified 7 months ago Viewed 5k times

  8. How can I use Argo Workflows templates in Helm?

    It is possible. I've been on a team that regularly deployed Helm-templated WorkflowTemplates. There are two ways to work around the Helm/Argo template tag collision. (As you know, the issue is that …

  9. ArgoCD - what need be done after build a new image

    Sep 6, 2022 · helm repo add argo https://argoproj.github.io/argo-helm helm install argocd-image-updater argo/argocd-image-updater Once image-updator is up and running, then you need to set a few …

  10. Getting a value from a ConfigMap in my Argo Workflow

    Nov 15, 2023 · If I use item.data.bucket_url or item.data['bucket_url'], it doesn't work and I get errors from Argo. I tried to manipulate the output using sprig but I wasn't able to find a solution. Basically I'm …