Automate helm publishing
This commit is contained in:
parent
4ad4d551f9
commit
5e71ab6395
2 changed files with 79 additions and 0 deletions
21
.argo/argo-checkout.yaml
Normal file
21
.argo/argo-checkout.yaml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
type: container
|
||||
version: 1
|
||||
name: argo-checkout
|
||||
description: Checks out a source repository to /src
|
||||
resources:
|
||||
mem_mib: 500
|
||||
cpu_cores: 0.1
|
||||
image: argoproj/argoscm:v2.0
|
||||
command: ["axscm"]
|
||||
args: ["clone", "%%inputs.parameters.REPO%%", "/src", "--commit", "%%inputs.parameters.COMMIT%%"]
|
||||
inputs:
|
||||
parameters:
|
||||
COMMIT:
|
||||
default: "%%session.commit%%"
|
||||
REPO:
|
||||
default: "%%session.repo%%"
|
||||
outputs:
|
||||
artifacts:
|
||||
CODE:
|
||||
path: /src
|
||||
Loading…
Add table
Add a link
Reference in a new issue