About 50 results
Open links in new tab
  1. Fixing out of sync warning in Argo CD - Stack Overflow

    May 18, 2021 · 5 Argo CD shows two items from linkerd (installed by Helm) are being out of sync. The warnings are caused by the optional preserveUnknownFields: false in the spec section: …

  2. 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 …

  3. Argo CD error="server.secretkey is missing" - Stack Overflow

    Jan 8, 2023 · Argocd failed to load after restart. In the argocd server logs I see that server.secretkey is missing but I didn't see where it is declared and I think it should be generated by argo server the ser...

  4. Argo Workflow always using default serviceaccount

    Nov 20, 2020 · The Argo installation does not control which ServiceAccount Workflows use. According to the Argo docs, When no ServiceAccount is provided [when the Workflow is submitted], Argo will …

  5. Argo Workflows template - how to create conditional parameter based …

    Jul 26, 2023 · I have an Argo workflow where one of the templates needs to receive a parameter that depends on an input variable, in this case, the repository. spec: arguments: parameters: - name: pat...

  6. 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 …

  7. 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.

  8. How do I view the logs from a task in Argo? - Stack Overflow

    4 I am using Argo and have a question about the workflow of workflows example. (https://github.com/argoproj/argo-workflows/blob/master/examples/workflow-of-workflows.yaml) …

  9. How to trigger argo workflow from an API request?

    Jun 8, 2021 · Use Argo Events Argo Events is a separate but closely-related project. It can accept a variety of inputs (webhooks, pub/sub messages, etc) and then trigger a Workflow. Argo Events could …

  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 …