@intentius/chant-lexicon-k8s 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +32 -0
- package/dist/manifest.json +8 -0
- package/dist/meta.json +1413 -0
- package/dist/rules/hardcoded-namespace.ts +56 -0
- package/dist/rules/k8s-helpers.ts +149 -0
- package/dist/rules/wk8005.ts +59 -0
- package/dist/rules/wk8006.ts +68 -0
- package/dist/rules/wk8041.ts +73 -0
- package/dist/rules/wk8042.ts +48 -0
- package/dist/rules/wk8101.ts +65 -0
- package/dist/rules/wk8102.ts +42 -0
- package/dist/rules/wk8103.ts +45 -0
- package/dist/rules/wk8104.ts +69 -0
- package/dist/rules/wk8105.ts +45 -0
- package/dist/rules/wk8201.ts +55 -0
- package/dist/rules/wk8202.ts +46 -0
- package/dist/rules/wk8203.ts +46 -0
- package/dist/rules/wk8204.ts +54 -0
- package/dist/rules/wk8205.ts +56 -0
- package/dist/rules/wk8207.ts +45 -0
- package/dist/rules/wk8208.ts +45 -0
- package/dist/rules/wk8209.ts +45 -0
- package/dist/rules/wk8301.ts +51 -0
- package/dist/rules/wk8302.ts +46 -0
- package/dist/rules/wk8303.ts +96 -0
- package/dist/skills/chant-k8s.md +433 -0
- package/dist/types/index.d.ts +2934 -0
- package/package.json +30 -0
- package/src/actions/actions.test.ts +83 -0
- package/src/actions/apps.ts +23 -0
- package/src/actions/batch.ts +9 -0
- package/src/actions/core.ts +62 -0
- package/src/actions/index.ts +50 -0
- package/src/actions/networking.ts +15 -0
- package/src/actions/rbac.ts +13 -0
- package/src/codegen/docs-cli.ts +3 -0
- package/src/codegen/docs.ts +1147 -0
- package/src/codegen/generate-cli.ts +41 -0
- package/src/codegen/generate-lexicon.ts +69 -0
- package/src/codegen/generate-typescript.ts +97 -0
- package/src/codegen/generate.ts +144 -0
- package/src/codegen/naming.test.ts +63 -0
- package/src/codegen/naming.ts +187 -0
- package/src/codegen/package.ts +56 -0
- package/src/codegen/patches.ts +108 -0
- package/src/codegen/snapshot.test.ts +95 -0
- package/src/codegen/typecheck.test.ts +24 -0
- package/src/codegen/typecheck.ts +4 -0
- package/src/codegen/versions.ts +43 -0
- package/src/composites/autoscaled-service.ts +236 -0
- package/src/composites/composites.test.ts +1109 -0
- package/src/composites/cron-workload.ts +167 -0
- package/src/composites/index.ts +14 -0
- package/src/composites/namespace-env.ts +163 -0
- package/src/composites/node-agent.ts +224 -0
- package/src/composites/stateful-app.ts +134 -0
- package/src/composites/web-app.ts +180 -0
- package/src/composites/worker-pool.ts +230 -0
- package/src/coverage.test.ts +27 -0
- package/src/coverage.ts +35 -0
- package/src/crd/loader.ts +112 -0
- package/src/crd/parser.test.ts +217 -0
- package/src/crd/parser.ts +279 -0
- package/src/crd/types.ts +54 -0
- package/src/default-labels.test.ts +111 -0
- package/src/default-labels.ts +122 -0
- package/src/generated/index.d.ts +2934 -0
- package/src/generated/index.ts +203 -0
- package/src/generated/lexicon-k8s.json +1413 -0
- package/src/generated/runtime.ts +4 -0
- package/src/import/generator.test.ts +121 -0
- package/src/import/generator.ts +285 -0
- package/src/import/parser.test.ts +156 -0
- package/src/import/parser.ts +204 -0
- package/src/import/roundtrip.test.ts +86 -0
- package/src/index.ts +38 -0
- package/src/lint/post-synth/k8s-helpers.test.ts +219 -0
- package/src/lint/post-synth/k8s-helpers.ts +149 -0
- package/src/lint/post-synth/post-synth.test.ts +969 -0
- package/src/lint/post-synth/wk8005.ts +59 -0
- package/src/lint/post-synth/wk8006.ts +68 -0
- package/src/lint/post-synth/wk8041.ts +73 -0
- package/src/lint/post-synth/wk8042.ts +48 -0
- package/src/lint/post-synth/wk8101.ts +65 -0
- package/src/lint/post-synth/wk8102.ts +42 -0
- package/src/lint/post-synth/wk8103.ts +45 -0
- package/src/lint/post-synth/wk8104.ts +69 -0
- package/src/lint/post-synth/wk8105.ts +45 -0
- package/src/lint/post-synth/wk8201.ts +55 -0
- package/src/lint/post-synth/wk8202.ts +46 -0
- package/src/lint/post-synth/wk8203.ts +46 -0
- package/src/lint/post-synth/wk8204.ts +54 -0
- package/src/lint/post-synth/wk8205.ts +56 -0
- package/src/lint/post-synth/wk8207.ts +45 -0
- package/src/lint/post-synth/wk8208.ts +45 -0
- package/src/lint/post-synth/wk8209.ts +45 -0
- package/src/lint/post-synth/wk8301.ts +51 -0
- package/src/lint/post-synth/wk8302.ts +46 -0
- package/src/lint/post-synth/wk8303.ts +96 -0
- package/src/lint/rules/hardcoded-namespace.ts +56 -0
- package/src/lint/rules/rules.test.ts +69 -0
- package/src/lsp/completions.test.ts +64 -0
- package/src/lsp/completions.ts +20 -0
- package/src/lsp/hover.test.ts +69 -0
- package/src/lsp/hover.ts +68 -0
- package/src/package-cli.ts +28 -0
- package/src/plugin.test.ts +209 -0
- package/src/plugin.ts +915 -0
- package/src/serializer.test.ts +275 -0
- package/src/serializer.ts +278 -0
- package/src/spec/fetch.test.ts +24 -0
- package/src/spec/fetch.ts +68 -0
- package/src/spec/parse.test.ts +102 -0
- package/src/spec/parse.ts +477 -0
- package/src/testdata/manifests/configmap.yaml +7 -0
- package/src/testdata/manifests/deployment.yaml +22 -0
- package/src/testdata/manifests/full-app.yaml +61 -0
- package/src/testdata/manifests/secret.yaml +7 -0
- package/src/testdata/manifests/service.yaml +15 -0
- package/src/validate-cli.ts +21 -0
- package/src/validate.test.ts +29 -0
- package/src/validate.ts +46 -0
- package/src/variables.ts +36 -0
package/dist/meta.json
ADDED
|
@@ -0,0 +1,1413 @@
|
|
|
1
|
+
{
|
|
2
|
+
"APIGroup": {
|
|
3
|
+
"resourceType": "K8s::Core::APIGroup",
|
|
4
|
+
"kind": "resource",
|
|
5
|
+
"lexicon": "k8s",
|
|
6
|
+
"apiVersion": "v1",
|
|
7
|
+
"gvkKind": "APIGroup"
|
|
8
|
+
},
|
|
9
|
+
"APIGroupList": {
|
|
10
|
+
"resourceType": "K8s::Core::APIGroupList",
|
|
11
|
+
"kind": "resource",
|
|
12
|
+
"lexicon": "k8s",
|
|
13
|
+
"apiVersion": "v1",
|
|
14
|
+
"gvkKind": "APIGroupList"
|
|
15
|
+
},
|
|
16
|
+
"APIResourceList": {
|
|
17
|
+
"resourceType": "K8s::Core::APIResourceList",
|
|
18
|
+
"kind": "resource",
|
|
19
|
+
"lexicon": "k8s",
|
|
20
|
+
"apiVersion": "v1",
|
|
21
|
+
"gvkKind": "APIResourceList"
|
|
22
|
+
},
|
|
23
|
+
"APIService": {
|
|
24
|
+
"resourceType": "K8s::Apiregistration::APIService",
|
|
25
|
+
"kind": "resource",
|
|
26
|
+
"lexicon": "k8s",
|
|
27
|
+
"apiVersion": "apiregistration.k8s.io/v1",
|
|
28
|
+
"gvkKind": "APIService"
|
|
29
|
+
},
|
|
30
|
+
"APIServiceList": {
|
|
31
|
+
"resourceType": "K8s::Apiregistration::APIServiceList",
|
|
32
|
+
"kind": "resource",
|
|
33
|
+
"lexicon": "k8s",
|
|
34
|
+
"apiVersion": "apiregistration.k8s.io/v1",
|
|
35
|
+
"gvkKind": "APIServiceList"
|
|
36
|
+
},
|
|
37
|
+
"APIVersions": {
|
|
38
|
+
"resourceType": "K8s::Core::APIVersions",
|
|
39
|
+
"kind": "resource",
|
|
40
|
+
"lexicon": "k8s",
|
|
41
|
+
"apiVersion": "v1",
|
|
42
|
+
"gvkKind": "APIVersions"
|
|
43
|
+
},
|
|
44
|
+
"Affinity": {
|
|
45
|
+
"resourceType": "K8s::Core::Affinity",
|
|
46
|
+
"kind": "property",
|
|
47
|
+
"lexicon": "k8s"
|
|
48
|
+
},
|
|
49
|
+
"BatchJob": {
|
|
50
|
+
"resourceType": "K8s::Batch::Job",
|
|
51
|
+
"kind": "resource",
|
|
52
|
+
"lexicon": "k8s",
|
|
53
|
+
"apiVersion": "batch/v1",
|
|
54
|
+
"gvkKind": "Job"
|
|
55
|
+
},
|
|
56
|
+
"Binding": {
|
|
57
|
+
"resourceType": "K8s::Core::Binding",
|
|
58
|
+
"kind": "resource",
|
|
59
|
+
"lexicon": "k8s",
|
|
60
|
+
"apiVersion": "v1",
|
|
61
|
+
"gvkKind": "Binding"
|
|
62
|
+
},
|
|
63
|
+
"CM": {
|
|
64
|
+
"resourceType": "K8s::Core::ConfigMap",
|
|
65
|
+
"kind": "resource",
|
|
66
|
+
"lexicon": "k8s",
|
|
67
|
+
"apiVersion": "v1",
|
|
68
|
+
"gvkKind": "ConfigMap"
|
|
69
|
+
},
|
|
70
|
+
"CSIDriver": {
|
|
71
|
+
"resourceType": "K8s::Storage::CSIDriver",
|
|
72
|
+
"kind": "resource",
|
|
73
|
+
"lexicon": "k8s",
|
|
74
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
75
|
+
"gvkKind": "CSIDriver"
|
|
76
|
+
},
|
|
77
|
+
"CSIDriverList": {
|
|
78
|
+
"resourceType": "K8s::Storage::CSIDriverList",
|
|
79
|
+
"kind": "resource",
|
|
80
|
+
"lexicon": "k8s",
|
|
81
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
82
|
+
"gvkKind": "CSIDriverList"
|
|
83
|
+
},
|
|
84
|
+
"CSINode": {
|
|
85
|
+
"resourceType": "K8s::Storage::CSINode",
|
|
86
|
+
"kind": "resource",
|
|
87
|
+
"lexicon": "k8s",
|
|
88
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
89
|
+
"gvkKind": "CSINode"
|
|
90
|
+
},
|
|
91
|
+
"CSINodeList": {
|
|
92
|
+
"resourceType": "K8s::Storage::CSINodeList",
|
|
93
|
+
"kind": "resource",
|
|
94
|
+
"lexicon": "k8s",
|
|
95
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
96
|
+
"gvkKind": "CSINodeList"
|
|
97
|
+
},
|
|
98
|
+
"CSIStorageCapacity": {
|
|
99
|
+
"resourceType": "K8s::Storage::CSIStorageCapacity",
|
|
100
|
+
"kind": "resource",
|
|
101
|
+
"lexicon": "k8s",
|
|
102
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
103
|
+
"gvkKind": "CSIStorageCapacity"
|
|
104
|
+
},
|
|
105
|
+
"CSIStorageCapacityList": {
|
|
106
|
+
"resourceType": "K8s::Storage::CSIStorageCapacityList",
|
|
107
|
+
"kind": "resource",
|
|
108
|
+
"lexicon": "k8s",
|
|
109
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
110
|
+
"gvkKind": "CSIStorageCapacityList"
|
|
111
|
+
},
|
|
112
|
+
"Capabilities": {
|
|
113
|
+
"resourceType": "K8s::Core::Capabilities",
|
|
114
|
+
"kind": "property",
|
|
115
|
+
"lexicon": "k8s"
|
|
116
|
+
},
|
|
117
|
+
"CertificateSigningRequest": {
|
|
118
|
+
"resourceType": "K8s::Certificates::CertificateSigningRequest",
|
|
119
|
+
"kind": "resource",
|
|
120
|
+
"lexicon": "k8s",
|
|
121
|
+
"apiVersion": "certificates.k8s.io/v1",
|
|
122
|
+
"gvkKind": "CertificateSigningRequest"
|
|
123
|
+
},
|
|
124
|
+
"CertificateSigningRequestList": {
|
|
125
|
+
"resourceType": "K8s::Certificates::CertificateSigningRequestList",
|
|
126
|
+
"kind": "resource",
|
|
127
|
+
"lexicon": "k8s",
|
|
128
|
+
"apiVersion": "certificates.k8s.io/v1",
|
|
129
|
+
"gvkKind": "CertificateSigningRequestList"
|
|
130
|
+
},
|
|
131
|
+
"ClusterRole": {
|
|
132
|
+
"resourceType": "K8s::Rbac::ClusterRole",
|
|
133
|
+
"kind": "resource",
|
|
134
|
+
"lexicon": "k8s",
|
|
135
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
136
|
+
"gvkKind": "ClusterRole"
|
|
137
|
+
},
|
|
138
|
+
"ClusterRoleBinding": {
|
|
139
|
+
"resourceType": "K8s::Rbac::ClusterRoleBinding",
|
|
140
|
+
"kind": "resource",
|
|
141
|
+
"lexicon": "k8s",
|
|
142
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
143
|
+
"gvkKind": "ClusterRoleBinding"
|
|
144
|
+
},
|
|
145
|
+
"ClusterRoleBindingList": {
|
|
146
|
+
"resourceType": "K8s::Rbac::ClusterRoleBindingList",
|
|
147
|
+
"kind": "resource",
|
|
148
|
+
"lexicon": "k8s",
|
|
149
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
150
|
+
"gvkKind": "ClusterRoleBindingList"
|
|
151
|
+
},
|
|
152
|
+
"ClusterRoleList": {
|
|
153
|
+
"resourceType": "K8s::Rbac::ClusterRoleList",
|
|
154
|
+
"kind": "resource",
|
|
155
|
+
"lexicon": "k8s",
|
|
156
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
157
|
+
"gvkKind": "ClusterRoleList"
|
|
158
|
+
},
|
|
159
|
+
"ComponentStatus": {
|
|
160
|
+
"resourceType": "K8s::Core::ComponentStatus",
|
|
161
|
+
"kind": "resource",
|
|
162
|
+
"lexicon": "k8s",
|
|
163
|
+
"apiVersion": "v1",
|
|
164
|
+
"gvkKind": "ComponentStatus"
|
|
165
|
+
},
|
|
166
|
+
"ComponentStatusList": {
|
|
167
|
+
"resourceType": "K8s::Core::ComponentStatusList",
|
|
168
|
+
"kind": "resource",
|
|
169
|
+
"lexicon": "k8s",
|
|
170
|
+
"apiVersion": "v1",
|
|
171
|
+
"gvkKind": "ComponentStatusList"
|
|
172
|
+
},
|
|
173
|
+
"ConfigMap": {
|
|
174
|
+
"resourceType": "K8s::Core::ConfigMap",
|
|
175
|
+
"kind": "resource",
|
|
176
|
+
"lexicon": "k8s",
|
|
177
|
+
"apiVersion": "v1",
|
|
178
|
+
"gvkKind": "ConfigMap"
|
|
179
|
+
},
|
|
180
|
+
"ConfigMapKeySelector": {
|
|
181
|
+
"resourceType": "K8s::Core::ConfigMapKeySelector",
|
|
182
|
+
"kind": "property",
|
|
183
|
+
"lexicon": "k8s"
|
|
184
|
+
},
|
|
185
|
+
"ConfigMapList": {
|
|
186
|
+
"resourceType": "K8s::Core::ConfigMapList",
|
|
187
|
+
"kind": "resource",
|
|
188
|
+
"lexicon": "k8s",
|
|
189
|
+
"apiVersion": "v1",
|
|
190
|
+
"gvkKind": "ConfigMapList"
|
|
191
|
+
},
|
|
192
|
+
"Container": {
|
|
193
|
+
"resourceType": "K8s::Core::Container",
|
|
194
|
+
"kind": "property",
|
|
195
|
+
"lexicon": "k8s"
|
|
196
|
+
},
|
|
197
|
+
"ContainerPort": {
|
|
198
|
+
"resourceType": "K8s::Core::ContainerPort",
|
|
199
|
+
"kind": "property",
|
|
200
|
+
"lexicon": "k8s",
|
|
201
|
+
"constraints": {
|
|
202
|
+
"containerPort": {
|
|
203
|
+
"format": "int32"
|
|
204
|
+
},
|
|
205
|
+
"hostPort": {
|
|
206
|
+
"format": "int32"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"ControllerRevision": {
|
|
211
|
+
"resourceType": "K8s::Apps::ControllerRevision",
|
|
212
|
+
"kind": "resource",
|
|
213
|
+
"lexicon": "k8s",
|
|
214
|
+
"apiVersion": "apps/v1",
|
|
215
|
+
"gvkKind": "ControllerRevision",
|
|
216
|
+
"constraints": {
|
|
217
|
+
"revision": {
|
|
218
|
+
"format": "int64"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"ControllerRevisionList": {
|
|
223
|
+
"resourceType": "K8s::Apps::ControllerRevisionList",
|
|
224
|
+
"kind": "resource",
|
|
225
|
+
"lexicon": "k8s",
|
|
226
|
+
"apiVersion": "apps/v1",
|
|
227
|
+
"gvkKind": "ControllerRevisionList"
|
|
228
|
+
},
|
|
229
|
+
"CoreEventList": {
|
|
230
|
+
"resourceType": "K8s::Core::EventList",
|
|
231
|
+
"kind": "resource",
|
|
232
|
+
"lexicon": "k8s",
|
|
233
|
+
"apiVersion": "v1",
|
|
234
|
+
"gvkKind": "EventList"
|
|
235
|
+
},
|
|
236
|
+
"CronJob": {
|
|
237
|
+
"resourceType": "K8s::Batch::CronJob",
|
|
238
|
+
"kind": "resource",
|
|
239
|
+
"lexicon": "k8s",
|
|
240
|
+
"apiVersion": "batch/v1",
|
|
241
|
+
"gvkKind": "CronJob"
|
|
242
|
+
},
|
|
243
|
+
"CronJobList": {
|
|
244
|
+
"resourceType": "K8s::Batch::CronJobList",
|
|
245
|
+
"kind": "resource",
|
|
246
|
+
"lexicon": "k8s",
|
|
247
|
+
"apiVersion": "batch/v1",
|
|
248
|
+
"gvkKind": "CronJobList"
|
|
249
|
+
},
|
|
250
|
+
"CustomResourceDefinition": {
|
|
251
|
+
"resourceType": "K8s::Apiextensions::CustomResourceDefinition",
|
|
252
|
+
"kind": "resource",
|
|
253
|
+
"lexicon": "k8s",
|
|
254
|
+
"apiVersion": "apiextensions.k8s.io/v1",
|
|
255
|
+
"gvkKind": "CustomResourceDefinition"
|
|
256
|
+
},
|
|
257
|
+
"CustomResourceDefinitionList": {
|
|
258
|
+
"resourceType": "K8s::Apiextensions::CustomResourceDefinitionList",
|
|
259
|
+
"kind": "resource",
|
|
260
|
+
"lexicon": "k8s",
|
|
261
|
+
"apiVersion": "apiextensions.k8s.io/v1",
|
|
262
|
+
"gvkKind": "CustomResourceDefinitionList"
|
|
263
|
+
},
|
|
264
|
+
"DS": {
|
|
265
|
+
"resourceType": "K8s::Apps::DaemonSet",
|
|
266
|
+
"kind": "resource",
|
|
267
|
+
"lexicon": "k8s",
|
|
268
|
+
"apiVersion": "apps/v1",
|
|
269
|
+
"gvkKind": "DaemonSet"
|
|
270
|
+
},
|
|
271
|
+
"DaemonSet": {
|
|
272
|
+
"resourceType": "K8s::Apps::DaemonSet",
|
|
273
|
+
"kind": "resource",
|
|
274
|
+
"lexicon": "k8s",
|
|
275
|
+
"apiVersion": "apps/v1",
|
|
276
|
+
"gvkKind": "DaemonSet"
|
|
277
|
+
},
|
|
278
|
+
"DaemonSetList": {
|
|
279
|
+
"resourceType": "K8s::Apps::DaemonSetList",
|
|
280
|
+
"kind": "resource",
|
|
281
|
+
"lexicon": "k8s",
|
|
282
|
+
"apiVersion": "apps/v1",
|
|
283
|
+
"gvkKind": "DaemonSetList"
|
|
284
|
+
},
|
|
285
|
+
"DeleteOptions": {
|
|
286
|
+
"resourceType": "K8s::Core::DeleteOptions",
|
|
287
|
+
"kind": "resource",
|
|
288
|
+
"lexicon": "k8s",
|
|
289
|
+
"apiVersion": "v1",
|
|
290
|
+
"gvkKind": "DeleteOptions",
|
|
291
|
+
"constraints": {
|
|
292
|
+
"gracePeriodSeconds": {
|
|
293
|
+
"format": "int64"
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"Deploy": {
|
|
298
|
+
"resourceType": "K8s::Apps::Deployment",
|
|
299
|
+
"kind": "resource",
|
|
300
|
+
"lexicon": "k8s",
|
|
301
|
+
"apiVersion": "apps/v1",
|
|
302
|
+
"gvkKind": "Deployment"
|
|
303
|
+
},
|
|
304
|
+
"Deployment": {
|
|
305
|
+
"resourceType": "K8s::Apps::Deployment",
|
|
306
|
+
"kind": "resource",
|
|
307
|
+
"lexicon": "k8s",
|
|
308
|
+
"apiVersion": "apps/v1",
|
|
309
|
+
"gvkKind": "Deployment"
|
|
310
|
+
},
|
|
311
|
+
"DeploymentList": {
|
|
312
|
+
"resourceType": "K8s::Apps::DeploymentList",
|
|
313
|
+
"kind": "resource",
|
|
314
|
+
"lexicon": "k8s",
|
|
315
|
+
"apiVersion": "apps/v1",
|
|
316
|
+
"gvkKind": "DeploymentList"
|
|
317
|
+
},
|
|
318
|
+
"DeploymentStrategy": {
|
|
319
|
+
"resourceType": "K8s::Apps::DeploymentStrategy",
|
|
320
|
+
"kind": "property",
|
|
321
|
+
"lexicon": "k8s"
|
|
322
|
+
},
|
|
323
|
+
"DeviceClass": {
|
|
324
|
+
"resourceType": "K8s::Resource::DeviceClass",
|
|
325
|
+
"kind": "resource",
|
|
326
|
+
"lexicon": "k8s",
|
|
327
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
328
|
+
"gvkKind": "DeviceClass"
|
|
329
|
+
},
|
|
330
|
+
"DeviceClassList": {
|
|
331
|
+
"resourceType": "K8s::Resource::DeviceClassList",
|
|
332
|
+
"kind": "resource",
|
|
333
|
+
"lexicon": "k8s",
|
|
334
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
335
|
+
"gvkKind": "DeviceClassList"
|
|
336
|
+
},
|
|
337
|
+
"EndpointSlice": {
|
|
338
|
+
"resourceType": "K8s::Discovery::EndpointSlice",
|
|
339
|
+
"kind": "resource",
|
|
340
|
+
"lexicon": "k8s",
|
|
341
|
+
"apiVersion": "discovery.k8s.io/v1",
|
|
342
|
+
"gvkKind": "EndpointSlice"
|
|
343
|
+
},
|
|
344
|
+
"EndpointSliceList": {
|
|
345
|
+
"resourceType": "K8s::Discovery::EndpointSliceList",
|
|
346
|
+
"kind": "resource",
|
|
347
|
+
"lexicon": "k8s",
|
|
348
|
+
"apiVersion": "discovery.k8s.io/v1",
|
|
349
|
+
"gvkKind": "EndpointSliceList"
|
|
350
|
+
},
|
|
351
|
+
"Endpoints": {
|
|
352
|
+
"resourceType": "K8s::Core::Endpoints",
|
|
353
|
+
"kind": "resource",
|
|
354
|
+
"lexicon": "k8s",
|
|
355
|
+
"apiVersion": "v1",
|
|
356
|
+
"gvkKind": "Endpoints"
|
|
357
|
+
},
|
|
358
|
+
"EndpointsList": {
|
|
359
|
+
"resourceType": "K8s::Core::EndpointsList",
|
|
360
|
+
"kind": "resource",
|
|
361
|
+
"lexicon": "k8s",
|
|
362
|
+
"apiVersion": "v1",
|
|
363
|
+
"gvkKind": "EndpointsList"
|
|
364
|
+
},
|
|
365
|
+
"EnvFromSource": {
|
|
366
|
+
"resourceType": "K8s::Core::EnvFromSource",
|
|
367
|
+
"kind": "property",
|
|
368
|
+
"lexicon": "k8s"
|
|
369
|
+
},
|
|
370
|
+
"EnvVar": {
|
|
371
|
+
"resourceType": "K8s::Core::EnvVar",
|
|
372
|
+
"kind": "property",
|
|
373
|
+
"lexicon": "k8s"
|
|
374
|
+
},
|
|
375
|
+
"EnvVarSource": {
|
|
376
|
+
"resourceType": "K8s::Core::EnvVarSource",
|
|
377
|
+
"kind": "property",
|
|
378
|
+
"lexicon": "k8s"
|
|
379
|
+
},
|
|
380
|
+
"EphemeralContainer": {
|
|
381
|
+
"resourceType": "K8s::Core::EphemeralContainer",
|
|
382
|
+
"kind": "property",
|
|
383
|
+
"lexicon": "k8s"
|
|
384
|
+
},
|
|
385
|
+
"Event": {
|
|
386
|
+
"resourceType": "K8s::Core::Event",
|
|
387
|
+
"kind": "resource",
|
|
388
|
+
"lexicon": "k8s",
|
|
389
|
+
"apiVersion": "v1",
|
|
390
|
+
"gvkKind": "Event",
|
|
391
|
+
"constraints": {
|
|
392
|
+
"count": {
|
|
393
|
+
"format": "int32"
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"EventsEvent": {
|
|
398
|
+
"resourceType": "K8s::Events::Event",
|
|
399
|
+
"kind": "resource",
|
|
400
|
+
"lexicon": "k8s",
|
|
401
|
+
"apiVersion": "events.k8s.io/v1",
|
|
402
|
+
"gvkKind": "Event",
|
|
403
|
+
"constraints": {
|
|
404
|
+
"deprecatedCount": {
|
|
405
|
+
"format": "int32"
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"EventsEventList": {
|
|
410
|
+
"resourceType": "K8s::Events::EventList",
|
|
411
|
+
"kind": "resource",
|
|
412
|
+
"lexicon": "k8s",
|
|
413
|
+
"apiVersion": "events.k8s.io/v1",
|
|
414
|
+
"gvkKind": "EventList"
|
|
415
|
+
},
|
|
416
|
+
"Eviction": {
|
|
417
|
+
"resourceType": "K8s::Policy::Eviction",
|
|
418
|
+
"kind": "resource",
|
|
419
|
+
"lexicon": "k8s",
|
|
420
|
+
"apiVersion": "policy/v1",
|
|
421
|
+
"gvkKind": "Eviction"
|
|
422
|
+
},
|
|
423
|
+
"ExecAction": {
|
|
424
|
+
"resourceType": "K8s::Core::ExecAction",
|
|
425
|
+
"kind": "property",
|
|
426
|
+
"lexicon": "k8s"
|
|
427
|
+
},
|
|
428
|
+
"FlowSchema": {
|
|
429
|
+
"resourceType": "K8s::Flowcontrol::FlowSchema",
|
|
430
|
+
"kind": "resource",
|
|
431
|
+
"lexicon": "k8s",
|
|
432
|
+
"apiVersion": "flowcontrol.apiserver.k8s.io/v1",
|
|
433
|
+
"gvkKind": "FlowSchema"
|
|
434
|
+
},
|
|
435
|
+
"FlowSchemaList": {
|
|
436
|
+
"resourceType": "K8s::Flowcontrol::FlowSchemaList",
|
|
437
|
+
"kind": "resource",
|
|
438
|
+
"lexicon": "k8s",
|
|
439
|
+
"apiVersion": "flowcontrol.apiserver.k8s.io/v1",
|
|
440
|
+
"gvkKind": "FlowSchemaList"
|
|
441
|
+
},
|
|
442
|
+
"HPA": {
|
|
443
|
+
"resourceType": "K8s::Autoscaling::HorizontalPodAutoscaler",
|
|
444
|
+
"kind": "resource",
|
|
445
|
+
"lexicon": "k8s",
|
|
446
|
+
"apiVersion": "autoscaling/v2",
|
|
447
|
+
"gvkKind": "HorizontalPodAutoscaler"
|
|
448
|
+
},
|
|
449
|
+
"HTTPGetAction": {
|
|
450
|
+
"resourceType": "K8s::Core::HTTPGetAction",
|
|
451
|
+
"kind": "property",
|
|
452
|
+
"lexicon": "k8s"
|
|
453
|
+
},
|
|
454
|
+
"HTTPIngressPath": {
|
|
455
|
+
"resourceType": "K8s::Networking::HTTPIngressPath",
|
|
456
|
+
"kind": "property",
|
|
457
|
+
"lexicon": "k8s"
|
|
458
|
+
},
|
|
459
|
+
"HorizontalPodAutoscaler": {
|
|
460
|
+
"resourceType": "K8s::Autoscaling::HorizontalPodAutoscaler",
|
|
461
|
+
"kind": "resource",
|
|
462
|
+
"lexicon": "k8s",
|
|
463
|
+
"apiVersion": "autoscaling/v2",
|
|
464
|
+
"gvkKind": "HorizontalPodAutoscaler"
|
|
465
|
+
},
|
|
466
|
+
"HorizontalPodAutoscalerBehavior": {
|
|
467
|
+
"resourceType": "K8s::Autoscaling::HorizontalPodAutoscalerBehavior",
|
|
468
|
+
"kind": "property",
|
|
469
|
+
"lexicon": "k8s"
|
|
470
|
+
},
|
|
471
|
+
"HorizontalPodAutoscalerList": {
|
|
472
|
+
"resourceType": "K8s::Autoscaling::HorizontalPodAutoscalerList",
|
|
473
|
+
"kind": "resource",
|
|
474
|
+
"lexicon": "k8s",
|
|
475
|
+
"apiVersion": "autoscaling/v2",
|
|
476
|
+
"gvkKind": "HorizontalPodAutoscalerList"
|
|
477
|
+
},
|
|
478
|
+
"HostAlias": {
|
|
479
|
+
"resourceType": "K8s::Core::HostAlias",
|
|
480
|
+
"kind": "property",
|
|
481
|
+
"lexicon": "k8s"
|
|
482
|
+
},
|
|
483
|
+
"IPAddress": {
|
|
484
|
+
"resourceType": "K8s::Networking::IPAddress",
|
|
485
|
+
"kind": "resource",
|
|
486
|
+
"lexicon": "k8s",
|
|
487
|
+
"apiVersion": "networking.k8s.io/v1beta1",
|
|
488
|
+
"gvkKind": "IPAddress"
|
|
489
|
+
},
|
|
490
|
+
"IPAddressList": {
|
|
491
|
+
"resourceType": "K8s::Networking::IPAddressList",
|
|
492
|
+
"kind": "resource",
|
|
493
|
+
"lexicon": "k8s",
|
|
494
|
+
"apiVersion": "networking.k8s.io/v1beta1",
|
|
495
|
+
"gvkKind": "IPAddressList"
|
|
496
|
+
},
|
|
497
|
+
"Ing": {
|
|
498
|
+
"resourceType": "K8s::Networking::Ingress",
|
|
499
|
+
"kind": "resource",
|
|
500
|
+
"lexicon": "k8s",
|
|
501
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
502
|
+
"gvkKind": "Ingress"
|
|
503
|
+
},
|
|
504
|
+
"Ingress": {
|
|
505
|
+
"resourceType": "K8s::Networking::Ingress",
|
|
506
|
+
"kind": "resource",
|
|
507
|
+
"lexicon": "k8s",
|
|
508
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
509
|
+
"gvkKind": "Ingress"
|
|
510
|
+
},
|
|
511
|
+
"IngressBackend": {
|
|
512
|
+
"resourceType": "K8s::Networking::IngressBackend",
|
|
513
|
+
"kind": "property",
|
|
514
|
+
"lexicon": "k8s"
|
|
515
|
+
},
|
|
516
|
+
"IngressClass": {
|
|
517
|
+
"resourceType": "K8s::Networking::IngressClass",
|
|
518
|
+
"kind": "resource",
|
|
519
|
+
"lexicon": "k8s",
|
|
520
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
521
|
+
"gvkKind": "IngressClass"
|
|
522
|
+
},
|
|
523
|
+
"IngressClassList": {
|
|
524
|
+
"resourceType": "K8s::Networking::IngressClassList",
|
|
525
|
+
"kind": "resource",
|
|
526
|
+
"lexicon": "k8s",
|
|
527
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
528
|
+
"gvkKind": "IngressClassList"
|
|
529
|
+
},
|
|
530
|
+
"IngressList": {
|
|
531
|
+
"resourceType": "K8s::Networking::IngressList",
|
|
532
|
+
"kind": "resource",
|
|
533
|
+
"lexicon": "k8s",
|
|
534
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
535
|
+
"gvkKind": "IngressList"
|
|
536
|
+
},
|
|
537
|
+
"IngressRule": {
|
|
538
|
+
"resourceType": "K8s::Networking::IngressRule",
|
|
539
|
+
"kind": "property",
|
|
540
|
+
"lexicon": "k8s"
|
|
541
|
+
},
|
|
542
|
+
"IngressServiceBackend": {
|
|
543
|
+
"resourceType": "K8s::Networking::IngressServiceBackend",
|
|
544
|
+
"kind": "property",
|
|
545
|
+
"lexicon": "k8s"
|
|
546
|
+
},
|
|
547
|
+
"IngressTLS": {
|
|
548
|
+
"resourceType": "K8s::Networking::IngressTLS",
|
|
549
|
+
"kind": "property",
|
|
550
|
+
"lexicon": "k8s"
|
|
551
|
+
},
|
|
552
|
+
"Job": {
|
|
553
|
+
"resourceType": "K8s::Batch::Job",
|
|
554
|
+
"kind": "resource",
|
|
555
|
+
"lexicon": "k8s",
|
|
556
|
+
"apiVersion": "batch/v1",
|
|
557
|
+
"gvkKind": "Job"
|
|
558
|
+
},
|
|
559
|
+
"JobList": {
|
|
560
|
+
"resourceType": "K8s::Batch::JobList",
|
|
561
|
+
"kind": "resource",
|
|
562
|
+
"lexicon": "k8s",
|
|
563
|
+
"apiVersion": "batch/v1",
|
|
564
|
+
"gvkKind": "JobList"
|
|
565
|
+
},
|
|
566
|
+
"KeyToPath": {
|
|
567
|
+
"resourceType": "K8s::Core::KeyToPath",
|
|
568
|
+
"kind": "property",
|
|
569
|
+
"lexicon": "k8s",
|
|
570
|
+
"constraints": {
|
|
571
|
+
"mode": {
|
|
572
|
+
"format": "int32"
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
"LabelSelector": {
|
|
577
|
+
"resourceType": "K8s::Meta::LabelSelector",
|
|
578
|
+
"kind": "property",
|
|
579
|
+
"lexicon": "k8s"
|
|
580
|
+
},
|
|
581
|
+
"LabelSelectorRequirement": {
|
|
582
|
+
"resourceType": "K8s::Meta::LabelSelectorRequirement",
|
|
583
|
+
"kind": "property",
|
|
584
|
+
"lexicon": "k8s"
|
|
585
|
+
},
|
|
586
|
+
"Lease": {
|
|
587
|
+
"resourceType": "K8s::Coordination::Lease",
|
|
588
|
+
"kind": "resource",
|
|
589
|
+
"lexicon": "k8s",
|
|
590
|
+
"apiVersion": "coordination.k8s.io/v1",
|
|
591
|
+
"gvkKind": "Lease"
|
|
592
|
+
},
|
|
593
|
+
"LeaseList": {
|
|
594
|
+
"resourceType": "K8s::Coordination::LeaseList",
|
|
595
|
+
"kind": "resource",
|
|
596
|
+
"lexicon": "k8s",
|
|
597
|
+
"apiVersion": "coordination.k8s.io/v1",
|
|
598
|
+
"gvkKind": "LeaseList"
|
|
599
|
+
},
|
|
600
|
+
"LimitRange": {
|
|
601
|
+
"resourceType": "K8s::Core::LimitRange",
|
|
602
|
+
"kind": "resource",
|
|
603
|
+
"lexicon": "k8s",
|
|
604
|
+
"apiVersion": "v1",
|
|
605
|
+
"gvkKind": "LimitRange"
|
|
606
|
+
},
|
|
607
|
+
"LimitRangeList": {
|
|
608
|
+
"resourceType": "K8s::Core::LimitRangeList",
|
|
609
|
+
"kind": "resource",
|
|
610
|
+
"lexicon": "k8s",
|
|
611
|
+
"apiVersion": "v1",
|
|
612
|
+
"gvkKind": "LimitRangeList"
|
|
613
|
+
},
|
|
614
|
+
"LocalObjectReference": {
|
|
615
|
+
"resourceType": "K8s::Core::LocalObjectReference",
|
|
616
|
+
"kind": "property",
|
|
617
|
+
"lexicon": "k8s"
|
|
618
|
+
},
|
|
619
|
+
"LocalSubjectAccessReview": {
|
|
620
|
+
"resourceType": "K8s::Authorization::LocalSubjectAccessReview",
|
|
621
|
+
"kind": "resource",
|
|
622
|
+
"lexicon": "k8s",
|
|
623
|
+
"apiVersion": "authorization.k8s.io/v1",
|
|
624
|
+
"gvkKind": "LocalSubjectAccessReview"
|
|
625
|
+
},
|
|
626
|
+
"MetricSpec": {
|
|
627
|
+
"resourceType": "K8s::Autoscaling::MetricSpec",
|
|
628
|
+
"kind": "property",
|
|
629
|
+
"lexicon": "k8s"
|
|
630
|
+
},
|
|
631
|
+
"MutatingWebhookConfiguration": {
|
|
632
|
+
"resourceType": "K8s::Admissionregistration::MutatingWebhookConfiguration",
|
|
633
|
+
"kind": "resource",
|
|
634
|
+
"lexicon": "k8s",
|
|
635
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
636
|
+
"gvkKind": "MutatingWebhookConfiguration"
|
|
637
|
+
},
|
|
638
|
+
"MutatingWebhookConfigurationList": {
|
|
639
|
+
"resourceType": "K8s::Admissionregistration::MutatingWebhookConfigurationList",
|
|
640
|
+
"kind": "resource",
|
|
641
|
+
"lexicon": "k8s",
|
|
642
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
643
|
+
"gvkKind": "MutatingWebhookConfigurationList"
|
|
644
|
+
},
|
|
645
|
+
"NS": {
|
|
646
|
+
"resourceType": "K8s::Core::Namespace",
|
|
647
|
+
"kind": "resource",
|
|
648
|
+
"lexicon": "k8s",
|
|
649
|
+
"apiVersion": "v1",
|
|
650
|
+
"gvkKind": "Namespace"
|
|
651
|
+
},
|
|
652
|
+
"Namespace": {
|
|
653
|
+
"resourceType": "K8s::Core::Namespace",
|
|
654
|
+
"kind": "resource",
|
|
655
|
+
"lexicon": "k8s",
|
|
656
|
+
"apiVersion": "v1",
|
|
657
|
+
"gvkKind": "Namespace"
|
|
658
|
+
},
|
|
659
|
+
"NamespaceList": {
|
|
660
|
+
"resourceType": "K8s::Core::NamespaceList",
|
|
661
|
+
"kind": "resource",
|
|
662
|
+
"lexicon": "k8s",
|
|
663
|
+
"apiVersion": "v1",
|
|
664
|
+
"gvkKind": "NamespaceList"
|
|
665
|
+
},
|
|
666
|
+
"NetPol": {
|
|
667
|
+
"resourceType": "K8s::Networking::NetworkPolicy",
|
|
668
|
+
"kind": "resource",
|
|
669
|
+
"lexicon": "k8s",
|
|
670
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
671
|
+
"gvkKind": "NetworkPolicy"
|
|
672
|
+
},
|
|
673
|
+
"NetworkPolicy": {
|
|
674
|
+
"resourceType": "K8s::Networking::NetworkPolicy",
|
|
675
|
+
"kind": "resource",
|
|
676
|
+
"lexicon": "k8s",
|
|
677
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
678
|
+
"gvkKind": "NetworkPolicy"
|
|
679
|
+
},
|
|
680
|
+
"NetworkPolicyEgressRule": {
|
|
681
|
+
"resourceType": "K8s::Networking::NetworkPolicyEgressRule",
|
|
682
|
+
"kind": "property",
|
|
683
|
+
"lexicon": "k8s"
|
|
684
|
+
},
|
|
685
|
+
"NetworkPolicyIngressRule": {
|
|
686
|
+
"resourceType": "K8s::Networking::NetworkPolicyIngressRule",
|
|
687
|
+
"kind": "property",
|
|
688
|
+
"lexicon": "k8s"
|
|
689
|
+
},
|
|
690
|
+
"NetworkPolicyList": {
|
|
691
|
+
"resourceType": "K8s::Networking::NetworkPolicyList",
|
|
692
|
+
"kind": "resource",
|
|
693
|
+
"lexicon": "k8s",
|
|
694
|
+
"apiVersion": "networking.k8s.io/v1",
|
|
695
|
+
"gvkKind": "NetworkPolicyList"
|
|
696
|
+
},
|
|
697
|
+
"NetworkPolicyPeer": {
|
|
698
|
+
"resourceType": "K8s::Networking::NetworkPolicyPeer",
|
|
699
|
+
"kind": "property",
|
|
700
|
+
"lexicon": "k8s"
|
|
701
|
+
},
|
|
702
|
+
"NetworkPolicyPort": {
|
|
703
|
+
"resourceType": "K8s::Networking::NetworkPolicyPort",
|
|
704
|
+
"kind": "property",
|
|
705
|
+
"lexicon": "k8s",
|
|
706
|
+
"constraints": {
|
|
707
|
+
"endPort": {
|
|
708
|
+
"format": "int32"
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
"Node": {
|
|
713
|
+
"resourceType": "K8s::Core::Node",
|
|
714
|
+
"kind": "resource",
|
|
715
|
+
"lexicon": "k8s",
|
|
716
|
+
"apiVersion": "v1",
|
|
717
|
+
"gvkKind": "Node"
|
|
718
|
+
},
|
|
719
|
+
"NodeList": {
|
|
720
|
+
"resourceType": "K8s::Core::NodeList",
|
|
721
|
+
"kind": "resource",
|
|
722
|
+
"lexicon": "k8s",
|
|
723
|
+
"apiVersion": "v1",
|
|
724
|
+
"gvkKind": "NodeList"
|
|
725
|
+
},
|
|
726
|
+
"ObjectMeta": {
|
|
727
|
+
"resourceType": "K8s::Meta::ObjectMeta",
|
|
728
|
+
"kind": "property",
|
|
729
|
+
"lexicon": "k8s",
|
|
730
|
+
"constraints": {
|
|
731
|
+
"deletionGracePeriodSeconds": {
|
|
732
|
+
"format": "int64"
|
|
733
|
+
},
|
|
734
|
+
"generation": {
|
|
735
|
+
"format": "int64"
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"ObjectReference": {
|
|
740
|
+
"resourceType": "K8s::Core::ObjectReference",
|
|
741
|
+
"kind": "property",
|
|
742
|
+
"lexicon": "k8s"
|
|
743
|
+
},
|
|
744
|
+
"PDB": {
|
|
745
|
+
"resourceType": "K8s::Policy::PodDisruptionBudget",
|
|
746
|
+
"kind": "resource",
|
|
747
|
+
"lexicon": "k8s",
|
|
748
|
+
"apiVersion": "policy/v1",
|
|
749
|
+
"gvkKind": "PodDisruptionBudget"
|
|
750
|
+
},
|
|
751
|
+
"PV": {
|
|
752
|
+
"resourceType": "K8s::Core::PersistentVolume",
|
|
753
|
+
"kind": "resource",
|
|
754
|
+
"lexicon": "k8s",
|
|
755
|
+
"apiVersion": "v1",
|
|
756
|
+
"gvkKind": "PersistentVolume"
|
|
757
|
+
},
|
|
758
|
+
"PVC": {
|
|
759
|
+
"resourceType": "K8s::Core::PersistentVolumeClaim",
|
|
760
|
+
"kind": "resource",
|
|
761
|
+
"lexicon": "k8s",
|
|
762
|
+
"apiVersion": "v1",
|
|
763
|
+
"gvkKind": "PersistentVolumeClaim"
|
|
764
|
+
},
|
|
765
|
+
"PersistentVolume": {
|
|
766
|
+
"resourceType": "K8s::Core::PersistentVolume",
|
|
767
|
+
"kind": "resource",
|
|
768
|
+
"lexicon": "k8s",
|
|
769
|
+
"apiVersion": "v1",
|
|
770
|
+
"gvkKind": "PersistentVolume"
|
|
771
|
+
},
|
|
772
|
+
"PersistentVolumeClaim": {
|
|
773
|
+
"resourceType": "K8s::Core::PersistentVolumeClaim",
|
|
774
|
+
"kind": "resource",
|
|
775
|
+
"lexicon": "k8s",
|
|
776
|
+
"apiVersion": "v1",
|
|
777
|
+
"gvkKind": "PersistentVolumeClaim"
|
|
778
|
+
},
|
|
779
|
+
"PersistentVolumeClaimList": {
|
|
780
|
+
"resourceType": "K8s::Core::PersistentVolumeClaimList",
|
|
781
|
+
"kind": "resource",
|
|
782
|
+
"lexicon": "k8s",
|
|
783
|
+
"apiVersion": "v1",
|
|
784
|
+
"gvkKind": "PersistentVolumeClaimList"
|
|
785
|
+
},
|
|
786
|
+
"PersistentVolumeClaimSpec": {
|
|
787
|
+
"resourceType": "K8s::Core::PersistentVolumeClaimSpec",
|
|
788
|
+
"kind": "property",
|
|
789
|
+
"lexicon": "k8s"
|
|
790
|
+
},
|
|
791
|
+
"PersistentVolumeList": {
|
|
792
|
+
"resourceType": "K8s::Core::PersistentVolumeList",
|
|
793
|
+
"kind": "resource",
|
|
794
|
+
"lexicon": "k8s",
|
|
795
|
+
"apiVersion": "v1",
|
|
796
|
+
"gvkKind": "PersistentVolumeList"
|
|
797
|
+
},
|
|
798
|
+
"Pod": {
|
|
799
|
+
"resourceType": "K8s::Core::Pod",
|
|
800
|
+
"kind": "resource",
|
|
801
|
+
"lexicon": "k8s",
|
|
802
|
+
"apiVersion": "v1",
|
|
803
|
+
"gvkKind": "Pod"
|
|
804
|
+
},
|
|
805
|
+
"PodDisruptionBudget": {
|
|
806
|
+
"resourceType": "K8s::Policy::PodDisruptionBudget",
|
|
807
|
+
"kind": "resource",
|
|
808
|
+
"lexicon": "k8s",
|
|
809
|
+
"apiVersion": "policy/v1",
|
|
810
|
+
"gvkKind": "PodDisruptionBudget"
|
|
811
|
+
},
|
|
812
|
+
"PodDisruptionBudgetList": {
|
|
813
|
+
"resourceType": "K8s::Policy::PodDisruptionBudgetList",
|
|
814
|
+
"kind": "resource",
|
|
815
|
+
"lexicon": "k8s",
|
|
816
|
+
"apiVersion": "policy/v1",
|
|
817
|
+
"gvkKind": "PodDisruptionBudgetList"
|
|
818
|
+
},
|
|
819
|
+
"PodDisruptionBudgetSpec": {
|
|
820
|
+
"resourceType": "K8s::Policy::PodDisruptionBudgetSpec",
|
|
821
|
+
"kind": "property",
|
|
822
|
+
"lexicon": "k8s"
|
|
823
|
+
},
|
|
824
|
+
"PodList": {
|
|
825
|
+
"resourceType": "K8s::Core::PodList",
|
|
826
|
+
"kind": "resource",
|
|
827
|
+
"lexicon": "k8s",
|
|
828
|
+
"apiVersion": "v1",
|
|
829
|
+
"gvkKind": "PodList"
|
|
830
|
+
},
|
|
831
|
+
"PodSecurityContext": {
|
|
832
|
+
"resourceType": "K8s::Core::PodSecurityContext",
|
|
833
|
+
"kind": "property",
|
|
834
|
+
"lexicon": "k8s",
|
|
835
|
+
"constraints": {
|
|
836
|
+
"fsGroup": {
|
|
837
|
+
"format": "int64"
|
|
838
|
+
},
|
|
839
|
+
"runAsGroup": {
|
|
840
|
+
"format": "int64"
|
|
841
|
+
},
|
|
842
|
+
"runAsUser": {
|
|
843
|
+
"format": "int64"
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
"PodSpec": {
|
|
848
|
+
"resourceType": "K8s::Core::PodSpec",
|
|
849
|
+
"kind": "property",
|
|
850
|
+
"lexicon": "k8s",
|
|
851
|
+
"constraints": {
|
|
852
|
+
"activeDeadlineSeconds": {
|
|
853
|
+
"format": "int64"
|
|
854
|
+
},
|
|
855
|
+
"priority": {
|
|
856
|
+
"format": "int32"
|
|
857
|
+
},
|
|
858
|
+
"terminationGracePeriodSeconds": {
|
|
859
|
+
"format": "int64"
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"PodTemplate": {
|
|
864
|
+
"resourceType": "K8s::Core::PodTemplate",
|
|
865
|
+
"kind": "resource",
|
|
866
|
+
"lexicon": "k8s",
|
|
867
|
+
"apiVersion": "v1",
|
|
868
|
+
"gvkKind": "PodTemplate"
|
|
869
|
+
},
|
|
870
|
+
"PodTemplateList": {
|
|
871
|
+
"resourceType": "K8s::Core::PodTemplateList",
|
|
872
|
+
"kind": "resource",
|
|
873
|
+
"lexicon": "k8s",
|
|
874
|
+
"apiVersion": "v1",
|
|
875
|
+
"gvkKind": "PodTemplateList"
|
|
876
|
+
},
|
|
877
|
+
"PodTemplateSpec": {
|
|
878
|
+
"resourceType": "K8s::Core::PodTemplateSpec",
|
|
879
|
+
"kind": "property",
|
|
880
|
+
"lexicon": "k8s"
|
|
881
|
+
},
|
|
882
|
+
"PolicyRule": {
|
|
883
|
+
"resourceType": "K8s::Rbac::PolicyRule",
|
|
884
|
+
"kind": "property",
|
|
885
|
+
"lexicon": "k8s"
|
|
886
|
+
},
|
|
887
|
+
"PriorityClass": {
|
|
888
|
+
"resourceType": "K8s::Scheduling::PriorityClass",
|
|
889
|
+
"kind": "resource",
|
|
890
|
+
"lexicon": "k8s",
|
|
891
|
+
"apiVersion": "scheduling.k8s.io/v1",
|
|
892
|
+
"gvkKind": "PriorityClass",
|
|
893
|
+
"constraints": {
|
|
894
|
+
"value": {
|
|
895
|
+
"format": "int32"
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
},
|
|
899
|
+
"PriorityClassList": {
|
|
900
|
+
"resourceType": "K8s::Scheduling::PriorityClassList",
|
|
901
|
+
"kind": "resource",
|
|
902
|
+
"lexicon": "k8s",
|
|
903
|
+
"apiVersion": "scheduling.k8s.io/v1",
|
|
904
|
+
"gvkKind": "PriorityClassList"
|
|
905
|
+
},
|
|
906
|
+
"PriorityLevelConfiguration": {
|
|
907
|
+
"resourceType": "K8s::Flowcontrol::PriorityLevelConfiguration",
|
|
908
|
+
"kind": "resource",
|
|
909
|
+
"lexicon": "k8s",
|
|
910
|
+
"apiVersion": "flowcontrol.apiserver.k8s.io/v1",
|
|
911
|
+
"gvkKind": "PriorityLevelConfiguration"
|
|
912
|
+
},
|
|
913
|
+
"PriorityLevelConfigurationList": {
|
|
914
|
+
"resourceType": "K8s::Flowcontrol::PriorityLevelConfigurationList",
|
|
915
|
+
"kind": "resource",
|
|
916
|
+
"lexicon": "k8s",
|
|
917
|
+
"apiVersion": "flowcontrol.apiserver.k8s.io/v1",
|
|
918
|
+
"gvkKind": "PriorityLevelConfigurationList"
|
|
919
|
+
},
|
|
920
|
+
"Probe": {
|
|
921
|
+
"resourceType": "K8s::Core::Probe",
|
|
922
|
+
"kind": "property",
|
|
923
|
+
"lexicon": "k8s",
|
|
924
|
+
"constraints": {
|
|
925
|
+
"failureThreshold": {
|
|
926
|
+
"format": "int32"
|
|
927
|
+
},
|
|
928
|
+
"initialDelaySeconds": {
|
|
929
|
+
"format": "int32"
|
|
930
|
+
},
|
|
931
|
+
"periodSeconds": {
|
|
932
|
+
"format": "int32"
|
|
933
|
+
},
|
|
934
|
+
"successThreshold": {
|
|
935
|
+
"format": "int32"
|
|
936
|
+
},
|
|
937
|
+
"terminationGracePeriodSeconds": {
|
|
938
|
+
"format": "int64"
|
|
939
|
+
},
|
|
940
|
+
"timeoutSeconds": {
|
|
941
|
+
"format": "int32"
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"ReplicaSet": {
|
|
946
|
+
"resourceType": "K8s::Apps::ReplicaSet",
|
|
947
|
+
"kind": "resource",
|
|
948
|
+
"lexicon": "k8s",
|
|
949
|
+
"apiVersion": "apps/v1",
|
|
950
|
+
"gvkKind": "ReplicaSet"
|
|
951
|
+
},
|
|
952
|
+
"ReplicaSetList": {
|
|
953
|
+
"resourceType": "K8s::Apps::ReplicaSetList",
|
|
954
|
+
"kind": "resource",
|
|
955
|
+
"lexicon": "k8s",
|
|
956
|
+
"apiVersion": "apps/v1",
|
|
957
|
+
"gvkKind": "ReplicaSetList"
|
|
958
|
+
},
|
|
959
|
+
"ReplicationController": {
|
|
960
|
+
"resourceType": "K8s::Core::ReplicationController",
|
|
961
|
+
"kind": "resource",
|
|
962
|
+
"lexicon": "k8s",
|
|
963
|
+
"apiVersion": "v1",
|
|
964
|
+
"gvkKind": "ReplicationController"
|
|
965
|
+
},
|
|
966
|
+
"ReplicationControllerList": {
|
|
967
|
+
"resourceType": "K8s::Core::ReplicationControllerList",
|
|
968
|
+
"kind": "resource",
|
|
969
|
+
"lexicon": "k8s",
|
|
970
|
+
"apiVersion": "v1",
|
|
971
|
+
"gvkKind": "ReplicationControllerList"
|
|
972
|
+
},
|
|
973
|
+
"ResourceClaim": {
|
|
974
|
+
"resourceType": "K8s::Resource::ResourceClaim",
|
|
975
|
+
"kind": "resource",
|
|
976
|
+
"lexicon": "k8s",
|
|
977
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
978
|
+
"gvkKind": "ResourceClaim"
|
|
979
|
+
},
|
|
980
|
+
"ResourceClaimList": {
|
|
981
|
+
"resourceType": "K8s::Resource::ResourceClaimList",
|
|
982
|
+
"kind": "resource",
|
|
983
|
+
"lexicon": "k8s",
|
|
984
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
985
|
+
"gvkKind": "ResourceClaimList"
|
|
986
|
+
},
|
|
987
|
+
"ResourceClaimTemplate": {
|
|
988
|
+
"resourceType": "K8s::Resource::ResourceClaimTemplate",
|
|
989
|
+
"kind": "resource",
|
|
990
|
+
"lexicon": "k8s",
|
|
991
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
992
|
+
"gvkKind": "ResourceClaimTemplate"
|
|
993
|
+
},
|
|
994
|
+
"ResourceClaimTemplateList": {
|
|
995
|
+
"resourceType": "K8s::Resource::ResourceClaimTemplateList",
|
|
996
|
+
"kind": "resource",
|
|
997
|
+
"lexicon": "k8s",
|
|
998
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
999
|
+
"gvkKind": "ResourceClaimTemplateList"
|
|
1000
|
+
},
|
|
1001
|
+
"ResourceQuota": {
|
|
1002
|
+
"resourceType": "K8s::Core::ResourceQuota",
|
|
1003
|
+
"kind": "resource",
|
|
1004
|
+
"lexicon": "k8s",
|
|
1005
|
+
"apiVersion": "v1",
|
|
1006
|
+
"gvkKind": "ResourceQuota"
|
|
1007
|
+
},
|
|
1008
|
+
"ResourceQuotaList": {
|
|
1009
|
+
"resourceType": "K8s::Core::ResourceQuotaList",
|
|
1010
|
+
"kind": "resource",
|
|
1011
|
+
"lexicon": "k8s",
|
|
1012
|
+
"apiVersion": "v1",
|
|
1013
|
+
"gvkKind": "ResourceQuotaList"
|
|
1014
|
+
},
|
|
1015
|
+
"ResourceRequirements": {
|
|
1016
|
+
"resourceType": "K8s::Core::ResourceRequirements",
|
|
1017
|
+
"kind": "property",
|
|
1018
|
+
"lexicon": "k8s"
|
|
1019
|
+
},
|
|
1020
|
+
"ResourceSlice": {
|
|
1021
|
+
"resourceType": "K8s::Resource::ResourceSlice",
|
|
1022
|
+
"kind": "resource",
|
|
1023
|
+
"lexicon": "k8s",
|
|
1024
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
1025
|
+
"gvkKind": "ResourceSlice"
|
|
1026
|
+
},
|
|
1027
|
+
"ResourceSliceList": {
|
|
1028
|
+
"resourceType": "K8s::Resource::ResourceSliceList",
|
|
1029
|
+
"kind": "resource",
|
|
1030
|
+
"lexicon": "k8s",
|
|
1031
|
+
"apiVersion": "resource.k8s.io/v1beta1",
|
|
1032
|
+
"gvkKind": "ResourceSliceList"
|
|
1033
|
+
},
|
|
1034
|
+
"Role": {
|
|
1035
|
+
"resourceType": "K8s::Rbac::Role",
|
|
1036
|
+
"kind": "resource",
|
|
1037
|
+
"lexicon": "k8s",
|
|
1038
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
1039
|
+
"gvkKind": "Role"
|
|
1040
|
+
},
|
|
1041
|
+
"RoleBinding": {
|
|
1042
|
+
"resourceType": "K8s::Rbac::RoleBinding",
|
|
1043
|
+
"kind": "resource",
|
|
1044
|
+
"lexicon": "k8s",
|
|
1045
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
1046
|
+
"gvkKind": "RoleBinding"
|
|
1047
|
+
},
|
|
1048
|
+
"RoleBindingList": {
|
|
1049
|
+
"resourceType": "K8s::Rbac::RoleBindingList",
|
|
1050
|
+
"kind": "resource",
|
|
1051
|
+
"lexicon": "k8s",
|
|
1052
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
1053
|
+
"gvkKind": "RoleBindingList"
|
|
1054
|
+
},
|
|
1055
|
+
"RoleList": {
|
|
1056
|
+
"resourceType": "K8s::Rbac::RoleList",
|
|
1057
|
+
"kind": "resource",
|
|
1058
|
+
"lexicon": "k8s",
|
|
1059
|
+
"apiVersion": "rbac.authorization.k8s.io/v1",
|
|
1060
|
+
"gvkKind": "RoleList"
|
|
1061
|
+
},
|
|
1062
|
+
"RoleRef": {
|
|
1063
|
+
"resourceType": "K8s::Rbac::RoleRef",
|
|
1064
|
+
"kind": "property",
|
|
1065
|
+
"lexicon": "k8s"
|
|
1066
|
+
},
|
|
1067
|
+
"RollingUpdateDeployment": {
|
|
1068
|
+
"resourceType": "K8s::Apps::RollingUpdateDeployment",
|
|
1069
|
+
"kind": "property",
|
|
1070
|
+
"lexicon": "k8s"
|
|
1071
|
+
},
|
|
1072
|
+
"RuntimeClass": {
|
|
1073
|
+
"resourceType": "K8s::Node::RuntimeClass",
|
|
1074
|
+
"kind": "resource",
|
|
1075
|
+
"lexicon": "k8s",
|
|
1076
|
+
"apiVersion": "node.k8s.io/v1",
|
|
1077
|
+
"gvkKind": "RuntimeClass"
|
|
1078
|
+
},
|
|
1079
|
+
"RuntimeClassList": {
|
|
1080
|
+
"resourceType": "K8s::Node::RuntimeClassList",
|
|
1081
|
+
"kind": "resource",
|
|
1082
|
+
"lexicon": "k8s",
|
|
1083
|
+
"apiVersion": "node.k8s.io/v1",
|
|
1084
|
+
"gvkKind": "RuntimeClassList"
|
|
1085
|
+
},
|
|
1086
|
+
"SA": {
|
|
1087
|
+
"resourceType": "K8s::Core::ServiceAccount",
|
|
1088
|
+
"kind": "resource",
|
|
1089
|
+
"lexicon": "k8s",
|
|
1090
|
+
"apiVersion": "v1",
|
|
1091
|
+
"gvkKind": "ServiceAccount"
|
|
1092
|
+
},
|
|
1093
|
+
"STS": {
|
|
1094
|
+
"resourceType": "K8s::Apps::StatefulSet",
|
|
1095
|
+
"kind": "resource",
|
|
1096
|
+
"lexicon": "k8s",
|
|
1097
|
+
"apiVersion": "apps/v1",
|
|
1098
|
+
"gvkKind": "StatefulSet"
|
|
1099
|
+
},
|
|
1100
|
+
"Scale": {
|
|
1101
|
+
"resourceType": "K8s::Autoscaling::Scale",
|
|
1102
|
+
"kind": "resource",
|
|
1103
|
+
"lexicon": "k8s",
|
|
1104
|
+
"apiVersion": "autoscaling/v1",
|
|
1105
|
+
"gvkKind": "Scale"
|
|
1106
|
+
},
|
|
1107
|
+
"Sec": {
|
|
1108
|
+
"resourceType": "K8s::Core::Secret",
|
|
1109
|
+
"kind": "resource",
|
|
1110
|
+
"lexicon": "k8s",
|
|
1111
|
+
"apiVersion": "v1",
|
|
1112
|
+
"gvkKind": "Secret"
|
|
1113
|
+
},
|
|
1114
|
+
"Secret": {
|
|
1115
|
+
"resourceType": "K8s::Core::Secret",
|
|
1116
|
+
"kind": "resource",
|
|
1117
|
+
"lexicon": "k8s",
|
|
1118
|
+
"apiVersion": "v1",
|
|
1119
|
+
"gvkKind": "Secret"
|
|
1120
|
+
},
|
|
1121
|
+
"SecretKeySelector": {
|
|
1122
|
+
"resourceType": "K8s::Core::SecretKeySelector",
|
|
1123
|
+
"kind": "property",
|
|
1124
|
+
"lexicon": "k8s"
|
|
1125
|
+
},
|
|
1126
|
+
"SecretList": {
|
|
1127
|
+
"resourceType": "K8s::Core::SecretList",
|
|
1128
|
+
"kind": "resource",
|
|
1129
|
+
"lexicon": "k8s",
|
|
1130
|
+
"apiVersion": "v1",
|
|
1131
|
+
"gvkKind": "SecretList"
|
|
1132
|
+
},
|
|
1133
|
+
"SecurityContext": {
|
|
1134
|
+
"resourceType": "K8s::Core::SecurityContext",
|
|
1135
|
+
"kind": "property",
|
|
1136
|
+
"lexicon": "k8s",
|
|
1137
|
+
"constraints": {
|
|
1138
|
+
"runAsGroup": {
|
|
1139
|
+
"format": "int64"
|
|
1140
|
+
},
|
|
1141
|
+
"runAsUser": {
|
|
1142
|
+
"format": "int64"
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
"SelfSubjectAccessReview": {
|
|
1147
|
+
"resourceType": "K8s::Authorization::SelfSubjectAccessReview",
|
|
1148
|
+
"kind": "resource",
|
|
1149
|
+
"lexicon": "k8s",
|
|
1150
|
+
"apiVersion": "authorization.k8s.io/v1",
|
|
1151
|
+
"gvkKind": "SelfSubjectAccessReview"
|
|
1152
|
+
},
|
|
1153
|
+
"SelfSubjectReview": {
|
|
1154
|
+
"resourceType": "K8s::Authentication::SelfSubjectReview",
|
|
1155
|
+
"kind": "resource",
|
|
1156
|
+
"lexicon": "k8s",
|
|
1157
|
+
"apiVersion": "authentication.k8s.io/v1",
|
|
1158
|
+
"gvkKind": "SelfSubjectReview"
|
|
1159
|
+
},
|
|
1160
|
+
"SelfSubjectRulesReview": {
|
|
1161
|
+
"resourceType": "K8s::Authorization::SelfSubjectRulesReview",
|
|
1162
|
+
"kind": "resource",
|
|
1163
|
+
"lexicon": "k8s",
|
|
1164
|
+
"apiVersion": "authorization.k8s.io/v1",
|
|
1165
|
+
"gvkKind": "SelfSubjectRulesReview"
|
|
1166
|
+
},
|
|
1167
|
+
"Service": {
|
|
1168
|
+
"resourceType": "K8s::Core::Service",
|
|
1169
|
+
"kind": "resource",
|
|
1170
|
+
"lexicon": "k8s",
|
|
1171
|
+
"apiVersion": "v1",
|
|
1172
|
+
"gvkKind": "Service"
|
|
1173
|
+
},
|
|
1174
|
+
"ServiceAccount": {
|
|
1175
|
+
"resourceType": "K8s::Core::ServiceAccount",
|
|
1176
|
+
"kind": "resource",
|
|
1177
|
+
"lexicon": "k8s",
|
|
1178
|
+
"apiVersion": "v1",
|
|
1179
|
+
"gvkKind": "ServiceAccount"
|
|
1180
|
+
},
|
|
1181
|
+
"ServiceAccountList": {
|
|
1182
|
+
"resourceType": "K8s::Core::ServiceAccountList",
|
|
1183
|
+
"kind": "resource",
|
|
1184
|
+
"lexicon": "k8s",
|
|
1185
|
+
"apiVersion": "v1",
|
|
1186
|
+
"gvkKind": "ServiceAccountList"
|
|
1187
|
+
},
|
|
1188
|
+
"ServiceBackendPort": {
|
|
1189
|
+
"resourceType": "K8s::Networking::ServiceBackendPort",
|
|
1190
|
+
"kind": "property",
|
|
1191
|
+
"lexicon": "k8s",
|
|
1192
|
+
"constraints": {
|
|
1193
|
+
"number": {
|
|
1194
|
+
"format": "int32"
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
},
|
|
1198
|
+
"ServiceCIDR": {
|
|
1199
|
+
"resourceType": "K8s::Networking::ServiceCIDR",
|
|
1200
|
+
"kind": "resource",
|
|
1201
|
+
"lexicon": "k8s",
|
|
1202
|
+
"apiVersion": "networking.k8s.io/v1beta1",
|
|
1203
|
+
"gvkKind": "ServiceCIDR"
|
|
1204
|
+
},
|
|
1205
|
+
"ServiceCIDRList": {
|
|
1206
|
+
"resourceType": "K8s::Networking::ServiceCIDRList",
|
|
1207
|
+
"kind": "resource",
|
|
1208
|
+
"lexicon": "k8s",
|
|
1209
|
+
"apiVersion": "networking.k8s.io/v1beta1",
|
|
1210
|
+
"gvkKind": "ServiceCIDRList"
|
|
1211
|
+
},
|
|
1212
|
+
"ServiceList": {
|
|
1213
|
+
"resourceType": "K8s::Core::ServiceList",
|
|
1214
|
+
"kind": "resource",
|
|
1215
|
+
"lexicon": "k8s",
|
|
1216
|
+
"apiVersion": "v1",
|
|
1217
|
+
"gvkKind": "ServiceList"
|
|
1218
|
+
},
|
|
1219
|
+
"ServicePort": {
|
|
1220
|
+
"resourceType": "K8s::Core::ServicePort",
|
|
1221
|
+
"kind": "property",
|
|
1222
|
+
"lexicon": "k8s",
|
|
1223
|
+
"constraints": {
|
|
1224
|
+
"nodePort": {
|
|
1225
|
+
"format": "int32"
|
|
1226
|
+
},
|
|
1227
|
+
"port": {
|
|
1228
|
+
"format": "int32"
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
},
|
|
1232
|
+
"StatefulSet": {
|
|
1233
|
+
"resourceType": "K8s::Apps::StatefulSet",
|
|
1234
|
+
"kind": "resource",
|
|
1235
|
+
"lexicon": "k8s",
|
|
1236
|
+
"apiVersion": "apps/v1",
|
|
1237
|
+
"gvkKind": "StatefulSet"
|
|
1238
|
+
},
|
|
1239
|
+
"StatefulSetList": {
|
|
1240
|
+
"resourceType": "K8s::Apps::StatefulSetList",
|
|
1241
|
+
"kind": "resource",
|
|
1242
|
+
"lexicon": "k8s",
|
|
1243
|
+
"apiVersion": "apps/v1",
|
|
1244
|
+
"gvkKind": "StatefulSetList"
|
|
1245
|
+
},
|
|
1246
|
+
"Status": {
|
|
1247
|
+
"resourceType": "K8s::Core::Status",
|
|
1248
|
+
"kind": "resource",
|
|
1249
|
+
"lexicon": "k8s",
|
|
1250
|
+
"apiVersion": "v1",
|
|
1251
|
+
"gvkKind": "Status",
|
|
1252
|
+
"constraints": {
|
|
1253
|
+
"code": {
|
|
1254
|
+
"format": "int32"
|
|
1255
|
+
}
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
"StorageClass": {
|
|
1259
|
+
"resourceType": "K8s::Storage::StorageClass",
|
|
1260
|
+
"kind": "resource",
|
|
1261
|
+
"lexicon": "k8s",
|
|
1262
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
1263
|
+
"gvkKind": "StorageClass"
|
|
1264
|
+
},
|
|
1265
|
+
"StorageClassList": {
|
|
1266
|
+
"resourceType": "K8s::Storage::StorageClassList",
|
|
1267
|
+
"kind": "resource",
|
|
1268
|
+
"lexicon": "k8s",
|
|
1269
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
1270
|
+
"gvkKind": "StorageClassList"
|
|
1271
|
+
},
|
|
1272
|
+
"Subject": {
|
|
1273
|
+
"resourceType": "K8s::Rbac::Subject",
|
|
1274
|
+
"kind": "property",
|
|
1275
|
+
"lexicon": "k8s"
|
|
1276
|
+
},
|
|
1277
|
+
"SubjectAccessReview": {
|
|
1278
|
+
"resourceType": "K8s::Authorization::SubjectAccessReview",
|
|
1279
|
+
"kind": "resource",
|
|
1280
|
+
"lexicon": "k8s",
|
|
1281
|
+
"apiVersion": "authorization.k8s.io/v1",
|
|
1282
|
+
"gvkKind": "SubjectAccessReview"
|
|
1283
|
+
},
|
|
1284
|
+
"TCPSocketAction": {
|
|
1285
|
+
"resourceType": "K8s::Core::TCPSocketAction",
|
|
1286
|
+
"kind": "property",
|
|
1287
|
+
"lexicon": "k8s"
|
|
1288
|
+
},
|
|
1289
|
+
"TokenRequest": {
|
|
1290
|
+
"resourceType": "K8s::Authentication::TokenRequest",
|
|
1291
|
+
"kind": "resource",
|
|
1292
|
+
"lexicon": "k8s",
|
|
1293
|
+
"apiVersion": "authentication.k8s.io/v1",
|
|
1294
|
+
"gvkKind": "TokenRequest"
|
|
1295
|
+
},
|
|
1296
|
+
"TokenReview": {
|
|
1297
|
+
"resourceType": "K8s::Authentication::TokenReview",
|
|
1298
|
+
"kind": "resource",
|
|
1299
|
+
"lexicon": "k8s",
|
|
1300
|
+
"apiVersion": "authentication.k8s.io/v1",
|
|
1301
|
+
"gvkKind": "TokenReview"
|
|
1302
|
+
},
|
|
1303
|
+
"Toleration": {
|
|
1304
|
+
"resourceType": "K8s::Core::Toleration",
|
|
1305
|
+
"kind": "property",
|
|
1306
|
+
"lexicon": "k8s",
|
|
1307
|
+
"constraints": {
|
|
1308
|
+
"tolerationSeconds": {
|
|
1309
|
+
"format": "int64"
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
"TopologySpreadConstraint": {
|
|
1314
|
+
"resourceType": "K8s::Core::TopologySpreadConstraint",
|
|
1315
|
+
"kind": "property",
|
|
1316
|
+
"lexicon": "k8s",
|
|
1317
|
+
"constraints": {
|
|
1318
|
+
"maxSkew": {
|
|
1319
|
+
"format": "int32"
|
|
1320
|
+
},
|
|
1321
|
+
"minDomains": {
|
|
1322
|
+
"format": "int32"
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
},
|
|
1326
|
+
"ValidatingAdmissionPolicy": {
|
|
1327
|
+
"resourceType": "K8s::Admissionregistration::ValidatingAdmissionPolicy",
|
|
1328
|
+
"kind": "resource",
|
|
1329
|
+
"lexicon": "k8s",
|
|
1330
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
1331
|
+
"gvkKind": "ValidatingAdmissionPolicy"
|
|
1332
|
+
},
|
|
1333
|
+
"ValidatingAdmissionPolicyBinding": {
|
|
1334
|
+
"resourceType": "K8s::Admissionregistration::ValidatingAdmissionPolicyBinding",
|
|
1335
|
+
"kind": "resource",
|
|
1336
|
+
"lexicon": "k8s",
|
|
1337
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
1338
|
+
"gvkKind": "ValidatingAdmissionPolicyBinding"
|
|
1339
|
+
},
|
|
1340
|
+
"ValidatingAdmissionPolicyBindingList": {
|
|
1341
|
+
"resourceType": "K8s::Admissionregistration::ValidatingAdmissionPolicyBindingList",
|
|
1342
|
+
"kind": "resource",
|
|
1343
|
+
"lexicon": "k8s",
|
|
1344
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
1345
|
+
"gvkKind": "ValidatingAdmissionPolicyBindingList"
|
|
1346
|
+
},
|
|
1347
|
+
"ValidatingAdmissionPolicyList": {
|
|
1348
|
+
"resourceType": "K8s::Admissionregistration::ValidatingAdmissionPolicyList",
|
|
1349
|
+
"kind": "resource",
|
|
1350
|
+
"lexicon": "k8s",
|
|
1351
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
1352
|
+
"gvkKind": "ValidatingAdmissionPolicyList"
|
|
1353
|
+
},
|
|
1354
|
+
"ValidatingWebhookConfiguration": {
|
|
1355
|
+
"resourceType": "K8s::Admissionregistration::ValidatingWebhookConfiguration",
|
|
1356
|
+
"kind": "resource",
|
|
1357
|
+
"lexicon": "k8s",
|
|
1358
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
1359
|
+
"gvkKind": "ValidatingWebhookConfiguration"
|
|
1360
|
+
},
|
|
1361
|
+
"ValidatingWebhookConfigurationList": {
|
|
1362
|
+
"resourceType": "K8s::Admissionregistration::ValidatingWebhookConfigurationList",
|
|
1363
|
+
"kind": "resource",
|
|
1364
|
+
"lexicon": "k8s",
|
|
1365
|
+
"apiVersion": "admissionregistration.k8s.io/v1",
|
|
1366
|
+
"gvkKind": "ValidatingWebhookConfigurationList"
|
|
1367
|
+
},
|
|
1368
|
+
"Volume": {
|
|
1369
|
+
"resourceType": "K8s::Core::Volume",
|
|
1370
|
+
"kind": "property",
|
|
1371
|
+
"lexicon": "k8s"
|
|
1372
|
+
},
|
|
1373
|
+
"VolumeAttachment": {
|
|
1374
|
+
"resourceType": "K8s::Storage::VolumeAttachment",
|
|
1375
|
+
"kind": "resource",
|
|
1376
|
+
"lexicon": "k8s",
|
|
1377
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
1378
|
+
"gvkKind": "VolumeAttachment"
|
|
1379
|
+
},
|
|
1380
|
+
"VolumeAttachmentList": {
|
|
1381
|
+
"resourceType": "K8s::Storage::VolumeAttachmentList",
|
|
1382
|
+
"kind": "resource",
|
|
1383
|
+
"lexicon": "k8s",
|
|
1384
|
+
"apiVersion": "storage.k8s.io/v1",
|
|
1385
|
+
"gvkKind": "VolumeAttachmentList"
|
|
1386
|
+
},
|
|
1387
|
+
"VolumeAttributesClass": {
|
|
1388
|
+
"resourceType": "K8s::Storage::VolumeAttributesClass",
|
|
1389
|
+
"kind": "resource",
|
|
1390
|
+
"lexicon": "k8s",
|
|
1391
|
+
"apiVersion": "storage.k8s.io/v1beta1",
|
|
1392
|
+
"gvkKind": "VolumeAttributesClass"
|
|
1393
|
+
},
|
|
1394
|
+
"VolumeAttributesClassList": {
|
|
1395
|
+
"resourceType": "K8s::Storage::VolumeAttributesClassList",
|
|
1396
|
+
"kind": "resource",
|
|
1397
|
+
"lexicon": "k8s",
|
|
1398
|
+
"apiVersion": "storage.k8s.io/v1beta1",
|
|
1399
|
+
"gvkKind": "VolumeAttributesClassList"
|
|
1400
|
+
},
|
|
1401
|
+
"VolumeMount": {
|
|
1402
|
+
"resourceType": "K8s::Core::VolumeMount",
|
|
1403
|
+
"kind": "property",
|
|
1404
|
+
"lexicon": "k8s"
|
|
1405
|
+
},
|
|
1406
|
+
"WatchEvent": {
|
|
1407
|
+
"resourceType": "K8s::Core::WatchEvent",
|
|
1408
|
+
"kind": "resource",
|
|
1409
|
+
"lexicon": "k8s",
|
|
1410
|
+
"apiVersion": "v1",
|
|
1411
|
+
"gvkKind": "WatchEvent"
|
|
1412
|
+
}
|
|
1413
|
+
}
|