You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Categories is a nested block of artifacts, workloads and infrastructure
5
+
categories {
6
+
// Artifacts is a nested block of Image, Function, CF
7
+
artifacts {
8
+
// Every object requires expression(logical combinations of variables v1, v2, v3...) and list of variables consists of attribute(pre-defined) and value
9
+
image {
10
+
expression="v1 && v2"
11
+
variables {
12
+
attribute="aqua.registry"
13
+
value="test-registry"
14
+
}
15
+
variables {
16
+
attribute="image.repo"
17
+
value="nginx"
18
+
}
19
+
}
20
+
}
21
+
// Workloads is a nested block of Kubernetes, OS, CF
22
+
workloads {
23
+
// Every object requires expression(logical combinations of variables v1, v2, v3...) and list of variables consists of attribute(pre-defined) and value
24
+
kubernetes {
25
+
expression="v1 && v2"
26
+
variables {
27
+
attribute="kubernetes.cluster"
28
+
value="aqua"
29
+
}
30
+
variables {
31
+
attribute="kubernetes.namespace"
32
+
value="aqua"
33
+
}
34
+
}
35
+
}
36
+
// Infrastructure is a nested block of Kubernetes, OS
37
+
infrastructure {
38
+
// Every object requires expression and list of variables consists of attribute(pre-defined) and value
0 commit comments