Questions tagged [argoproj]

Argoproj is a collection of tools that provide workflows and events for Kubernetes

Argoproj is a collection of tools for getting work done with Kubernetes:

  • Argo Workflows - Container-native Workflow Engine
  • Argo CD - Declarative GitOps Continuous Delivery
  • Argo Events - Event-based Dependency Manager
  • Argo CI - Simple CI based on GitHUb and Argo Workflows
96 questions
0
votes
1 answer

Getting periodic slack notifications for disabled auto-sync feature in ArgoCD

We recently had an issue with one of our releases and had to rollback all our services manually. While doing so we had to disable the ‘auto-sync’ feature. After reverting the faulty PR, we forgot to enable the auto-sync again and the apps were…
rishav
  • 441
  • 9
  • 27
0
votes
1 answer

How to get the status of a pipeline run within a component, running on Vertex AI?

Previously, using Kubeflow Pipelines SDK v1, the status of a pipeline could be inferred during pipeline execution by passing an Argo placeholder, {{workflow.status}}, to the component, as shown below: import kfp.dsl as dsl component_1 =…
Marcus
  • 943
  • 5
  • 21
0
votes
1 answer

ArgoCD Your connection is not private

I have implemented SSO login to argocd through Active Directory. When I try to access argocd, I get error : Your connection is not private Attackers might be trying to steal your information from argo-cd.daa.pks.dell.com (for example, passwords,…
Divya
  • 199
  • 1
  • 1
  • 5
0
votes
1 answer

how to get the nodes that that ended successfully during execution on argo

I used this line o get the failed pods: workflow.failures , so I would like to get the same info about the nodes that have finished successfully. Is there a command to get the information about the ones that ended correctly??. I'm using Argo 3
javier_orta
  • 457
  • 4
  • 15
0
votes
1 answer

AMQP - Argo-events: argo-workflow not triggered

I am trying to run an argo-workflow triggered by event-source that listens to messages published on RabbitMQ. I followed the exact steps in here: AMQP-Argo Events The RabbitMQ controller pod is running: eventbus-controller-7b5bd8b7fd-nggrc 1/1…
natt010
  • 43
  • 4
0
votes
1 answer

How to show timestamps for each line in Argo Workflows pods?

I'm trying to figure out how to show a timestamp for each line of STDOUT of an Argo Workflows pod. The init and wait containers by default show a timestamp, but never the main container. The Argo CLI has a --timestamp flag when viewing logs. Also…
wsams
  • 2,499
  • 7
  • 40
  • 51
0
votes
1 answer

Argo template not able to read from output file location

An outer-template which calls inner-template twice since there are 2 steps. Inner template is a simple container which write some text to /command_output/result.txt. The workflow outputs attempts to read it thru: - name: previous_step_output …
colossal
  • 529
  • 1
  • 5
  • 22
0
votes
2 answers

Task with loop in Argo workflow

I want to introduce a for loop in a workflow that consists of 2 individual tasks. The second will be dependent on the first. Each one should use different templates. The second should iterate with {{item}}. For each iteration I want to know if the…
0
votes
1 answer

User is not admin and does not have permissions to use host bind mounts for resource

I am trying run a argo WorkflowTemplate in kubernetes cluster in a custom namespace. Here are the quick specs. namespace: appns serviceaccount: default # no Roles or RoleBindings workflowtemplate spec.templates - container with volume…
Samiron
  • 5,169
  • 2
  • 28
  • 55
0
votes
1 answer

how to run an akka streaming app in argo and kubernetes?

How can you run an akka streams application in argo and kubernetes, I found documentation about kubernetes and akka cluster, but I don't need an akka cluster, do I just need to run an ephemeral akka application with many actors; or is an akka…
javier_orta
  • 457
  • 4
  • 15
0
votes
1 answer

"ignore_changes" feature for secrets in Kubernetes

I have this very simple secret definition apiVersion: v1 kind: Secret metadata: name: mysecret data: username: YWRtaW4= password: MWYyZDFlMmU2N2Rm I want to keep the definition of the secret in my git repo but obviously real values should not…
Boris
  • 1,054
  • 1
  • 13
  • 23
0
votes
0 answers

Unable to run Argo workflow due to an opaque error

I want to trigger a manual workflow in Argo. I am using Openshift and ArgoCD, have scheduled workflows that are running successfully in Argo but failing when triggering a manual run for one workflow. The concerned workflow is: apiVersion:…
Aviral Srivastava
  • 4,058
  • 8
  • 29
  • 81
0
votes
3 answers

Argo workflows UI not working with AWS Ingress Controller

I am trying to setup a AWS ALB Ingress on EKS. But the Argo UI is not working. But the port forwarding is working fine. apiVersion: extensions/v1beta1 kind: Ingress metadata: annotations: alb.ingress.kubernetes.io/healthcheck-path: / …
0
votes
1 answer

Variable number of input artifacts into a step

I have a diamond style workflow where a single step A starts a variable number of analysis jobs B to X using withParam:. The number of jobs is based on dynamic information and unknown until the first step runs. This all works well, except that I…
Johnny5
  • 11
  • 5
0
votes
0 answers

Service does not connect with Rollout

When I try to achieve Bule/Green Deployment using Argo Rollout, I can't figure out why it doesn't seem to connect to the Service and the Pod created using Rollouts. We have service and Ingress(ALB Ingress Controller) as active and preview…
jadejoe
  • 663
  • 2
  • 13
  • 24