timonel 2.3.0 → 2.4.0
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/CHANGELOG.md +6 -0
- package/README.md +5 -1
- package/SECURITY.md +3 -3
- package/dist/index.d.ts +6 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/lib/{HelmChartWriter.d.ts → helmChartWriter.d.ts} +1 -1
- package/dist/lib/{HelmChartWriter.d.ts.map → helmChartWriter.d.ts.map} +1 -1
- package/dist/lib/{HelmChartWriter.js → helmChartWriter.js} +1 -1
- package/dist/lib/{HelmChartWriter.js.map → helmChartWriter.js.map} +1 -1
- package/dist/lib/resources/autoscaling/autoscalingResources.d.ts +26 -0
- package/dist/lib/resources/autoscaling/autoscalingResources.d.ts.map +1 -0
- package/dist/lib/resources/autoscaling/autoscalingResources.js +35 -0
- package/dist/lib/resources/autoscaling/autoscalingResources.js.map +1 -0
- package/dist/lib/resources/baseResourceProvider.d.ts +47 -0
- package/dist/lib/resources/baseResourceProvider.d.ts.map +1 -0
- package/dist/lib/resources/baseResourceProvider.js +83 -0
- package/dist/lib/resources/baseResourceProvider.js.map +1 -0
- package/dist/lib/resources/cloud/aws/awsResources.d.ts +165 -0
- package/dist/lib/resources/cloud/aws/awsResources.d.ts.map +1 -0
- package/dist/lib/resources/cloud/aws/awsResources.js +187 -0
- package/dist/lib/resources/cloud/aws/awsResources.js.map +1 -0
- package/dist/lib/resources/cloud/azure/azureResources.d.ts +169 -0
- package/dist/lib/resources/cloud/azure/azureResources.d.ts.map +1 -0
- package/dist/lib/resources/cloud/azure/azureResources.js +218 -0
- package/dist/lib/resources/cloud/azure/azureResources.js.map +1 -0
- package/dist/lib/resources/cloud/gcp/gcpResources.d.ts +133 -0
- package/dist/lib/resources/cloud/gcp/gcpResources.d.ts.map +1 -0
- package/dist/lib/resources/cloud/gcp/gcpResources.js +162 -0
- package/dist/lib/resources/cloud/gcp/gcpResources.js.map +1 -0
- package/dist/lib/resources/core/coreResources.d.ts +584 -0
- package/dist/lib/resources/core/coreResources.d.ts.map +1 -0
- package/dist/lib/resources/core/coreResources.js +796 -0
- package/dist/lib/resources/core/coreResources.js.map +1 -0
- package/dist/lib/resources/core/storageResources.d.ts +133 -0
- package/dist/lib/resources/core/storageResources.d.ts.map +1 -0
- package/dist/lib/resources/core/storageResources.js +120 -0
- package/dist/lib/resources/core/storageResources.js.map +1 -0
- package/dist/lib/resources/validation/validationResources.d.ts +26 -0
- package/dist/lib/resources/validation/validationResources.d.ts.map +1 -0
- package/dist/lib/resources/validation/validationResources.js +33 -0
- package/dist/lib/resources/validation/validationResources.js.map +1 -0
- package/dist/lib/rutter.d.ts +554 -0
- package/dist/lib/rutter.d.ts.map +1 -0
- package/dist/lib/rutter.js +665 -0
- package/dist/lib/rutter.js.map +1 -0
- package/dist/lib/security.d.ts +21 -0
- package/dist/lib/security.d.ts.map +1 -1
- package/dist/lib/security.js +21 -0
- package/dist/lib/security.js.map +1 -1
- package/dist/lib/umbrella.d.ts +22 -2
- package/dist/lib/umbrella.d.ts.map +1 -1
- package/dist/lib/umbrella.js +21 -1
- package/dist/lib/umbrella.js.map +1 -1
- package/dist/lib/umbrellaRutter.d.ts +97 -0
- package/dist/lib/umbrellaRutter.d.ts.map +1 -0
- package/dist/lib/{UmbrellaRutter.js → umbrellaRutter.js} +44 -1
- package/dist/lib/umbrellaRutter.js.map +1 -0
- package/package.json +2 -1
- package/dist/lib/Rutter.d.ts +0 -2688
- package/dist/lib/Rutter.d.ts.map +0 -1
- package/dist/lib/Rutter.js +0 -2863
- package/dist/lib/Rutter.js.map +0 -1
- package/dist/lib/UmbrellaRutter.d.ts +0 -34
- package/dist/lib/UmbrellaRutter.d.ts.map +0 -1
- package/dist/lib/UmbrellaRutter.js.map +0 -1
|
@@ -0,0 +1,584 @@
|
|
|
1
|
+
import { ApiObject } from 'cdk8s';
|
|
2
|
+
import { BaseResourceProvider } from '../baseResourceProvider.js';
|
|
3
|
+
/**
|
|
4
|
+
* Core Kubernetes resources provider
|
|
5
|
+
* Handles fundamental Kubernetes resources like Deployments, Services, ConfigMaps, etc.
|
|
6
|
+
*
|
|
7
|
+
* @since 2.4.0
|
|
8
|
+
*/
|
|
9
|
+
export declare class CoreResources extends BaseResourceProvider {
|
|
10
|
+
private static readonly APPS_API_VERSION;
|
|
11
|
+
private static readonly CORE_API_VERSION;
|
|
12
|
+
private static readonly RBAC_API_VERSION;
|
|
13
|
+
private static readonly LABEL_NAME;
|
|
14
|
+
private static readonly HELPER_NAME;
|
|
15
|
+
/**
|
|
16
|
+
* Creates a Deployment resource
|
|
17
|
+
* @param spec - Deployment specification
|
|
18
|
+
* @returns Created Deployment ApiObject
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```typescript
|
|
22
|
+
* coreResources.addDeployment({
|
|
23
|
+
* name: 'web-app',
|
|
24
|
+
* image: 'nginx:1.21',
|
|
25
|
+
* replicas: 3,
|
|
26
|
+
* containerPort: 80
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* @since 2.4.0
|
|
31
|
+
*/
|
|
32
|
+
addDeployment(spec: DeploymentSpec): ApiObject;
|
|
33
|
+
/**
|
|
34
|
+
* Creates a Service resource
|
|
35
|
+
* @param spec - Service specification
|
|
36
|
+
* @returns Created Service ApiObject
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* ```typescript
|
|
40
|
+
* coreResources.addService({
|
|
41
|
+
* name: 'web-service',
|
|
42
|
+
* port: 80,
|
|
43
|
+
* targetPort: 8080,
|
|
44
|
+
* type: 'ClusterIP'
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @since 2.4.0
|
|
49
|
+
*/
|
|
50
|
+
addService(spec: ServiceSpec): ApiObject;
|
|
51
|
+
/**
|
|
52
|
+
* Creates a ConfigMap resource
|
|
53
|
+
* @param spec - ConfigMap specification
|
|
54
|
+
* @returns Created ConfigMap ApiObject
|
|
55
|
+
*
|
|
56
|
+
* @example
|
|
57
|
+
* ```typescript
|
|
58
|
+
* coreResources.addConfigMap({
|
|
59
|
+
* name: 'app-config',
|
|
60
|
+
* data: {
|
|
61
|
+
* 'config.yaml': 'key: value',
|
|
62
|
+
* 'app.properties': 'debug=true'
|
|
63
|
+
* }
|
|
64
|
+
* });
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @since 2.4.0
|
|
68
|
+
*/
|
|
69
|
+
addConfigMap(spec: ConfigMapSpec): ApiObject;
|
|
70
|
+
/**
|
|
71
|
+
* Creates a Secret resource
|
|
72
|
+
* @param spec - Secret specification
|
|
73
|
+
* @returns Created Secret ApiObject
|
|
74
|
+
*
|
|
75
|
+
* @example
|
|
76
|
+
* ```typescript
|
|
77
|
+
* coreResources.addSecret({
|
|
78
|
+
* name: 'app-secrets',
|
|
79
|
+
* type: 'Opaque',
|
|
80
|
+
* data: {
|
|
81
|
+
* username: 'YWRtaW4=',
|
|
82
|
+
* password: 'MWYyZDFlMmU2N2Rm'
|
|
83
|
+
* }
|
|
84
|
+
* });
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* @since 2.4.0
|
|
88
|
+
*/
|
|
89
|
+
addSecret(spec: SecretSpec): ApiObject;
|
|
90
|
+
/**
|
|
91
|
+
* Creates a ServiceAccount resource
|
|
92
|
+
* @param spec - ServiceAccount specification
|
|
93
|
+
* @returns Created ServiceAccount ApiObject
|
|
94
|
+
*
|
|
95
|
+
* @example
|
|
96
|
+
* ```typescript
|
|
97
|
+
* coreResources.addServiceAccount({
|
|
98
|
+
* name: 'app-service-account',
|
|
99
|
+
* automountServiceAccountToken: false
|
|
100
|
+
* });
|
|
101
|
+
* ```
|
|
102
|
+
*
|
|
103
|
+
* @since 2.4.0
|
|
104
|
+
*/
|
|
105
|
+
addServiceAccount(spec: ServiceAccountSpec): ApiObject;
|
|
106
|
+
/**
|
|
107
|
+
* Creates a DaemonSet resource
|
|
108
|
+
* @param spec - DaemonSet specification
|
|
109
|
+
* @returns Created DaemonSet ApiObject
|
|
110
|
+
*
|
|
111
|
+
* @example
|
|
112
|
+
* ```typescript
|
|
113
|
+
* coreResources.addDaemonSet({
|
|
114
|
+
* name: 'log-collector',
|
|
115
|
+
* image: 'fluentd:v1.14',
|
|
116
|
+
* containerPort: 24224,
|
|
117
|
+
* hostNetwork: true
|
|
118
|
+
* });
|
|
119
|
+
* ```
|
|
120
|
+
*
|
|
121
|
+
* @since 2.4.0
|
|
122
|
+
*/
|
|
123
|
+
addDaemonSet(spec: DaemonSetSpec): ApiObject;
|
|
124
|
+
/**
|
|
125
|
+
* Builds DaemonSet specification object
|
|
126
|
+
* @private
|
|
127
|
+
*/
|
|
128
|
+
private buildDaemonSetSpec;
|
|
129
|
+
/**
|
|
130
|
+
* Builds container specification for DaemonSet
|
|
131
|
+
* @private
|
|
132
|
+
*/
|
|
133
|
+
private buildDaemonSetContainers;
|
|
134
|
+
/**
|
|
135
|
+
* Builds pod specification for DaemonSet
|
|
136
|
+
* @private
|
|
137
|
+
*/
|
|
138
|
+
private buildDaemonSetPodSpec;
|
|
139
|
+
/**
|
|
140
|
+
* Creates a StatefulSet resource
|
|
141
|
+
* @param spec - StatefulSet specification
|
|
142
|
+
* @returns Created StatefulSet ApiObject
|
|
143
|
+
*
|
|
144
|
+
* @example
|
|
145
|
+
* ```typescript
|
|
146
|
+
* coreResources.addStatefulSet({
|
|
147
|
+
* name: 'database',
|
|
148
|
+
* image: 'postgres:13',
|
|
149
|
+
* replicas: 3,
|
|
150
|
+
* containerPort: 5432,
|
|
151
|
+
* serviceName: 'database-headless'
|
|
152
|
+
* });
|
|
153
|
+
* ```
|
|
154
|
+
*
|
|
155
|
+
* @since 2.4.0
|
|
156
|
+
*/
|
|
157
|
+
addStatefulSet(spec: StatefulSetSpec): ApiObject;
|
|
158
|
+
/**
|
|
159
|
+
* Builds StatefulSet specification object
|
|
160
|
+
* @private
|
|
161
|
+
*/
|
|
162
|
+
private buildStatefulSetSpec;
|
|
163
|
+
/**
|
|
164
|
+
* Builds container specification for StatefulSet
|
|
165
|
+
* @private
|
|
166
|
+
*/
|
|
167
|
+
private buildStatefulSetContainers;
|
|
168
|
+
/**
|
|
169
|
+
* Builds pod specification for StatefulSet
|
|
170
|
+
* @private
|
|
171
|
+
*/
|
|
172
|
+
private buildStatefulSetPodSpec;
|
|
173
|
+
/**
|
|
174
|
+
* Creates a Role resource for RBAC
|
|
175
|
+
* @param spec - Role specification
|
|
176
|
+
* @returns Created Role ApiObject
|
|
177
|
+
*
|
|
178
|
+
* @example
|
|
179
|
+
* ```typescript
|
|
180
|
+
* coreResources.addRole({
|
|
181
|
+
* name: 'pod-reader',
|
|
182
|
+
* rules: [
|
|
183
|
+
* {
|
|
184
|
+
* apiGroups: [''],
|
|
185
|
+
* resources: ['pods'],
|
|
186
|
+
* verbs: ['get', 'list', 'watch']
|
|
187
|
+
* }
|
|
188
|
+
* ]
|
|
189
|
+
* });
|
|
190
|
+
* ```
|
|
191
|
+
*
|
|
192
|
+
* @since 2.4.0
|
|
193
|
+
*/
|
|
194
|
+
addRole(spec: RoleSpec): ApiObject;
|
|
195
|
+
/**
|
|
196
|
+
* Creates a ClusterRole resource for cluster-wide RBAC
|
|
197
|
+
* @param spec - ClusterRole specification
|
|
198
|
+
* @returns Created ClusterRole ApiObject
|
|
199
|
+
*
|
|
200
|
+
* @example
|
|
201
|
+
* ```typescript
|
|
202
|
+
* coreResources.addClusterRole({
|
|
203
|
+
* name: 'cluster-admin',
|
|
204
|
+
* rules: [
|
|
205
|
+
* {
|
|
206
|
+
* apiGroups: ['*'],
|
|
207
|
+
* resources: ['*'],
|
|
208
|
+
* verbs: ['*']
|
|
209
|
+
* }
|
|
210
|
+
* ]
|
|
211
|
+
* });
|
|
212
|
+
* ```
|
|
213
|
+
*
|
|
214
|
+
* @since 2.4.0
|
|
215
|
+
*/
|
|
216
|
+
addClusterRole(spec: ClusterRoleSpec): ApiObject;
|
|
217
|
+
/**
|
|
218
|
+
* Creates a RoleBinding resource for RBAC
|
|
219
|
+
* @param spec - RoleBinding specification
|
|
220
|
+
* @returns Created RoleBinding ApiObject
|
|
221
|
+
*
|
|
222
|
+
* @example
|
|
223
|
+
* ```typescript
|
|
224
|
+
* coreResources.addRoleBinding({
|
|
225
|
+
* name: 'pod-reader-binding',
|
|
226
|
+
* roleRef: {
|
|
227
|
+
* kind: 'Role',
|
|
228
|
+
* name: 'pod-reader',
|
|
229
|
+
* apiGroup: 'rbac.authorization.k8s.io'
|
|
230
|
+
* },
|
|
231
|
+
* subjects: [
|
|
232
|
+
* {
|
|
233
|
+
* kind: 'ServiceAccount',
|
|
234
|
+
* name: 'my-service-account',
|
|
235
|
+
* namespace: 'default'
|
|
236
|
+
* }
|
|
237
|
+
* ]
|
|
238
|
+
* });
|
|
239
|
+
* ```
|
|
240
|
+
*
|
|
241
|
+
* @since 2.4.0
|
|
242
|
+
*/
|
|
243
|
+
addRoleBinding(spec: RoleBindingSpec): ApiObject;
|
|
244
|
+
/**
|
|
245
|
+
* Creates a ClusterRoleBinding resource for cluster-wide RBAC
|
|
246
|
+
* @param spec - ClusterRoleBinding specification
|
|
247
|
+
* @returns Created ClusterRoleBinding ApiObject
|
|
248
|
+
*
|
|
249
|
+
* @example
|
|
250
|
+
* ```typescript
|
|
251
|
+
* coreResources.addClusterRoleBinding({
|
|
252
|
+
* name: 'cluster-admin-binding',
|
|
253
|
+
* roleRef: {
|
|
254
|
+
* kind: 'ClusterRole',
|
|
255
|
+
* name: 'cluster-admin',
|
|
256
|
+
* apiGroup: 'rbac.authorization.k8s.io'
|
|
257
|
+
* },
|
|
258
|
+
* subjects: [
|
|
259
|
+
* {
|
|
260
|
+
* kind: 'ServiceAccount',
|
|
261
|
+
* name: 'admin-user',
|
|
262
|
+
* namespace: 'kube-system'
|
|
263
|
+
* }
|
|
264
|
+
* ]
|
|
265
|
+
* });
|
|
266
|
+
* ```
|
|
267
|
+
*
|
|
268
|
+
* @since 2.4.0
|
|
269
|
+
*/
|
|
270
|
+
addClusterRoleBinding(spec: ClusterRoleBindingSpec): ApiObject;
|
|
271
|
+
/**
|
|
272
|
+
* Creates a Job resource for batch workloads
|
|
273
|
+
* @param spec - Job specification
|
|
274
|
+
* @returns Created Job ApiObject
|
|
275
|
+
*
|
|
276
|
+
* @example
|
|
277
|
+
* ```typescript
|
|
278
|
+
* coreResources.addJob({
|
|
279
|
+
* name: 'data-processor',
|
|
280
|
+
* image: 'busybox:1.35',
|
|
281
|
+
* command: ['sh', '-c', 'echo "Processing data..." && sleep 30'],
|
|
282
|
+
* completions: 1,
|
|
283
|
+
* parallelism: 1
|
|
284
|
+
* });
|
|
285
|
+
* ```
|
|
286
|
+
*
|
|
287
|
+
* @since 2.4.0
|
|
288
|
+
*/
|
|
289
|
+
addJob(spec: JobSpec): ApiObject;
|
|
290
|
+
/**
|
|
291
|
+
* Builds Job specification object
|
|
292
|
+
* @private
|
|
293
|
+
*/
|
|
294
|
+
private buildJobSpec;
|
|
295
|
+
/**
|
|
296
|
+
* Builds container specification for Job
|
|
297
|
+
* @private
|
|
298
|
+
*/
|
|
299
|
+
private buildJobContainers;
|
|
300
|
+
/**
|
|
301
|
+
* Builds pod specification for Job
|
|
302
|
+
* @private
|
|
303
|
+
*/
|
|
304
|
+
private buildJobPodSpec;
|
|
305
|
+
}
|
|
306
|
+
export interface DeploymentSpec {
|
|
307
|
+
name: string;
|
|
308
|
+
image: string;
|
|
309
|
+
replicas?: number;
|
|
310
|
+
containerPort?: number;
|
|
311
|
+
env?: Array<{
|
|
312
|
+
name: string;
|
|
313
|
+
value?: string;
|
|
314
|
+
valueFrom?: unknown;
|
|
315
|
+
}>;
|
|
316
|
+
resources?: {
|
|
317
|
+
requests?: {
|
|
318
|
+
cpu?: string;
|
|
319
|
+
memory?: string;
|
|
320
|
+
};
|
|
321
|
+
limits?: {
|
|
322
|
+
cpu?: string;
|
|
323
|
+
memory?: string;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
volumeMounts?: Array<{
|
|
327
|
+
name: string;
|
|
328
|
+
mountPath: string;
|
|
329
|
+
readOnly?: boolean;
|
|
330
|
+
}>;
|
|
331
|
+
volumes?: Array<unknown>;
|
|
332
|
+
serviceAccountName?: string;
|
|
333
|
+
securityContext?: unknown;
|
|
334
|
+
nodeSelector?: Record<string, string>;
|
|
335
|
+
tolerations?: Array<unknown>;
|
|
336
|
+
affinity?: unknown;
|
|
337
|
+
matchLabels?: Record<string, string>;
|
|
338
|
+
labels?: Record<string, string>;
|
|
339
|
+
annotations?: Record<string, string>;
|
|
340
|
+
}
|
|
341
|
+
export interface DaemonSetSpec {
|
|
342
|
+
name: string;
|
|
343
|
+
image: string;
|
|
344
|
+
containerPort?: number;
|
|
345
|
+
env?: Array<{
|
|
346
|
+
name: string;
|
|
347
|
+
value?: string;
|
|
348
|
+
valueFrom?: unknown;
|
|
349
|
+
}>;
|
|
350
|
+
resources?: {
|
|
351
|
+
requests?: {
|
|
352
|
+
cpu?: string;
|
|
353
|
+
memory?: string;
|
|
354
|
+
};
|
|
355
|
+
limits?: {
|
|
356
|
+
cpu?: string;
|
|
357
|
+
memory?: string;
|
|
358
|
+
};
|
|
359
|
+
};
|
|
360
|
+
volumeMounts?: Array<{
|
|
361
|
+
name: string;
|
|
362
|
+
mountPath: string;
|
|
363
|
+
readOnly?: boolean;
|
|
364
|
+
}>;
|
|
365
|
+
volumes?: Array<unknown>;
|
|
366
|
+
serviceAccountName?: string;
|
|
367
|
+
securityContext?: unknown;
|
|
368
|
+
nodeSelector?: Record<string, string>;
|
|
369
|
+
tolerations?: Array<unknown>;
|
|
370
|
+
affinity?: unknown;
|
|
371
|
+
matchLabels?: Record<string, string>;
|
|
372
|
+
labels?: Record<string, string>;
|
|
373
|
+
annotations?: Record<string, string>;
|
|
374
|
+
hostNetwork?: boolean;
|
|
375
|
+
hostPID?: boolean;
|
|
376
|
+
dnsPolicy?: string;
|
|
377
|
+
priorityClassName?: string;
|
|
378
|
+
updateStrategy?: {
|
|
379
|
+
type?: 'RollingUpdate' | 'OnDelete';
|
|
380
|
+
rollingUpdate?: {
|
|
381
|
+
maxUnavailable?: number | string;
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
}
|
|
385
|
+
export interface StatefulSetSpec {
|
|
386
|
+
name: string;
|
|
387
|
+
image: string;
|
|
388
|
+
replicas?: number | string;
|
|
389
|
+
serviceName: string;
|
|
390
|
+
containerPort?: number;
|
|
391
|
+
env?: Array<{
|
|
392
|
+
name: string;
|
|
393
|
+
value?: string;
|
|
394
|
+
valueFrom?: unknown;
|
|
395
|
+
}>;
|
|
396
|
+
resources?: {
|
|
397
|
+
requests?: {
|
|
398
|
+
cpu?: string;
|
|
399
|
+
memory?: string;
|
|
400
|
+
};
|
|
401
|
+
limits?: {
|
|
402
|
+
cpu?: string;
|
|
403
|
+
memory?: string;
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
volumeMounts?: Array<{
|
|
407
|
+
name: string;
|
|
408
|
+
mountPath: string;
|
|
409
|
+
readOnly?: boolean;
|
|
410
|
+
}>;
|
|
411
|
+
volumes?: Array<unknown>;
|
|
412
|
+
volumeClaimTemplates?: Array<unknown>;
|
|
413
|
+
serviceAccountName?: string;
|
|
414
|
+
securityContext?: unknown;
|
|
415
|
+
nodeSelector?: Record<string, string>;
|
|
416
|
+
tolerations?: Array<unknown>;
|
|
417
|
+
affinity?: unknown;
|
|
418
|
+
matchLabels?: Record<string, string>;
|
|
419
|
+
labels?: Record<string, string>;
|
|
420
|
+
annotations?: Record<string, string>;
|
|
421
|
+
initContainers?: Array<unknown>;
|
|
422
|
+
livenessProbe?: unknown;
|
|
423
|
+
readinessProbe?: unknown;
|
|
424
|
+
terminationGracePeriodSeconds?: number;
|
|
425
|
+
updateStrategy?: {
|
|
426
|
+
type?: 'RollingUpdate' | 'OnDelete';
|
|
427
|
+
rollingUpdate?: {
|
|
428
|
+
partition?: number;
|
|
429
|
+
maxUnavailable?: number | string;
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
podManagementPolicy?: 'OrderedReady' | 'Parallel';
|
|
433
|
+
revisionHistoryLimit?: number;
|
|
434
|
+
}
|
|
435
|
+
export interface RoleSpec {
|
|
436
|
+
name: string;
|
|
437
|
+
namespace?: string;
|
|
438
|
+
rules: Array<{
|
|
439
|
+
apiGroups?: string[];
|
|
440
|
+
resources?: string[];
|
|
441
|
+
resourceNames?: string[];
|
|
442
|
+
verbs: string[];
|
|
443
|
+
nonResourceURLs?: string[];
|
|
444
|
+
}>;
|
|
445
|
+
labels?: Record<string, string>;
|
|
446
|
+
annotations?: Record<string, string>;
|
|
447
|
+
}
|
|
448
|
+
export interface ClusterRoleSpec {
|
|
449
|
+
name: string;
|
|
450
|
+
rules: Array<{
|
|
451
|
+
apiGroups?: string[];
|
|
452
|
+
resources?: string[];
|
|
453
|
+
resourceNames?: string[];
|
|
454
|
+
verbs: string[];
|
|
455
|
+
nonResourceURLs?: string[];
|
|
456
|
+
}>;
|
|
457
|
+
labels?: Record<string, string>;
|
|
458
|
+
annotations?: Record<string, string>;
|
|
459
|
+
}
|
|
460
|
+
export interface RoleBindingSpec {
|
|
461
|
+
name: string;
|
|
462
|
+
namespace?: string;
|
|
463
|
+
roleRef: {
|
|
464
|
+
kind: 'Role' | 'ClusterRole';
|
|
465
|
+
name: string;
|
|
466
|
+
apiGroup: string;
|
|
467
|
+
};
|
|
468
|
+
subjects: Array<{
|
|
469
|
+
kind: 'User' | 'Group' | 'ServiceAccount';
|
|
470
|
+
name: string;
|
|
471
|
+
namespace?: string;
|
|
472
|
+
apiGroup?: string;
|
|
473
|
+
}>;
|
|
474
|
+
labels?: Record<string, string>;
|
|
475
|
+
annotations?: Record<string, string>;
|
|
476
|
+
}
|
|
477
|
+
export interface ClusterRoleBindingSpec {
|
|
478
|
+
name: string;
|
|
479
|
+
roleRef: {
|
|
480
|
+
kind: 'Role' | 'ClusterRole';
|
|
481
|
+
name: string;
|
|
482
|
+
apiGroup: string;
|
|
483
|
+
};
|
|
484
|
+
subjects: Array<{
|
|
485
|
+
kind: 'User' | 'Group' | 'ServiceAccount';
|
|
486
|
+
name: string;
|
|
487
|
+
namespace?: string;
|
|
488
|
+
apiGroup?: string;
|
|
489
|
+
}>;
|
|
490
|
+
labels?: Record<string, string>;
|
|
491
|
+
annotations?: Record<string, string>;
|
|
492
|
+
}
|
|
493
|
+
export interface JobSpec {
|
|
494
|
+
name: string;
|
|
495
|
+
image: string;
|
|
496
|
+
command?: string[];
|
|
497
|
+
args?: string[];
|
|
498
|
+
completions?: number;
|
|
499
|
+
parallelism?: number;
|
|
500
|
+
backoffLimit?: number;
|
|
501
|
+
activeDeadlineSeconds?: number;
|
|
502
|
+
ttlSecondsAfterFinished?: number;
|
|
503
|
+
completionMode?: 'NonIndexed' | 'Indexed';
|
|
504
|
+
suspend?: boolean;
|
|
505
|
+
restartPolicy?: 'Never' | 'OnFailure';
|
|
506
|
+
env?: Array<{
|
|
507
|
+
name: string;
|
|
508
|
+
value?: string;
|
|
509
|
+
valueFrom?: unknown;
|
|
510
|
+
}>;
|
|
511
|
+
resources?: {
|
|
512
|
+
requests?: {
|
|
513
|
+
cpu?: string;
|
|
514
|
+
memory?: string;
|
|
515
|
+
};
|
|
516
|
+
limits?: {
|
|
517
|
+
cpu?: string;
|
|
518
|
+
memory?: string;
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
volumeMounts?: Array<{
|
|
522
|
+
name: string;
|
|
523
|
+
mountPath: string;
|
|
524
|
+
readOnly?: boolean;
|
|
525
|
+
}>;
|
|
526
|
+
volumes?: Array<unknown>;
|
|
527
|
+
serviceAccountName?: string;
|
|
528
|
+
securityContext?: unknown;
|
|
529
|
+
nodeSelector?: Record<string, string>;
|
|
530
|
+
tolerations?: Array<unknown>;
|
|
531
|
+
affinity?: unknown;
|
|
532
|
+
matchLabels?: Record<string, string>;
|
|
533
|
+
labels?: Record<string, string>;
|
|
534
|
+
annotations?: Record<string, string>;
|
|
535
|
+
initContainers?: Array<unknown>;
|
|
536
|
+
}
|
|
537
|
+
export interface ServiceSpec {
|
|
538
|
+
name: string;
|
|
539
|
+
port: number;
|
|
540
|
+
targetPort?: number;
|
|
541
|
+
ports?: Array<{
|
|
542
|
+
port: number;
|
|
543
|
+
targetPort?: number;
|
|
544
|
+
protocol?: string;
|
|
545
|
+
name?: string;
|
|
546
|
+
}>;
|
|
547
|
+
type?: 'ClusterIP' | 'NodePort' | 'LoadBalancer' | 'ExternalName';
|
|
548
|
+
selector?: Record<string, string>;
|
|
549
|
+
clusterIP?: string;
|
|
550
|
+
externalIPs?: string[];
|
|
551
|
+
loadBalancerIP?: string;
|
|
552
|
+
sessionAffinity?: string;
|
|
553
|
+
protocol?: string;
|
|
554
|
+
labels?: Record<string, string>;
|
|
555
|
+
annotations?: Record<string, string>;
|
|
556
|
+
}
|
|
557
|
+
export interface ConfigMapSpec {
|
|
558
|
+
name: string;
|
|
559
|
+
data?: Record<string, string>;
|
|
560
|
+
binaryData?: Record<string, string>;
|
|
561
|
+
labels?: Record<string, string>;
|
|
562
|
+
annotations?: Record<string, string>;
|
|
563
|
+
}
|
|
564
|
+
export interface SecretSpec {
|
|
565
|
+
name: string;
|
|
566
|
+
type?: string;
|
|
567
|
+
data?: Record<string, string>;
|
|
568
|
+
stringData?: Record<string, string>;
|
|
569
|
+
labels?: Record<string, string>;
|
|
570
|
+
annotations?: Record<string, string>;
|
|
571
|
+
}
|
|
572
|
+
export interface ServiceAccountSpec {
|
|
573
|
+
name: string;
|
|
574
|
+
automountServiceAccountToken?: boolean;
|
|
575
|
+
imagePullSecrets?: Array<{
|
|
576
|
+
name: string;
|
|
577
|
+
}>;
|
|
578
|
+
secrets?: Array<{
|
|
579
|
+
name: string;
|
|
580
|
+
}>;
|
|
581
|
+
labels?: Record<string, string>;
|
|
582
|
+
annotations?: Record<string, string>;
|
|
583
|
+
}
|
|
584
|
+
//# sourceMappingURL=coreResources.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"coreResources.d.ts","sourceRoot":"","sources":["../../../../src/lib/resources/core/coreResources.ts"],"names":[],"mappings":"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"}
|