-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlist.cue
More file actions
49 lines (39 loc) · 884 Bytes
/
Copy pathlist.cue
File metadata and controls
49 lines (39 loc) · 884 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package karma
import (
"list"
"k8s.io/api/core/v1"
"github.com/uhthomas/automata/tools"
)
#Name: "karma"
#Namespace: #Name
// renovate: datasource=github-releases depName=prymitive/karma extractVersion=^v(?<version>.*)$
#Version: "0.131"
_image: tools.#Image & {
name: "ghcr.io/prymitive/karma"
tag: "0.129"
digest: "sha256:e3982b38c6a178777aa2a49286a56bf04edc1850e7542cc3d9d55307738b8c64"
}
_image: tag: #Version
#List: v1.#List & {
apiVersion: "v1"
kind: "List"
items: [...{
metadata: {
name: string | *#Name
namespace: #Namespace
labels: {
"app.kubernetes.io/name": #Name
"app.kubernetes.io/version": #Version
}
}
}]
}
#List: items: list.Concat(_items)
_items: [
// #CiliumNetworkPolicyList.items,
#DeploymentList.items,
#GatewayList.items,
#HTTPRouteList.items,
#NamespaceList.items,
#ServiceList.items,
]