Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit f9ef2c7

Browse files
committed
Added argo #3325
1 parent 2811f15 commit f9ef2c7

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,17 @@
314314
"datasourceTemplate": "github-releases",
315315
"extractVersionTemplate": "^v(?<version>.+?)$"
316316
},
317+
{
318+
"fileMatch": [
319+
"^tools/argo/manifest.yaml$"
320+
],
321+
"matchStrings": [
322+
"version: \"?(?<currentValue>.*?)\"?\\n"
323+
],
324+
"depNameTemplate": "argoproj/argo-workflows",
325+
"datasourceTemplate": "github-releases",
326+
"extractVersionTemplate": "^v(?<version>.+?)$"
327+
},
317328
{
318329
"fileMatch": [
319330
"^tools/argocd/manifest.yaml$"

tools/argo/Dockerfile.template

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#syntax=docker/dockerfile:1.4.3
2+
3+
ARG ref=main
4+
FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5+
6+
ARG name
7+
ARG version
8+
9+
RUN <<EOF
10+
curl --silent --location "https://github.com/argoproj/argo-workflows/releases/download/v${version}/argo-linux-${alt_arch}.gz" \
11+
| gunzip \
12+
>"${prefix}${target}/bin/argo"
13+
chmod +x "${prefix}${target}/bin/argo"
14+
"${prefix}${target}/bin/argo" completion bash >"${prefix}${target}/share/bash-completion/completions/argo"
15+
"${prefix}${target}/bin/argo" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_argo"
16+
EOF

tools/argo/manifest.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: argo
2+
version: 3.4.0
3+
tags:
4+
- tag1
5+
- tag2
6+
homepage: https://github.com/argoproj/argo-workflows
7+
description: Workflow engine for Kubernetes
8+
renovate:
9+
datasource: github-releases
10+
package: argoproj/argo-workflows
11+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)