Skip to content

NimTechnology

Trình bày các công nghệ CLOUD một cách dễ hiểu.

  • Kubernetes & Container
    • Docker
    • Kubernetes
      • Ingress
      • Pod
    • Helm Chart
    • OAuth2 Proxy
    • Isito-EnvoyFilter
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Vault
    • Longhorn – Storage
    • VictoriaMetrics
    • MetalLB
    • Kong Gateway
  • CI/CD
    • ArgoCD
    • ArgoWorkflows
    • Argo Events
    • Spinnaker
    • Jenkins
    • Harbor
    • TeamCity
    • Git
      • Bitbucket
  • Coding
    • DevSecOps
    • Terraform
      • GCP – Google Cloud
      • AWS – Amazon Web Service
      • Azure Cloud
    • Golang
    • Laravel
    • Python
    • Jquery & JavaScript
    • Selenium
  • Log, Monitor & Tracing
    • DataDog
    • Prometheus
    • Grafana
    • ELK
      • Kibana
      • Logstash
  • BareMetal
    • NextCloud
  • Toggle search form

[ArgoWorkflows] Lesson2: Demo Steps Template and DAG Template on ArgoWorkflows

Posted on January 4, 2022April 26, 2023 By nim No Comments on [ArgoWorkflows] Lesson2: Demo Steps Template and DAG Template on ArgoWorkflows

Ở bài đâu tiên chúng ta chỉ mới tạo những simple templates.
Chả thấy kiểu như pipeline.

Contents

Toggle
  • 1) Steps Template serial
  • Steps Template parallel
  • Suspend Template
  • DAG Template
  • Summary

1) Steps Template serial

Sau đây chúng ta có như pipeline hiện thì trên ui như sau.

apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
  name: wf-steps-templates-serial
spec:
  entrypoint: steps-templates-serial
  templates:
  - name: steps-templates-serial
    steps:
    - - name: step1
        template: task-template
    - - name: step2
        template: task-template
    - - name: step3
        template: task-template

  - name: task-template
    script:
      image: python:3.8-slim
      command: [python]
      source: |
        print("Nimtechnology - Task executed.")
Bạn thấy chỗ này là 2 gạch ngang “- -“

THì bạn cứ apply hày create đều được

log của container.

Steps Template parallel

Giờ các bạn muốn steps chạy parallel thì làm sao

apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
  name: wf-steps-templates-parallel
spec:
  entrypoint: steps-templates-parallel
  templates:
  - name: steps-templates-parallel
    steps:
    - - name: step1
        template: task-template
    - - name: step2
        template: task-template
      - name: step3
        template: task-template
    - - name: step4
        template: task-template

  - name: task-template
    script:
      image: python:3.8-slim
      command: [python]
      source: |
        print("Nimtechnology - Task executed.")
Bạn sẽ thấy step2 và step3 chạy cùng nhau.

Suspend Template

Giờ mình tạo 1 step kiểu như sleep hay suspend(treo) mấy giây.

apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
  name: wf-steps-templates-suspend
spec:
  entrypoint: steps-templates-suspend
  templates:
  - name: steps-templates-suspend
    steps:
    - - name: step1
        template: task-template
    - - name: step2
        template: task-template
      - name: step3
        template: task-template
    - - name: delay
        template: deylay-template
    - - name: step4
        template: task-template

  - name: task-template
    script:
      image: python:3.8-slim
      command: [python]
      source: |
        print("Nimtechnology - Task executed.")

  - name: deylay-template
    suspend:
      duration: "10s"

DAG Template

Cũng giống như step template về mặt flows.

Dag thì nó tường mình hơn khi việc Task này phụ thuộc task kia như thế nào.

apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
  name: wf-dag-templates-suspend
spec:
  entrypoint: dag-templates-suspend
  templates:
  - name: dag-templates-suspend
    dag:
      tasks:
      - name: Task1
        template: task-template
      - name: Task2
        template: task-template
        dependencies: [Task1]
      - name: Task3
        template: task-template
        dependencies: [Task1]
      - name: Delay
        template: deylay-template
        dependencies: [Task2, Task3]
      - name: Task4
        template: task-template
        dependencies: [Delay]

  - name: task-template
    script:
      image: python:3.8-slim
      command: [python]
      source: |
        print("Nimtechnology - Task executed.")

  - name: deylay-template
    suspend:
      duration: "10s"

Summary

Steps Template and DAG Template are two types of templates used in Argo Workflows to build workflow pipelines.

Steps Template is a template used to create simple, independent, sequential and non-dependent tasks. The steps in the Steps Template will be executed in order, but if one step fails, the entire process will be canceled.

DAG Template, on the other hand, is a template used to create more complex workflows with dependencies between tasks. DAG stands for Directed Acyclic Graph, which means the tasks are represented as nodes in a graph, and the dependencies between them are represented as edges. In a DAG Template, tasks can be executed in parallel as long as their dependencies have been fulfilled.

In summary, the main difference between Steps Template and DAG Template in Argo Workflows is that Steps Template is used for simple, independent tasks, while DAG Template is used for complex workflows with dependencies between tasks.

ArgoWorkflows

Post navigation

Previous Post: [Jenkins] Scripted Pipeline lesson 18: Triggers _ PollSCM
Next Post: [Minio] Install MinIO on Kubernetes through minio-operator

More Related Articles

[Argo-Workflows] Lesson6: Output Parameter File ArgoWorkflows
[Argo-Workflows] Lesson20: Cron Workflow ArgoWorkflows
[Argo-Workflows] Lesson4: Script result – receive the output result of another task to make the input parameter. ArgoWorkflows
[Argo-Workflows] Lesson15: Conditionals ArgoWorkflows
[Argo-Workflows] Lesson7: Artifact ArgoWorkflows
[ArgoWorkflows] Lesson 1: Installing Awgo-WorkFlows by the helm-chart and Demo a few simple templates. ArgoWorkflows

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Tham Gia Group DevOps nhé!
Để Nim có nhiều động lực ra nhiều bài viết.
Để nhận được những thông báo mới nhất.

Recent Posts

  • [Azure] The subscription is not registered to use namespace ‘Microsoft.ContainerService’ May 8, 2025
  • [Azure] Insufficient regional vcpu quota left May 8, 2025
  • [WordPress] How to add a Dynamic watermark on WordPress. May 6, 2025
  • [vnet/Azure] VNet provisioning via Terraform. April 28, 2025
  • [tracetcp] How to perform a tracert command using a specific port. April 3, 2025

Archives

  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021

Categories

  • BareMetal
    • NextCloud
  • CI/CD
    • Argo Events
    • ArgoCD
    • ArgoWorkflows
    • Git
      • Bitbucket
    • Harbor
    • Jenkins
    • Spinnaker
    • TeamCity
  • Coding
    • DevSecOps
    • Golang
    • Jquery & JavaScript
    • Laravel
    • NextJS 14 & ReactJS & Type Script
    • Python
    • Selenium
    • Terraform
      • AWS – Amazon Web Service
      • Azure Cloud
      • GCP – Google Cloud
  • Kubernetes & Container
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Docker
    • Helm Chart
    • Isito-EnvoyFilter
    • Kong Gateway
    • Kubernetes
      • Ingress
      • Pod
    • Longhorn – Storage
    • MetalLB
    • OAuth2 Proxy
    • Vault
    • VictoriaMetrics
  • Log, Monitor & Tracing
    • DataDog
    • ELK
      • Kibana
      • Logstash
    • Fluent
    • Grafana
    • Prometheus
  • Uncategorized
  • Admin

Copyright © 2025 NimTechnology.