-
Notifications
You must be signed in to change notification settings - Fork 1
/
cst.yaml
48 lines (48 loc) · 1.15 KB
/
cst.yaml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
schemaVersion: 2.0.0
metadataTest:
entrypoint: ["/usr/bin/entrypoint.sh"]
user: azcopy
fileExistenceTests:
- name: "azcopy"
path: "/usr/bin/azcopy"
shouldExist: true
isExecutableBy: "any"
uid: 1000
gid: 1000
- name: "az"
path: "/usr/bin/az"
shouldExist: true
isExecutableBy: "any"
uid: 0
gid: 0
- name: "geoipupdate"
path: "/usr/bin/geoipupdate"
shouldExist: true
isExecutableBy: "any"
uid: 1000
gid: 1000
- name: "Entrypoint script"
path: "/usr/bin/entrypoint.sh"
shouldExist: true
isExecutableBy: "any"
uid: 0
gid: 0
- name: "get-fileshare-signed-url.sh"
path: "/usr/bin/get-fileshare-signed-url.sh"
shouldExist: true
isExecutableBy: "any"
uid: 0
gid: 0
commandTests:
- name: "Check azcopy Version"
command: "azcopy"
args: ["--version"]
expectedOutput: ["azcopy version 10.26.0"]
- name: "Check geoipupdate Version"
command: "geoipupdate"
args: ["--version"]
expectedError: ["geoipupdate 7.0.1"]
- name: "Check az Version"
command: "az"
args: ["--version"]
expectedOutput: ["azure-cli 2.51.0"]