Adds support for op.#FetchHTTP

Signed-off-by: Edgar Lee <edgarhinshunlee@gmail.com>
This commit is contained in:
Edgar Lee
2021-07-06 14:29:36 -07:00
committed by Edgar Lee
parent 7146223ec7
commit 0501ae91a5
7 changed files with 99 additions and 0 deletions

View File

@@ -85,6 +85,16 @@ package op
authHeaderSecret?: string | bytes
}
#FetchHTTP: {
do: "fetch-http"
url: string
checksum?: string
filename?: string
mode?: int | *0o644
uid?: int
gid?: int
}
#Copy: {
do: "copy"
from: _

View File

@@ -7,6 +7,7 @@ package op
#FetchContainer |
#PushContainer |
#FetchGit |
#FetchHTTP |
#Exec |
#Local |
#Copy |