forked from kubeflow/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport.json
More file actions
32 lines (32 loc) · 690 Bytes
/
export.json
File metadata and controls
32 lines (32 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"pipeline": {
"name": "export"
},
"transform": {
"image": "docker:18.04",
"cmd": [ "/bin/ash" ],
"stdin": [
"export DOCKER_API_VERSION=1.23",
"export DOCKER_USER=$(cat /tmp/dockersecret/user)",
"export DOCKER_PASS=$(cat /tmp/dockersecret/password)",
"docker login --username=nickharvey --password=$DOCKER_PASS",
"cd /pfs/build/build",
"chmod +x build_image.sh",
"chmod +x push_image.sh",
"./build_image.sh",
"./push_image.sh"
],
"secrets": [
{
"name": "dockersecret",
"mountPath": "/tmp/dockersecret"
}
]
},
"input": {
"pfs": {
"repo": "build",
"glob": "/"
}
}
}