-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlist.cue
More file actions
47 lines (40 loc) · 893 Bytes
/
Copy pathlist.cue
File metadata and controls
47 lines (40 loc) · 893 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
package kaniop
import (
"list"
"k8s.io/api/core/v1"
)
#Name: "kaniop"
#Namespace: #Name
// renovate: datasource=docker depName=ghcr.io/pando85/kaniop
#Version: "0.10.0"
#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: [
#CertificateList.items,
#ClusterRoleBindingList.items,
#ClusterRoleList.items,
#CustomResourceDefinitionList.items,
#DeploymentList.items,
#IssuerList.items,
#NamespaceList.items,
#ServiceAccountList.items,
#ServiceList.items,
#ValidatingAdmissionPolicyList.items,
#ValidatingAdmissionPolicyBindingList.items,
#ValidatingWebhookConfigurationList.items,
#VMRuleList.items,
#VMServiceScrapeList.items,
]