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

Month: April 2023

[Argo-Workflows] Lesson23: Creating a Master Workflow

Posted on April 13, 2023April 13, 2023 By nim No Comments on [Argo-Workflows] Lesson23: Creating a Master Workflow
[Argo-Workflows] Lesson23: Creating a Master Workflow

Các bài trước chúng ta chỉ run 1 template 1 workflow … Nếu bạn muốn run nhiều template thì sao.Chúng ta tiếp tục đẻ ra 1 khái niệm là Master Workflow. Đầu tiên chúng ta cần 2 template: và Template thứ 2: Tiếp đến là tạo 1 master: Bạn thấy nó gọi 2 template và…

Read More “[Argo-Workflows] Lesson23: Creating a Master Workflow” »

ArgoWorkflows

[Argo-Workflows] Lesson22: Reference to Workflow Templates

Posted on April 12, 2023 By nim No Comments on [Argo-Workflows] Lesson22: Reference to Workflow Templates
[Argo-Workflows] Lesson22: Reference to Workflow Templates

Ở bài trước chúng ta tạo ra workflow template chúng ta sẽ tạo CronWorkflow refer to đến temple

ArgoWorkflows

[Argo-Workflows] Lesson20: Cron Workflow

Posted on April 12, 2023 By nim No Comments on [Argo-Workflows] Lesson20: Cron Workflow
[Argo-Workflows] Lesson20: Cron Workflow

Bạn sẽ cần lập lịch chạy 1 vài flow và argo cũng sẽ hỗ trợ bạn Chúng ta cùng tìm hiểu 1 chút về pipeline trên. concurrentcyPolicy: “Forbid” cái này nghĩa là không cho các job chạy đồng thời khi job A chưa xong thì chưa chạy job B ==> nó kiểu như là crontab…

Read More “[Argo-Workflows] Lesson20: Cron Workflow” »

ArgoWorkflows

[Argo-Workflows] Lesson19: Workflow Template

Posted on April 12, 2023April 12, 2023 By nim No Comments on [Argo-Workflows] Lesson19: Workflow Template
[Argo-Workflows] Lesson19: Workflow Template

Resources Workflow Template Để tạo template thì rất đơn giản bạn chỉ cần đổi kind từ Workflow sang WorkflowTemplate Sau khi bạn ấn submit thì nó sẽ tạo ra workflow và running workflow đó.

ArgoWorkflows

[Argo-Workflows] Lesson18: Recursion

Posted on April 11, 2023February 27, 2024 By nim No Comments on [Argo-Workflows] Lesson18: Recursion
[Argo-Workflows] Lesson18: Recursion

Bài này chúng ta lab về vấn dể đệ quy trong workflow. Nó kiểu như là chúng ta đang chờ thư của bạn gái. một lần cần nhòm vào hộp thư xem có ai gửi cho mình hông? Bài trên là nếu task roll-dice không trả về số 6 thì task not-six sẽ chạy lại…

Read More “[Argo-Workflows] Lesson18: Recursion” »

ArgoWorkflows

[Argo-Workflows] Lesson17: Retry strategy

Posted on April 11, 2023April 11, 2023 By nim No Comments on [Argo-Workflows] Lesson17: Retry strategy
[Argo-Workflows] Lesson17: Retry strategy

Khi một task bị fail thì chúng ta sẽ cần phải retry lại task đó 1 vài lần.chẳng hạn, như bạn connect vào Database nếu không được thì bạn sẽ muốn retry lại. Certainly! The retryStrategy section in your Argo Workflow task definition specifies how many times the task will be retried if it fails…

Read More “[Argo-Workflows] Lesson17: Retry strategy” »

ArgoWorkflows

[Argo-Workflows] Lesson16: Depends

Posted on April 11, 2023 By nim No Comments on [Argo-Workflows] Lesson16: Depends
[Argo-Workflows] Lesson16: Depends

Ở các bài trước chúng ta đã sử dụng dependencies là task A chạy xong thì đến task B Hôm nay chúng ta sẽ đi advance hơn về depends.Nếu task A Succeeded thì mới chạy task B Bạn có thể thấy là TaskA sẽ chạy nếu task 1 Succeeded.TaskD sẽ chạy khi mà taskB bị…

Read More “[Argo-Workflows] Lesson16: Depends” »

ArgoWorkflows

[Argo-Workflows] Lesson15: Conditionals

Posted on April 10, 2023 By nim No Comments on [Argo-Workflows] Lesson15: Conditionals
[Argo-Workflows] Lesson15: Conditionals

Tiếp tục chúng ta sẽ đên với bài cấu hình điều kiên trong workflow. When: sẽ là conditional của workflow.Nếu output của task1 là A thì run template A Chúng ta cùng soi TaskB Bạn sẽ thấy nó báo là: Vì thế nó không chạy step B

ArgoWorkflows

[Argo-Workflows] Lesson14: Dynamic Loops

Posted on April 10, 2023 By nim No Comments on [Argo-Workflows] Lesson14: Dynamic Loops
[Argo-Workflows] Lesson14: Dynamic Loops

Bài này chúng ta lấy output của 1 task khác để sử dụng đưa vào withParam để loop cho task khách. Đâu tiên chúng ta sẽ sử dụng task 2 để generate ra list và output ra sdtout đưa output của task 2 vào withParam của task3

ArgoWorkflows

[Argo-Workflows] Lesson12: Loops with sets as input parameters

Posted on April 10, 2023February 28, 2024 By nim No Comments on [Argo-Workflows] Lesson12: Loops with sets as input parameters
[Argo-Workflows] Lesson12: Loops with sets as input parameters

Bài này chúng ta sẽ loop dự trên paramenters với format là JSON. Step 1: khai báo argument -> parametersStep 2: khai bao input base trên argumentStep 3: sử dụng withParam trong task Và đây là ảnh trên Argo workflow:

ArgoWorkflows

Posts pagination

Previous 1 2 3 4 Next
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

  • [Laravel] Laravel Helpful June 26, 2025
  • [VScode] Hướng dẫn điều chỉnh font cho terminal June 20, 2025
  • [WordPress] Hướng dấn gửi mail trên WordPress thông qua gmail. June 15, 2025
  • [Bitbucket] Git Clone/Pull/Push with Bitbucket through API Token. June 12, 2025
  • [Teamcity] How to transfer the value from pipeline A to pipeline B June 9, 2025

Archives

  • June 2025
  • 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.