forked from bitnami/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvib-verify.json
76 lines (76 loc) · 1.8 KB
/
vib-verify.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"phases": {
"package": {
"context": {
"credentials": [
{
"url": "{VIB_ENV_CHARTS_REGISTRY}",
"authn": {
"username": "{VIB_ENV_CHARTS_REGISTRY_USERNAME}",
"password": "{VIB_ENV_CHARTS_REGISTRY_PASSWORD}"
}
}
],
"resources": {
"url": "{SHA_ARCHIVE}",
"path": "/bitnami/spring-cloud-dataflow"
}
},
"actions": [
{
"action_id": "helm-package"
},
{
"action_id": "helm-lint"
}
]
},
"verify": {
"context": {
"resources": {
"url": "{SHA_ARCHIVE}",
"path": "/bitnami/spring-cloud-dataflow"
},
"target_platform": {
"target_platform_id": "{VIB_ENV_TARGET_PLATFORM}",
"size": {
"name": "S4"
}
}
},
"actions": [
{
"action_id": "goss",
"params": {
"resources": {
"path": "/.vib"
},
"tests_file": "spring-cloud-dataflow/goss/goss.yaml",
"vars_file": "spring-cloud-dataflow/runtime-parameters.yaml",
"remote": {
"pod": {
"workload": "deploy-spring-cloud-dataflow-server"
}
}
}
},
{
"action_id": "cypress",
"params": {
"resources": {
"path": "/.vib/spring-cloud-dataflow/cypress"
},
"endpoint": "lb-spring-cloud-dataflow-server-http",
"app_protocol": "HTTP"
}
},
{
"action_id": "kubescape",
"params": {
"threshold": {VIB_ENV_KUBESCAPE_SCORE_THRESHOLD}
}
}
]
}
}
}