首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • gitops实践-argocd初体验

    create namespace argocd根据你需要的版本,选择对应的yaml文件,然后应用kubectl apply -n argo -f https://github.com/argoproj/argo-workflows 工作流在kubernetes中是使用argo-workflows来实现的,argo-workflows是argo项目的一部分,argo-workflows是基于kubernetes的编排引擎,可以用来编排和管理复杂的任务和流程 使用 argocd cli 管理 argocd先安装argocd clicurl -sLO https://github.com/argoproj/argo-workflows/releases/download cli运行工作流argo submit -n argo --serviceaccount argo --watch https://raw.githubusercontent.com/argoproj/argo-workflows argo --serviceaccount argo --name my-hello-world --watch https://raw.githubusercontent.com/argoproj/argo-workflows

    62410编辑于 2025-09-22
  • 来自专栏Godev

    外包精通--Argo的工作流引擎(官网入门实践)

    DesktopInstall Argo Workflowskubectl create namespace argokubectl apply -n argo -f https://github.com/argoproj/argo-workflows workflowSubmit an example workflow (CLI)argo submit -n argo --watch https://raw.githubusercontent.com/argoproj/argo-workflows

    1.5K40编辑于 2023-07-28
  • 来自专栏TBDS & AI

    Datainsight 的核心组件介绍

    containerd,而workflow默认的pipeline执行器是docker,因此有些特性不兼容,这块可以见 argo workflow 官方说明:https://argoproj.github.io/argo-workflows kubeflow pipeline 在 input/output 的 artifacts 需要用到 docker cp 命令,可以参考这个issue: https://github.com/argoproj/argo-workflows kubeflow-test-pv metadata: annotations: argo workflow 的语法可以参考:https://argoproj.github.io/argo-workflows github.com/dexidp/dex https://github.com/kubeflow/kfserving/tree/master/docs https://argoproj.github.io/argo-workflows /workflow-executors/ https://github.com/shikanon/kubeflow-manifests https://argoproj.github.io/argo-workflows

    3.6K22发布于 2021-07-19
  • 来自专栏我的小碗汤

    10 个关于 ArgoCD 的最佳实践

    argocd-best-practices-you-should-know 参考资料 [1] retrying failed or errored steps: https://github.com/argoproj/argo-workflows stable/operator-manual/declarative-setup/#atomic-configuration [4] FailFast: https://github.com/argoproj/argo-workflows /blob/master/examples/dag-disable-failFast.yaml [5] 点击此处: https://github.com/argoproj/argo-workflows/ https://argoproj.github.io/argo-rollouts/features/specification/ [9] 表达式: https://argoproj.github.io/argo-workflows /retries/#conditional-retries [10] retry policies: https://argoproj.github.io/argo-workflows/retries/

    2.3K20编辑于 2023-03-19
  • 来自专栏CNCF

    Argo Workflows v3.0

    新的仓库位置 我们将重命名Argo Workflows库为argo-workflows而不是argo。新名称清楚地表明,这是Argo Workflows的仓库,而不是整个Argo项目。 introducing-argo-a-container-native-workflow-engine-for-kubernetes-55c0b4b76fac [2] Argo Workflows: https://github.com/argoproj/argo-workflows

    2.1K10发布于 2021-03-15
  • 来自专栏CNCF

    Sendible如何从Jenkins迁移到Argo

    https://www.sendible.com/ [2] Slack 频道: https://slack.cncf.io/ [3] 条件参数: https://argoproj.github.io/argo-workflows /conditional-artifacts-parameters/ [4] 容器集: https://argoproj.github.io/argo-workflows/container-set-template

    2.1K30发布于 2021-05-27
  • 来自专栏YP小站

    Argo Workflows-Kubernetes的工作流引擎

    kubectl create ns argo kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo-workflows 参考文档 https://github.com/argoproj/argo-workflows/releases https://argoproj.github.io/argo-workflows https ://github.com/antonmedv/expr/blob/master/docs/Language-Definition.md https://github.com/argoproj/argo-workflows

    4.8K20发布于 2021-04-07
  • 来自专栏CNCF

    Metaflow|Kubernetes上以人为中心的数据科学

    要从 Argo Workflows 中受益,数据科学家只需知道一个命令:argo-workflows create。 examples/eks [11] Slack: http://slack.outerbounds.co/ [12] Argo Workflows: https://argoproj.github.io/argo-workflows

    1.2K10编辑于 2022-06-10
  • 来自专栏MoeLove

    K8S 生态周报| Argo Workflows 新版本发布,带来众多新特性

    具体内容可参考 https://argoproj.github.io/argo-workflows/plugins/ Workflow Hooks 可以配置表达式了。

    71530编辑于 2022-03-30
  • 来自专栏CNCF

    使用Python编写和提交Argo工作流

    安装: pip3 install kfp pip3 install argo-workflows 例子: import kfp as kfp def flip_coin(): return kfp.dsl.ContainerOp

    1.8K10发布于 2021-02-23
  • 来自专栏雕虫大技

    【雕虫大技】杀鸡就要用牛刀:我如何用云原生架构(K8s + Docker + Argo)重构科研计算流程?(1)

    kubectlcreatenamespaceargo②在名叫argo的空间中部署Argo(我使用的版本为v3.5.5)展开代码语言:TXTAI代码解释kubectlcreate-nargo-fhttps://github.com/argoproj/argo-workflows kubectlcreatenamespaceargo②在名叫argo的空间中部署Argo(我使用的版本为v3.5.5)展开代码语言:TXTAI代码解释kubectlcreate-nargo-fhttps://github.com/argoproj/argo-workflows

    16810编辑于 2026-01-08
  • 来自专栏伪架构师

    使用 Argo Workflow 组织跨云运维的可能性

    create namespace argo namespace/argo created $ kubectl apply -n argo -f https://github.com/argoproj/argo-workflows

    1.1K10编辑于 2024-05-06
  • 来自专栏Jenkins

    Argo Workflows 中文快速指南·

    下安装最新版本的 Argo Workflow: kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows

    8K20编辑于 2023-02-27
  • 来自专栏Go编程点滴

    五分钟技术小分享 - 2022Week07

    Workflow engine for Kubernetes 官网 - https://argoproj.github.io/ Github - https://github.com/argoproj/argo-workflows

    65020编辑于 2022-03-29
领券