kustodian 1.3.0 → 1.5.2
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/cli/bin.js +0 -2
- package/dist/cli/bin.js.map +1 -1
- package/dist/cli/commands/apply.d.ts.map +1 -1
- package/dist/cli/commands/apply.js +3 -84
- package/dist/cli/commands/apply.js.map +1 -1
- package/dist/cli/index.d.ts +0 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +0 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/utils/cluster-secrets.d.ts +1 -15
- package/dist/cli/utils/cluster-secrets.d.ts.map +1 -1
- package/dist/cli/utils/cluster-secrets.js +0 -34
- package/dist/cli/utils/cluster-secrets.js.map +1 -1
- package/dist/generator/index.d.ts +0 -1
- package/dist/generator/index.d.ts.map +1 -1
- package/dist/generator/index.js +0 -1
- package/dist/generator/index.js.map +1 -1
- package/dist/generator/substitution.d.ts +0 -1
- package/dist/generator/substitution.d.ts.map +1 -1
- package/dist/generator/substitution.js +0 -1
- package/dist/generator/substitution.js.map +1 -1
- package/dist/schema/cluster.d.ts +0 -1374
- package/dist/schema/cluster.d.ts.map +1 -1
- package/dist/schema/cluster.js +0 -41
- package/dist/schema/cluster.js.map +1 -1
- package/dist/schema/common.d.ts +5 -167
- package/dist/schema/common.d.ts.map +1 -1
- package/dist/schema/common.js +5 -70
- package/dist/schema/common.js.map +1 -1
- package/dist/schema/sources.d.ts +8 -8
- package/dist/schema/template.d.ts +18 -381
- package/dist/schema/template.d.ts.map +1 -1
- package/package.json +1 -2
- package/dist/cli/commands/preview.d.ts +0 -5
- package/dist/cli/commands/preview.d.ts.map +0 -1
- package/dist/cli/commands/preview.js +0 -275
- package/dist/cli/commands/preview.js.map +0 -1
- package/dist/generator/external-substitutions.d.ts +0 -21
- package/dist/generator/external-substitutions.d.ts.map +0 -1
- package/dist/generator/external-substitutions.js +0 -49
- package/dist/generator/external-substitutions.js.map +0 -1
package/dist/schema/cluster.d.ts
CHANGED
|
@@ -219,36 +219,6 @@ export declare const github_config_schema: z.ZodObject<{
|
|
|
219
219
|
branch?: string | undefined;
|
|
220
220
|
}>;
|
|
221
221
|
export type GithubConfigType = z.infer<typeof github_config_schema>;
|
|
222
|
-
/**
|
|
223
|
-
* Bootstrap credential configuration for secret providers.
|
|
224
|
-
* Allows obtaining credentials from another secret provider.
|
|
225
|
-
*/
|
|
226
|
-
export declare const bootstrap_credential_schema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
227
|
-
type: z.ZodLiteral<"1password">;
|
|
228
|
-
ref: z.ZodString;
|
|
229
|
-
}, "strip", z.ZodTypeAny, {
|
|
230
|
-
type: "1password";
|
|
231
|
-
ref: string;
|
|
232
|
-
}, {
|
|
233
|
-
type: "1password";
|
|
234
|
-
ref: string;
|
|
235
|
-
}>, z.ZodObject<{
|
|
236
|
-
type: z.ZodLiteral<"doppler">;
|
|
237
|
-
project: z.ZodString;
|
|
238
|
-
config: z.ZodString;
|
|
239
|
-
secret: z.ZodString;
|
|
240
|
-
}, "strip", z.ZodTypeAny, {
|
|
241
|
-
type: "doppler";
|
|
242
|
-
secret: string;
|
|
243
|
-
project: string;
|
|
244
|
-
config: string;
|
|
245
|
-
}, {
|
|
246
|
-
type: "doppler";
|
|
247
|
-
secret: string;
|
|
248
|
-
project: string;
|
|
249
|
-
config: string;
|
|
250
|
-
}>]>;
|
|
251
|
-
export type BootstrapCredentialType = z.infer<typeof bootstrap_credential_schema>;
|
|
252
222
|
/**
|
|
253
223
|
* Cluster secret configuration for bootstrapping secrets into the cluster.
|
|
254
224
|
* Used by external-secrets operator to access secret providers.
|
|
@@ -273,438 +243,6 @@ export declare const cluster_secret_config_schema: z.ZodObject<{
|
|
|
273
243
|
annotations?: Record<string, string> | undefined;
|
|
274
244
|
}>;
|
|
275
245
|
export type ClusterSecretConfigType = z.infer<typeof cluster_secret_config_schema>;
|
|
276
|
-
/**
|
|
277
|
-
* Doppler secret provider configuration at cluster level.
|
|
278
|
-
*/
|
|
279
|
-
export declare const doppler_config_schema: z.ZodObject<{
|
|
280
|
-
project: z.ZodOptional<z.ZodString>;
|
|
281
|
-
config: z.ZodOptional<z.ZodString>;
|
|
282
|
-
service_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
283
|
-
type: z.ZodLiteral<"1password">;
|
|
284
|
-
ref: z.ZodString;
|
|
285
|
-
}, "strip", z.ZodTypeAny, {
|
|
286
|
-
type: "1password";
|
|
287
|
-
ref: string;
|
|
288
|
-
}, {
|
|
289
|
-
type: "1password";
|
|
290
|
-
ref: string;
|
|
291
|
-
}>, z.ZodObject<{
|
|
292
|
-
type: z.ZodLiteral<"doppler">;
|
|
293
|
-
project: z.ZodString;
|
|
294
|
-
config: z.ZodString;
|
|
295
|
-
secret: z.ZodString;
|
|
296
|
-
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
type: "doppler";
|
|
298
|
-
secret: string;
|
|
299
|
-
project: string;
|
|
300
|
-
config: string;
|
|
301
|
-
}, {
|
|
302
|
-
type: "doppler";
|
|
303
|
-
secret: string;
|
|
304
|
-
project: string;
|
|
305
|
-
config: string;
|
|
306
|
-
}>]>>;
|
|
307
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
308
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
309
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
310
|
-
name: z.ZodOptional<z.ZodString>;
|
|
311
|
-
key: z.ZodOptional<z.ZodString>;
|
|
312
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
313
|
-
}, "strip", z.ZodTypeAny, {
|
|
314
|
-
enabled: boolean;
|
|
315
|
-
name?: string | undefined;
|
|
316
|
-
namespace?: string | undefined;
|
|
317
|
-
key?: string | undefined;
|
|
318
|
-
annotations?: Record<string, string> | undefined;
|
|
319
|
-
}, {
|
|
320
|
-
name?: string | undefined;
|
|
321
|
-
namespace?: string | undefined;
|
|
322
|
-
key?: string | undefined;
|
|
323
|
-
enabled?: boolean | undefined;
|
|
324
|
-
annotations?: Record<string, string> | undefined;
|
|
325
|
-
}>>;
|
|
326
|
-
}, "strip", z.ZodTypeAny, {
|
|
327
|
-
project?: string | undefined;
|
|
328
|
-
config?: string | undefined;
|
|
329
|
-
service_token?: {
|
|
330
|
-
type: "1password";
|
|
331
|
-
ref: string;
|
|
332
|
-
} | {
|
|
333
|
-
type: "doppler";
|
|
334
|
-
secret: string;
|
|
335
|
-
project: string;
|
|
336
|
-
config: string;
|
|
337
|
-
} | undefined;
|
|
338
|
-
cluster_secret?: {
|
|
339
|
-
enabled: boolean;
|
|
340
|
-
name?: string | undefined;
|
|
341
|
-
namespace?: string | undefined;
|
|
342
|
-
key?: string | undefined;
|
|
343
|
-
annotations?: Record<string, string> | undefined;
|
|
344
|
-
} | undefined;
|
|
345
|
-
}, {
|
|
346
|
-
project?: string | undefined;
|
|
347
|
-
config?: string | undefined;
|
|
348
|
-
service_token?: {
|
|
349
|
-
type: "1password";
|
|
350
|
-
ref: string;
|
|
351
|
-
} | {
|
|
352
|
-
type: "doppler";
|
|
353
|
-
secret: string;
|
|
354
|
-
project: string;
|
|
355
|
-
config: string;
|
|
356
|
-
} | undefined;
|
|
357
|
-
cluster_secret?: {
|
|
358
|
-
name?: string | undefined;
|
|
359
|
-
namespace?: string | undefined;
|
|
360
|
-
key?: string | undefined;
|
|
361
|
-
enabled?: boolean | undefined;
|
|
362
|
-
annotations?: Record<string, string> | undefined;
|
|
363
|
-
} | undefined;
|
|
364
|
-
}>;
|
|
365
|
-
export type DopplerConfigType = z.infer<typeof doppler_config_schema>;
|
|
366
|
-
/**
|
|
367
|
-
* 1Password secret provider configuration at cluster level.
|
|
368
|
-
*/
|
|
369
|
-
export declare const onepassword_config_schema: z.ZodObject<{
|
|
370
|
-
vault: z.ZodString;
|
|
371
|
-
service_account_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
372
|
-
type: z.ZodLiteral<"1password">;
|
|
373
|
-
ref: z.ZodString;
|
|
374
|
-
}, "strip", z.ZodTypeAny, {
|
|
375
|
-
type: "1password";
|
|
376
|
-
ref: string;
|
|
377
|
-
}, {
|
|
378
|
-
type: "1password";
|
|
379
|
-
ref: string;
|
|
380
|
-
}>, z.ZodObject<{
|
|
381
|
-
type: z.ZodLiteral<"doppler">;
|
|
382
|
-
project: z.ZodString;
|
|
383
|
-
config: z.ZodString;
|
|
384
|
-
secret: z.ZodString;
|
|
385
|
-
}, "strip", z.ZodTypeAny, {
|
|
386
|
-
type: "doppler";
|
|
387
|
-
secret: string;
|
|
388
|
-
project: string;
|
|
389
|
-
config: string;
|
|
390
|
-
}, {
|
|
391
|
-
type: "doppler";
|
|
392
|
-
secret: string;
|
|
393
|
-
project: string;
|
|
394
|
-
config: string;
|
|
395
|
-
}>]>>;
|
|
396
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
397
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
398
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
399
|
-
name: z.ZodOptional<z.ZodString>;
|
|
400
|
-
key: z.ZodOptional<z.ZodString>;
|
|
401
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
402
|
-
}, "strip", z.ZodTypeAny, {
|
|
403
|
-
enabled: boolean;
|
|
404
|
-
name?: string | undefined;
|
|
405
|
-
namespace?: string | undefined;
|
|
406
|
-
key?: string | undefined;
|
|
407
|
-
annotations?: Record<string, string> | undefined;
|
|
408
|
-
}, {
|
|
409
|
-
name?: string | undefined;
|
|
410
|
-
namespace?: string | undefined;
|
|
411
|
-
key?: string | undefined;
|
|
412
|
-
enabled?: boolean | undefined;
|
|
413
|
-
annotations?: Record<string, string> | undefined;
|
|
414
|
-
}>>;
|
|
415
|
-
}, "strip", z.ZodTypeAny, {
|
|
416
|
-
vault: string;
|
|
417
|
-
cluster_secret?: {
|
|
418
|
-
enabled: boolean;
|
|
419
|
-
name?: string | undefined;
|
|
420
|
-
namespace?: string | undefined;
|
|
421
|
-
key?: string | undefined;
|
|
422
|
-
annotations?: Record<string, string> | undefined;
|
|
423
|
-
} | undefined;
|
|
424
|
-
service_account_token?: {
|
|
425
|
-
type: "1password";
|
|
426
|
-
ref: string;
|
|
427
|
-
} | {
|
|
428
|
-
type: "doppler";
|
|
429
|
-
secret: string;
|
|
430
|
-
project: string;
|
|
431
|
-
config: string;
|
|
432
|
-
} | undefined;
|
|
433
|
-
}, {
|
|
434
|
-
vault: string;
|
|
435
|
-
cluster_secret?: {
|
|
436
|
-
name?: string | undefined;
|
|
437
|
-
namespace?: string | undefined;
|
|
438
|
-
key?: string | undefined;
|
|
439
|
-
enabled?: boolean | undefined;
|
|
440
|
-
annotations?: Record<string, string> | undefined;
|
|
441
|
-
} | undefined;
|
|
442
|
-
service_account_token?: {
|
|
443
|
-
type: "1password";
|
|
444
|
-
ref: string;
|
|
445
|
-
} | {
|
|
446
|
-
type: "doppler";
|
|
447
|
-
secret: string;
|
|
448
|
-
project: string;
|
|
449
|
-
config: string;
|
|
450
|
-
} | undefined;
|
|
451
|
-
}>;
|
|
452
|
-
export type OnePasswordConfigType = z.infer<typeof onepassword_config_schema>;
|
|
453
|
-
/**
|
|
454
|
-
* Secret providers configuration at cluster level.
|
|
455
|
-
*/
|
|
456
|
-
export declare const secrets_config_schema: z.ZodObject<{
|
|
457
|
-
doppler: z.ZodOptional<z.ZodObject<{
|
|
458
|
-
project: z.ZodOptional<z.ZodString>;
|
|
459
|
-
config: z.ZodOptional<z.ZodString>;
|
|
460
|
-
service_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
461
|
-
type: z.ZodLiteral<"1password">;
|
|
462
|
-
ref: z.ZodString;
|
|
463
|
-
}, "strip", z.ZodTypeAny, {
|
|
464
|
-
type: "1password";
|
|
465
|
-
ref: string;
|
|
466
|
-
}, {
|
|
467
|
-
type: "1password";
|
|
468
|
-
ref: string;
|
|
469
|
-
}>, z.ZodObject<{
|
|
470
|
-
type: z.ZodLiteral<"doppler">;
|
|
471
|
-
project: z.ZodString;
|
|
472
|
-
config: z.ZodString;
|
|
473
|
-
secret: z.ZodString;
|
|
474
|
-
}, "strip", z.ZodTypeAny, {
|
|
475
|
-
type: "doppler";
|
|
476
|
-
secret: string;
|
|
477
|
-
project: string;
|
|
478
|
-
config: string;
|
|
479
|
-
}, {
|
|
480
|
-
type: "doppler";
|
|
481
|
-
secret: string;
|
|
482
|
-
project: string;
|
|
483
|
-
config: string;
|
|
484
|
-
}>]>>;
|
|
485
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
486
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
487
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
488
|
-
name: z.ZodOptional<z.ZodString>;
|
|
489
|
-
key: z.ZodOptional<z.ZodString>;
|
|
490
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
491
|
-
}, "strip", z.ZodTypeAny, {
|
|
492
|
-
enabled: boolean;
|
|
493
|
-
name?: string | undefined;
|
|
494
|
-
namespace?: string | undefined;
|
|
495
|
-
key?: string | undefined;
|
|
496
|
-
annotations?: Record<string, string> | undefined;
|
|
497
|
-
}, {
|
|
498
|
-
name?: string | undefined;
|
|
499
|
-
namespace?: string | undefined;
|
|
500
|
-
key?: string | undefined;
|
|
501
|
-
enabled?: boolean | undefined;
|
|
502
|
-
annotations?: Record<string, string> | undefined;
|
|
503
|
-
}>>;
|
|
504
|
-
}, "strip", z.ZodTypeAny, {
|
|
505
|
-
project?: string | undefined;
|
|
506
|
-
config?: string | undefined;
|
|
507
|
-
service_token?: {
|
|
508
|
-
type: "1password";
|
|
509
|
-
ref: string;
|
|
510
|
-
} | {
|
|
511
|
-
type: "doppler";
|
|
512
|
-
secret: string;
|
|
513
|
-
project: string;
|
|
514
|
-
config: string;
|
|
515
|
-
} | undefined;
|
|
516
|
-
cluster_secret?: {
|
|
517
|
-
enabled: boolean;
|
|
518
|
-
name?: string | undefined;
|
|
519
|
-
namespace?: string | undefined;
|
|
520
|
-
key?: string | undefined;
|
|
521
|
-
annotations?: Record<string, string> | undefined;
|
|
522
|
-
} | undefined;
|
|
523
|
-
}, {
|
|
524
|
-
project?: string | undefined;
|
|
525
|
-
config?: string | undefined;
|
|
526
|
-
service_token?: {
|
|
527
|
-
type: "1password";
|
|
528
|
-
ref: string;
|
|
529
|
-
} | {
|
|
530
|
-
type: "doppler";
|
|
531
|
-
secret: string;
|
|
532
|
-
project: string;
|
|
533
|
-
config: string;
|
|
534
|
-
} | undefined;
|
|
535
|
-
cluster_secret?: {
|
|
536
|
-
name?: string | undefined;
|
|
537
|
-
namespace?: string | undefined;
|
|
538
|
-
key?: string | undefined;
|
|
539
|
-
enabled?: boolean | undefined;
|
|
540
|
-
annotations?: Record<string, string> | undefined;
|
|
541
|
-
} | undefined;
|
|
542
|
-
}>>;
|
|
543
|
-
onepassword: z.ZodOptional<z.ZodObject<{
|
|
544
|
-
vault: z.ZodString;
|
|
545
|
-
service_account_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
546
|
-
type: z.ZodLiteral<"1password">;
|
|
547
|
-
ref: z.ZodString;
|
|
548
|
-
}, "strip", z.ZodTypeAny, {
|
|
549
|
-
type: "1password";
|
|
550
|
-
ref: string;
|
|
551
|
-
}, {
|
|
552
|
-
type: "1password";
|
|
553
|
-
ref: string;
|
|
554
|
-
}>, z.ZodObject<{
|
|
555
|
-
type: z.ZodLiteral<"doppler">;
|
|
556
|
-
project: z.ZodString;
|
|
557
|
-
config: z.ZodString;
|
|
558
|
-
secret: z.ZodString;
|
|
559
|
-
}, "strip", z.ZodTypeAny, {
|
|
560
|
-
type: "doppler";
|
|
561
|
-
secret: string;
|
|
562
|
-
project: string;
|
|
563
|
-
config: string;
|
|
564
|
-
}, {
|
|
565
|
-
type: "doppler";
|
|
566
|
-
secret: string;
|
|
567
|
-
project: string;
|
|
568
|
-
config: string;
|
|
569
|
-
}>]>>;
|
|
570
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
571
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
572
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
573
|
-
name: z.ZodOptional<z.ZodString>;
|
|
574
|
-
key: z.ZodOptional<z.ZodString>;
|
|
575
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
576
|
-
}, "strip", z.ZodTypeAny, {
|
|
577
|
-
enabled: boolean;
|
|
578
|
-
name?: string | undefined;
|
|
579
|
-
namespace?: string | undefined;
|
|
580
|
-
key?: string | undefined;
|
|
581
|
-
annotations?: Record<string, string> | undefined;
|
|
582
|
-
}, {
|
|
583
|
-
name?: string | undefined;
|
|
584
|
-
namespace?: string | undefined;
|
|
585
|
-
key?: string | undefined;
|
|
586
|
-
enabled?: boolean | undefined;
|
|
587
|
-
annotations?: Record<string, string> | undefined;
|
|
588
|
-
}>>;
|
|
589
|
-
}, "strip", z.ZodTypeAny, {
|
|
590
|
-
vault: string;
|
|
591
|
-
cluster_secret?: {
|
|
592
|
-
enabled: boolean;
|
|
593
|
-
name?: string | undefined;
|
|
594
|
-
namespace?: string | undefined;
|
|
595
|
-
key?: string | undefined;
|
|
596
|
-
annotations?: Record<string, string> | undefined;
|
|
597
|
-
} | undefined;
|
|
598
|
-
service_account_token?: {
|
|
599
|
-
type: "1password";
|
|
600
|
-
ref: string;
|
|
601
|
-
} | {
|
|
602
|
-
type: "doppler";
|
|
603
|
-
secret: string;
|
|
604
|
-
project: string;
|
|
605
|
-
config: string;
|
|
606
|
-
} | undefined;
|
|
607
|
-
}, {
|
|
608
|
-
vault: string;
|
|
609
|
-
cluster_secret?: {
|
|
610
|
-
name?: string | undefined;
|
|
611
|
-
namespace?: string | undefined;
|
|
612
|
-
key?: string | undefined;
|
|
613
|
-
enabled?: boolean | undefined;
|
|
614
|
-
annotations?: Record<string, string> | undefined;
|
|
615
|
-
} | undefined;
|
|
616
|
-
service_account_token?: {
|
|
617
|
-
type: "1password";
|
|
618
|
-
ref: string;
|
|
619
|
-
} | {
|
|
620
|
-
type: "doppler";
|
|
621
|
-
secret: string;
|
|
622
|
-
project: string;
|
|
623
|
-
config: string;
|
|
624
|
-
} | undefined;
|
|
625
|
-
}>>;
|
|
626
|
-
}, "strip", z.ZodTypeAny, {
|
|
627
|
-
doppler?: {
|
|
628
|
-
project?: string | undefined;
|
|
629
|
-
config?: string | undefined;
|
|
630
|
-
service_token?: {
|
|
631
|
-
type: "1password";
|
|
632
|
-
ref: string;
|
|
633
|
-
} | {
|
|
634
|
-
type: "doppler";
|
|
635
|
-
secret: string;
|
|
636
|
-
project: string;
|
|
637
|
-
config: string;
|
|
638
|
-
} | undefined;
|
|
639
|
-
cluster_secret?: {
|
|
640
|
-
enabled: boolean;
|
|
641
|
-
name?: string | undefined;
|
|
642
|
-
namespace?: string | undefined;
|
|
643
|
-
key?: string | undefined;
|
|
644
|
-
annotations?: Record<string, string> | undefined;
|
|
645
|
-
} | undefined;
|
|
646
|
-
} | undefined;
|
|
647
|
-
onepassword?: {
|
|
648
|
-
vault: string;
|
|
649
|
-
cluster_secret?: {
|
|
650
|
-
enabled: boolean;
|
|
651
|
-
name?: string | undefined;
|
|
652
|
-
namespace?: string | undefined;
|
|
653
|
-
key?: string | undefined;
|
|
654
|
-
annotations?: Record<string, string> | undefined;
|
|
655
|
-
} | undefined;
|
|
656
|
-
service_account_token?: {
|
|
657
|
-
type: "1password";
|
|
658
|
-
ref: string;
|
|
659
|
-
} | {
|
|
660
|
-
type: "doppler";
|
|
661
|
-
secret: string;
|
|
662
|
-
project: string;
|
|
663
|
-
config: string;
|
|
664
|
-
} | undefined;
|
|
665
|
-
} | undefined;
|
|
666
|
-
}, {
|
|
667
|
-
doppler?: {
|
|
668
|
-
project?: string | undefined;
|
|
669
|
-
config?: string | undefined;
|
|
670
|
-
service_token?: {
|
|
671
|
-
type: "1password";
|
|
672
|
-
ref: string;
|
|
673
|
-
} | {
|
|
674
|
-
type: "doppler";
|
|
675
|
-
secret: string;
|
|
676
|
-
project: string;
|
|
677
|
-
config: string;
|
|
678
|
-
} | undefined;
|
|
679
|
-
cluster_secret?: {
|
|
680
|
-
name?: string | undefined;
|
|
681
|
-
namespace?: string | undefined;
|
|
682
|
-
key?: string | undefined;
|
|
683
|
-
enabled?: boolean | undefined;
|
|
684
|
-
annotations?: Record<string, string> | undefined;
|
|
685
|
-
} | undefined;
|
|
686
|
-
} | undefined;
|
|
687
|
-
onepassword?: {
|
|
688
|
-
vault: string;
|
|
689
|
-
cluster_secret?: {
|
|
690
|
-
name?: string | undefined;
|
|
691
|
-
namespace?: string | undefined;
|
|
692
|
-
key?: string | undefined;
|
|
693
|
-
enabled?: boolean | undefined;
|
|
694
|
-
annotations?: Record<string, string> | undefined;
|
|
695
|
-
} | undefined;
|
|
696
|
-
service_account_token?: {
|
|
697
|
-
type: "1password";
|
|
698
|
-
ref: string;
|
|
699
|
-
} | {
|
|
700
|
-
type: "doppler";
|
|
701
|
-
secret: string;
|
|
702
|
-
project: string;
|
|
703
|
-
config: string;
|
|
704
|
-
} | undefined;
|
|
705
|
-
} | undefined;
|
|
706
|
-
}>;
|
|
707
|
-
export type SecretsConfigType = z.infer<typeof secrets_config_schema>;
|
|
708
246
|
/**
|
|
709
247
|
* Flux controller settings that can be applied to individual controllers.
|
|
710
248
|
*/
|
|
@@ -1177,257 +715,6 @@ export declare const cluster_spec_schema: z.ZodEffects<z.ZodObject<{
|
|
|
1177
715
|
label_prefix?: string | undefined;
|
|
1178
716
|
}>>;
|
|
1179
717
|
nodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1180
|
-
secrets: z.ZodOptional<z.ZodObject<{
|
|
1181
|
-
doppler: z.ZodOptional<z.ZodObject<{
|
|
1182
|
-
project: z.ZodOptional<z.ZodString>;
|
|
1183
|
-
config: z.ZodOptional<z.ZodString>;
|
|
1184
|
-
service_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1185
|
-
type: z.ZodLiteral<"1password">;
|
|
1186
|
-
ref: z.ZodString;
|
|
1187
|
-
}, "strip", z.ZodTypeAny, {
|
|
1188
|
-
type: "1password";
|
|
1189
|
-
ref: string;
|
|
1190
|
-
}, {
|
|
1191
|
-
type: "1password";
|
|
1192
|
-
ref: string;
|
|
1193
|
-
}>, z.ZodObject<{
|
|
1194
|
-
type: z.ZodLiteral<"doppler">;
|
|
1195
|
-
project: z.ZodString;
|
|
1196
|
-
config: z.ZodString;
|
|
1197
|
-
secret: z.ZodString;
|
|
1198
|
-
}, "strip", z.ZodTypeAny, {
|
|
1199
|
-
type: "doppler";
|
|
1200
|
-
secret: string;
|
|
1201
|
-
project: string;
|
|
1202
|
-
config: string;
|
|
1203
|
-
}, {
|
|
1204
|
-
type: "doppler";
|
|
1205
|
-
secret: string;
|
|
1206
|
-
project: string;
|
|
1207
|
-
config: string;
|
|
1208
|
-
}>]>>;
|
|
1209
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
1210
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1211
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
1212
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1213
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1214
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1215
|
-
}, "strip", z.ZodTypeAny, {
|
|
1216
|
-
enabled: boolean;
|
|
1217
|
-
name?: string | undefined;
|
|
1218
|
-
namespace?: string | undefined;
|
|
1219
|
-
key?: string | undefined;
|
|
1220
|
-
annotations?: Record<string, string> | undefined;
|
|
1221
|
-
}, {
|
|
1222
|
-
name?: string | undefined;
|
|
1223
|
-
namespace?: string | undefined;
|
|
1224
|
-
key?: string | undefined;
|
|
1225
|
-
enabled?: boolean | undefined;
|
|
1226
|
-
annotations?: Record<string, string> | undefined;
|
|
1227
|
-
}>>;
|
|
1228
|
-
}, "strip", z.ZodTypeAny, {
|
|
1229
|
-
project?: string | undefined;
|
|
1230
|
-
config?: string | undefined;
|
|
1231
|
-
service_token?: {
|
|
1232
|
-
type: "1password";
|
|
1233
|
-
ref: string;
|
|
1234
|
-
} | {
|
|
1235
|
-
type: "doppler";
|
|
1236
|
-
secret: string;
|
|
1237
|
-
project: string;
|
|
1238
|
-
config: string;
|
|
1239
|
-
} | undefined;
|
|
1240
|
-
cluster_secret?: {
|
|
1241
|
-
enabled: boolean;
|
|
1242
|
-
name?: string | undefined;
|
|
1243
|
-
namespace?: string | undefined;
|
|
1244
|
-
key?: string | undefined;
|
|
1245
|
-
annotations?: Record<string, string> | undefined;
|
|
1246
|
-
} | undefined;
|
|
1247
|
-
}, {
|
|
1248
|
-
project?: string | undefined;
|
|
1249
|
-
config?: string | undefined;
|
|
1250
|
-
service_token?: {
|
|
1251
|
-
type: "1password";
|
|
1252
|
-
ref: string;
|
|
1253
|
-
} | {
|
|
1254
|
-
type: "doppler";
|
|
1255
|
-
secret: string;
|
|
1256
|
-
project: string;
|
|
1257
|
-
config: string;
|
|
1258
|
-
} | undefined;
|
|
1259
|
-
cluster_secret?: {
|
|
1260
|
-
name?: string | undefined;
|
|
1261
|
-
namespace?: string | undefined;
|
|
1262
|
-
key?: string | undefined;
|
|
1263
|
-
enabled?: boolean | undefined;
|
|
1264
|
-
annotations?: Record<string, string> | undefined;
|
|
1265
|
-
} | undefined;
|
|
1266
|
-
}>>;
|
|
1267
|
-
onepassword: z.ZodOptional<z.ZodObject<{
|
|
1268
|
-
vault: z.ZodString;
|
|
1269
|
-
service_account_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1270
|
-
type: z.ZodLiteral<"1password">;
|
|
1271
|
-
ref: z.ZodString;
|
|
1272
|
-
}, "strip", z.ZodTypeAny, {
|
|
1273
|
-
type: "1password";
|
|
1274
|
-
ref: string;
|
|
1275
|
-
}, {
|
|
1276
|
-
type: "1password";
|
|
1277
|
-
ref: string;
|
|
1278
|
-
}>, z.ZodObject<{
|
|
1279
|
-
type: z.ZodLiteral<"doppler">;
|
|
1280
|
-
project: z.ZodString;
|
|
1281
|
-
config: z.ZodString;
|
|
1282
|
-
secret: z.ZodString;
|
|
1283
|
-
}, "strip", z.ZodTypeAny, {
|
|
1284
|
-
type: "doppler";
|
|
1285
|
-
secret: string;
|
|
1286
|
-
project: string;
|
|
1287
|
-
config: string;
|
|
1288
|
-
}, {
|
|
1289
|
-
type: "doppler";
|
|
1290
|
-
secret: string;
|
|
1291
|
-
project: string;
|
|
1292
|
-
config: string;
|
|
1293
|
-
}>]>>;
|
|
1294
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
1295
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1296
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
1297
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1298
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1299
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1300
|
-
}, "strip", z.ZodTypeAny, {
|
|
1301
|
-
enabled: boolean;
|
|
1302
|
-
name?: string | undefined;
|
|
1303
|
-
namespace?: string | undefined;
|
|
1304
|
-
key?: string | undefined;
|
|
1305
|
-
annotations?: Record<string, string> | undefined;
|
|
1306
|
-
}, {
|
|
1307
|
-
name?: string | undefined;
|
|
1308
|
-
namespace?: string | undefined;
|
|
1309
|
-
key?: string | undefined;
|
|
1310
|
-
enabled?: boolean | undefined;
|
|
1311
|
-
annotations?: Record<string, string> | undefined;
|
|
1312
|
-
}>>;
|
|
1313
|
-
}, "strip", z.ZodTypeAny, {
|
|
1314
|
-
vault: string;
|
|
1315
|
-
cluster_secret?: {
|
|
1316
|
-
enabled: boolean;
|
|
1317
|
-
name?: string | undefined;
|
|
1318
|
-
namespace?: string | undefined;
|
|
1319
|
-
key?: string | undefined;
|
|
1320
|
-
annotations?: Record<string, string> | undefined;
|
|
1321
|
-
} | undefined;
|
|
1322
|
-
service_account_token?: {
|
|
1323
|
-
type: "1password";
|
|
1324
|
-
ref: string;
|
|
1325
|
-
} | {
|
|
1326
|
-
type: "doppler";
|
|
1327
|
-
secret: string;
|
|
1328
|
-
project: string;
|
|
1329
|
-
config: string;
|
|
1330
|
-
} | undefined;
|
|
1331
|
-
}, {
|
|
1332
|
-
vault: string;
|
|
1333
|
-
cluster_secret?: {
|
|
1334
|
-
name?: string | undefined;
|
|
1335
|
-
namespace?: string | undefined;
|
|
1336
|
-
key?: string | undefined;
|
|
1337
|
-
enabled?: boolean | undefined;
|
|
1338
|
-
annotations?: Record<string, string> | undefined;
|
|
1339
|
-
} | undefined;
|
|
1340
|
-
service_account_token?: {
|
|
1341
|
-
type: "1password";
|
|
1342
|
-
ref: string;
|
|
1343
|
-
} | {
|
|
1344
|
-
type: "doppler";
|
|
1345
|
-
secret: string;
|
|
1346
|
-
project: string;
|
|
1347
|
-
config: string;
|
|
1348
|
-
} | undefined;
|
|
1349
|
-
}>>;
|
|
1350
|
-
}, "strip", z.ZodTypeAny, {
|
|
1351
|
-
doppler?: {
|
|
1352
|
-
project?: string | undefined;
|
|
1353
|
-
config?: string | undefined;
|
|
1354
|
-
service_token?: {
|
|
1355
|
-
type: "1password";
|
|
1356
|
-
ref: string;
|
|
1357
|
-
} | {
|
|
1358
|
-
type: "doppler";
|
|
1359
|
-
secret: string;
|
|
1360
|
-
project: string;
|
|
1361
|
-
config: string;
|
|
1362
|
-
} | undefined;
|
|
1363
|
-
cluster_secret?: {
|
|
1364
|
-
enabled: boolean;
|
|
1365
|
-
name?: string | undefined;
|
|
1366
|
-
namespace?: string | undefined;
|
|
1367
|
-
key?: string | undefined;
|
|
1368
|
-
annotations?: Record<string, string> | undefined;
|
|
1369
|
-
} | undefined;
|
|
1370
|
-
} | undefined;
|
|
1371
|
-
onepassword?: {
|
|
1372
|
-
vault: string;
|
|
1373
|
-
cluster_secret?: {
|
|
1374
|
-
enabled: boolean;
|
|
1375
|
-
name?: string | undefined;
|
|
1376
|
-
namespace?: string | undefined;
|
|
1377
|
-
key?: string | undefined;
|
|
1378
|
-
annotations?: Record<string, string> | undefined;
|
|
1379
|
-
} | undefined;
|
|
1380
|
-
service_account_token?: {
|
|
1381
|
-
type: "1password";
|
|
1382
|
-
ref: string;
|
|
1383
|
-
} | {
|
|
1384
|
-
type: "doppler";
|
|
1385
|
-
secret: string;
|
|
1386
|
-
project: string;
|
|
1387
|
-
config: string;
|
|
1388
|
-
} | undefined;
|
|
1389
|
-
} | undefined;
|
|
1390
|
-
}, {
|
|
1391
|
-
doppler?: {
|
|
1392
|
-
project?: string | undefined;
|
|
1393
|
-
config?: string | undefined;
|
|
1394
|
-
service_token?: {
|
|
1395
|
-
type: "1password";
|
|
1396
|
-
ref: string;
|
|
1397
|
-
} | {
|
|
1398
|
-
type: "doppler";
|
|
1399
|
-
secret: string;
|
|
1400
|
-
project: string;
|
|
1401
|
-
config: string;
|
|
1402
|
-
} | undefined;
|
|
1403
|
-
cluster_secret?: {
|
|
1404
|
-
name?: string | undefined;
|
|
1405
|
-
namespace?: string | undefined;
|
|
1406
|
-
key?: string | undefined;
|
|
1407
|
-
enabled?: boolean | undefined;
|
|
1408
|
-
annotations?: Record<string, string> | undefined;
|
|
1409
|
-
} | undefined;
|
|
1410
|
-
} | undefined;
|
|
1411
|
-
onepassword?: {
|
|
1412
|
-
vault: string;
|
|
1413
|
-
cluster_secret?: {
|
|
1414
|
-
name?: string | undefined;
|
|
1415
|
-
namespace?: string | undefined;
|
|
1416
|
-
key?: string | undefined;
|
|
1417
|
-
enabled?: boolean | undefined;
|
|
1418
|
-
annotations?: Record<string, string> | undefined;
|
|
1419
|
-
} | undefined;
|
|
1420
|
-
service_account_token?: {
|
|
1421
|
-
type: "1password";
|
|
1422
|
-
ref: string;
|
|
1423
|
-
} | {
|
|
1424
|
-
type: "doppler";
|
|
1425
|
-
secret: string;
|
|
1426
|
-
project: string;
|
|
1427
|
-
config: string;
|
|
1428
|
-
} | undefined;
|
|
1429
|
-
} | undefined;
|
|
1430
|
-
}>>;
|
|
1431
718
|
}, "strip", z.ZodTypeAny, {
|
|
1432
719
|
values?: Record<string, string> | undefined;
|
|
1433
720
|
oci?: {
|
|
@@ -1493,47 +780,6 @@ export declare const cluster_spec_schema: z.ZodEffects<z.ZodObject<{
|
|
|
1493
780
|
label_prefix?: string | undefined;
|
|
1494
781
|
} | undefined;
|
|
1495
782
|
nodes?: string[] | undefined;
|
|
1496
|
-
secrets?: {
|
|
1497
|
-
doppler?: {
|
|
1498
|
-
project?: string | undefined;
|
|
1499
|
-
config?: string | undefined;
|
|
1500
|
-
service_token?: {
|
|
1501
|
-
type: "1password";
|
|
1502
|
-
ref: string;
|
|
1503
|
-
} | {
|
|
1504
|
-
type: "doppler";
|
|
1505
|
-
secret: string;
|
|
1506
|
-
project: string;
|
|
1507
|
-
config: string;
|
|
1508
|
-
} | undefined;
|
|
1509
|
-
cluster_secret?: {
|
|
1510
|
-
enabled: boolean;
|
|
1511
|
-
name?: string | undefined;
|
|
1512
|
-
namespace?: string | undefined;
|
|
1513
|
-
key?: string | undefined;
|
|
1514
|
-
annotations?: Record<string, string> | undefined;
|
|
1515
|
-
} | undefined;
|
|
1516
|
-
} | undefined;
|
|
1517
|
-
onepassword?: {
|
|
1518
|
-
vault: string;
|
|
1519
|
-
cluster_secret?: {
|
|
1520
|
-
enabled: boolean;
|
|
1521
|
-
name?: string | undefined;
|
|
1522
|
-
namespace?: string | undefined;
|
|
1523
|
-
key?: string | undefined;
|
|
1524
|
-
annotations?: Record<string, string> | undefined;
|
|
1525
|
-
} | undefined;
|
|
1526
|
-
service_account_token?: {
|
|
1527
|
-
type: "1password";
|
|
1528
|
-
ref: string;
|
|
1529
|
-
} | {
|
|
1530
|
-
type: "doppler";
|
|
1531
|
-
secret: string;
|
|
1532
|
-
project: string;
|
|
1533
|
-
config: string;
|
|
1534
|
-
} | undefined;
|
|
1535
|
-
} | undefined;
|
|
1536
|
-
} | undefined;
|
|
1537
783
|
}, {
|
|
1538
784
|
values?: Record<string, string> | undefined;
|
|
1539
785
|
oci?: {
|
|
@@ -1599,47 +845,6 @@ export declare const cluster_spec_schema: z.ZodEffects<z.ZodObject<{
|
|
|
1599
845
|
label_prefix?: string | undefined;
|
|
1600
846
|
} | undefined;
|
|
1601
847
|
nodes?: string[] | undefined;
|
|
1602
|
-
secrets?: {
|
|
1603
|
-
doppler?: {
|
|
1604
|
-
project?: string | undefined;
|
|
1605
|
-
config?: string | undefined;
|
|
1606
|
-
service_token?: {
|
|
1607
|
-
type: "1password";
|
|
1608
|
-
ref: string;
|
|
1609
|
-
} | {
|
|
1610
|
-
type: "doppler";
|
|
1611
|
-
secret: string;
|
|
1612
|
-
project: string;
|
|
1613
|
-
config: string;
|
|
1614
|
-
} | undefined;
|
|
1615
|
-
cluster_secret?: {
|
|
1616
|
-
name?: string | undefined;
|
|
1617
|
-
namespace?: string | undefined;
|
|
1618
|
-
key?: string | undefined;
|
|
1619
|
-
enabled?: boolean | undefined;
|
|
1620
|
-
annotations?: Record<string, string> | undefined;
|
|
1621
|
-
} | undefined;
|
|
1622
|
-
} | undefined;
|
|
1623
|
-
onepassword?: {
|
|
1624
|
-
vault: string;
|
|
1625
|
-
cluster_secret?: {
|
|
1626
|
-
name?: string | undefined;
|
|
1627
|
-
namespace?: string | undefined;
|
|
1628
|
-
key?: string | undefined;
|
|
1629
|
-
enabled?: boolean | undefined;
|
|
1630
|
-
annotations?: Record<string, string> | undefined;
|
|
1631
|
-
} | undefined;
|
|
1632
|
-
service_account_token?: {
|
|
1633
|
-
type: "1password";
|
|
1634
|
-
ref: string;
|
|
1635
|
-
} | {
|
|
1636
|
-
type: "doppler";
|
|
1637
|
-
secret: string;
|
|
1638
|
-
project: string;
|
|
1639
|
-
config: string;
|
|
1640
|
-
} | undefined;
|
|
1641
|
-
} | undefined;
|
|
1642
|
-
} | undefined;
|
|
1643
848
|
}>, {
|
|
1644
849
|
values?: Record<string, string> | undefined;
|
|
1645
850
|
oci?: {
|
|
@@ -1705,47 +910,6 @@ export declare const cluster_spec_schema: z.ZodEffects<z.ZodObject<{
|
|
|
1705
910
|
label_prefix?: string | undefined;
|
|
1706
911
|
} | undefined;
|
|
1707
912
|
nodes?: string[] | undefined;
|
|
1708
|
-
secrets?: {
|
|
1709
|
-
doppler?: {
|
|
1710
|
-
project?: string | undefined;
|
|
1711
|
-
config?: string | undefined;
|
|
1712
|
-
service_token?: {
|
|
1713
|
-
type: "1password";
|
|
1714
|
-
ref: string;
|
|
1715
|
-
} | {
|
|
1716
|
-
type: "doppler";
|
|
1717
|
-
secret: string;
|
|
1718
|
-
project: string;
|
|
1719
|
-
config: string;
|
|
1720
|
-
} | undefined;
|
|
1721
|
-
cluster_secret?: {
|
|
1722
|
-
enabled: boolean;
|
|
1723
|
-
name?: string | undefined;
|
|
1724
|
-
namespace?: string | undefined;
|
|
1725
|
-
key?: string | undefined;
|
|
1726
|
-
annotations?: Record<string, string> | undefined;
|
|
1727
|
-
} | undefined;
|
|
1728
|
-
} | undefined;
|
|
1729
|
-
onepassword?: {
|
|
1730
|
-
vault: string;
|
|
1731
|
-
cluster_secret?: {
|
|
1732
|
-
enabled: boolean;
|
|
1733
|
-
name?: string | undefined;
|
|
1734
|
-
namespace?: string | undefined;
|
|
1735
|
-
key?: string | undefined;
|
|
1736
|
-
annotations?: Record<string, string> | undefined;
|
|
1737
|
-
} | undefined;
|
|
1738
|
-
service_account_token?: {
|
|
1739
|
-
type: "1password";
|
|
1740
|
-
ref: string;
|
|
1741
|
-
} | {
|
|
1742
|
-
type: "doppler";
|
|
1743
|
-
secret: string;
|
|
1744
|
-
project: string;
|
|
1745
|
-
config: string;
|
|
1746
|
-
} | undefined;
|
|
1747
|
-
} | undefined;
|
|
1748
|
-
} | undefined;
|
|
1749
913
|
}, {
|
|
1750
914
|
values?: Record<string, string> | undefined;
|
|
1751
915
|
oci?: {
|
|
@@ -1811,47 +975,6 @@ export declare const cluster_spec_schema: z.ZodEffects<z.ZodObject<{
|
|
|
1811
975
|
label_prefix?: string | undefined;
|
|
1812
976
|
} | undefined;
|
|
1813
977
|
nodes?: string[] | undefined;
|
|
1814
|
-
secrets?: {
|
|
1815
|
-
doppler?: {
|
|
1816
|
-
project?: string | undefined;
|
|
1817
|
-
config?: string | undefined;
|
|
1818
|
-
service_token?: {
|
|
1819
|
-
type: "1password";
|
|
1820
|
-
ref: string;
|
|
1821
|
-
} | {
|
|
1822
|
-
type: "doppler";
|
|
1823
|
-
secret: string;
|
|
1824
|
-
project: string;
|
|
1825
|
-
config: string;
|
|
1826
|
-
} | undefined;
|
|
1827
|
-
cluster_secret?: {
|
|
1828
|
-
name?: string | undefined;
|
|
1829
|
-
namespace?: string | undefined;
|
|
1830
|
-
key?: string | undefined;
|
|
1831
|
-
enabled?: boolean | undefined;
|
|
1832
|
-
annotations?: Record<string, string> | undefined;
|
|
1833
|
-
} | undefined;
|
|
1834
|
-
} | undefined;
|
|
1835
|
-
onepassword?: {
|
|
1836
|
-
vault: string;
|
|
1837
|
-
cluster_secret?: {
|
|
1838
|
-
name?: string | undefined;
|
|
1839
|
-
namespace?: string | undefined;
|
|
1840
|
-
key?: string | undefined;
|
|
1841
|
-
enabled?: boolean | undefined;
|
|
1842
|
-
annotations?: Record<string, string> | undefined;
|
|
1843
|
-
} | undefined;
|
|
1844
|
-
service_account_token?: {
|
|
1845
|
-
type: "1password";
|
|
1846
|
-
ref: string;
|
|
1847
|
-
} | {
|
|
1848
|
-
type: "doppler";
|
|
1849
|
-
secret: string;
|
|
1850
|
-
project: string;
|
|
1851
|
-
config: string;
|
|
1852
|
-
} | undefined;
|
|
1853
|
-
} | undefined;
|
|
1854
|
-
} | undefined;
|
|
1855
978
|
}>;
|
|
1856
979
|
export type ClusterSpecType = z.infer<typeof cluster_spec_schema>;
|
|
1857
980
|
/**
|
|
@@ -2128,257 +1251,6 @@ export declare const cluster_schema: z.ZodObject<{
|
|
|
2128
1251
|
label_prefix?: string | undefined;
|
|
2129
1252
|
}>>;
|
|
2130
1253
|
nodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2131
|
-
secrets: z.ZodOptional<z.ZodObject<{
|
|
2132
|
-
doppler: z.ZodOptional<z.ZodObject<{
|
|
2133
|
-
project: z.ZodOptional<z.ZodString>;
|
|
2134
|
-
config: z.ZodOptional<z.ZodString>;
|
|
2135
|
-
service_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2136
|
-
type: z.ZodLiteral<"1password">;
|
|
2137
|
-
ref: z.ZodString;
|
|
2138
|
-
}, "strip", z.ZodTypeAny, {
|
|
2139
|
-
type: "1password";
|
|
2140
|
-
ref: string;
|
|
2141
|
-
}, {
|
|
2142
|
-
type: "1password";
|
|
2143
|
-
ref: string;
|
|
2144
|
-
}>, z.ZodObject<{
|
|
2145
|
-
type: z.ZodLiteral<"doppler">;
|
|
2146
|
-
project: z.ZodString;
|
|
2147
|
-
config: z.ZodString;
|
|
2148
|
-
secret: z.ZodString;
|
|
2149
|
-
}, "strip", z.ZodTypeAny, {
|
|
2150
|
-
type: "doppler";
|
|
2151
|
-
secret: string;
|
|
2152
|
-
project: string;
|
|
2153
|
-
config: string;
|
|
2154
|
-
}, {
|
|
2155
|
-
type: "doppler";
|
|
2156
|
-
secret: string;
|
|
2157
|
-
project: string;
|
|
2158
|
-
config: string;
|
|
2159
|
-
}>]>>;
|
|
2160
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
2161
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2162
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
2163
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2164
|
-
key: z.ZodOptional<z.ZodString>;
|
|
2165
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2166
|
-
}, "strip", z.ZodTypeAny, {
|
|
2167
|
-
enabled: boolean;
|
|
2168
|
-
name?: string | undefined;
|
|
2169
|
-
namespace?: string | undefined;
|
|
2170
|
-
key?: string | undefined;
|
|
2171
|
-
annotations?: Record<string, string> | undefined;
|
|
2172
|
-
}, {
|
|
2173
|
-
name?: string | undefined;
|
|
2174
|
-
namespace?: string | undefined;
|
|
2175
|
-
key?: string | undefined;
|
|
2176
|
-
enabled?: boolean | undefined;
|
|
2177
|
-
annotations?: Record<string, string> | undefined;
|
|
2178
|
-
}>>;
|
|
2179
|
-
}, "strip", z.ZodTypeAny, {
|
|
2180
|
-
project?: string | undefined;
|
|
2181
|
-
config?: string | undefined;
|
|
2182
|
-
service_token?: {
|
|
2183
|
-
type: "1password";
|
|
2184
|
-
ref: string;
|
|
2185
|
-
} | {
|
|
2186
|
-
type: "doppler";
|
|
2187
|
-
secret: string;
|
|
2188
|
-
project: string;
|
|
2189
|
-
config: string;
|
|
2190
|
-
} | undefined;
|
|
2191
|
-
cluster_secret?: {
|
|
2192
|
-
enabled: boolean;
|
|
2193
|
-
name?: string | undefined;
|
|
2194
|
-
namespace?: string | undefined;
|
|
2195
|
-
key?: string | undefined;
|
|
2196
|
-
annotations?: Record<string, string> | undefined;
|
|
2197
|
-
} | undefined;
|
|
2198
|
-
}, {
|
|
2199
|
-
project?: string | undefined;
|
|
2200
|
-
config?: string | undefined;
|
|
2201
|
-
service_token?: {
|
|
2202
|
-
type: "1password";
|
|
2203
|
-
ref: string;
|
|
2204
|
-
} | {
|
|
2205
|
-
type: "doppler";
|
|
2206
|
-
secret: string;
|
|
2207
|
-
project: string;
|
|
2208
|
-
config: string;
|
|
2209
|
-
} | undefined;
|
|
2210
|
-
cluster_secret?: {
|
|
2211
|
-
name?: string | undefined;
|
|
2212
|
-
namespace?: string | undefined;
|
|
2213
|
-
key?: string | undefined;
|
|
2214
|
-
enabled?: boolean | undefined;
|
|
2215
|
-
annotations?: Record<string, string> | undefined;
|
|
2216
|
-
} | undefined;
|
|
2217
|
-
}>>;
|
|
2218
|
-
onepassword: z.ZodOptional<z.ZodObject<{
|
|
2219
|
-
vault: z.ZodString;
|
|
2220
|
-
service_account_token: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2221
|
-
type: z.ZodLiteral<"1password">;
|
|
2222
|
-
ref: z.ZodString;
|
|
2223
|
-
}, "strip", z.ZodTypeAny, {
|
|
2224
|
-
type: "1password";
|
|
2225
|
-
ref: string;
|
|
2226
|
-
}, {
|
|
2227
|
-
type: "1password";
|
|
2228
|
-
ref: string;
|
|
2229
|
-
}>, z.ZodObject<{
|
|
2230
|
-
type: z.ZodLiteral<"doppler">;
|
|
2231
|
-
project: z.ZodString;
|
|
2232
|
-
config: z.ZodString;
|
|
2233
|
-
secret: z.ZodString;
|
|
2234
|
-
}, "strip", z.ZodTypeAny, {
|
|
2235
|
-
type: "doppler";
|
|
2236
|
-
secret: string;
|
|
2237
|
-
project: string;
|
|
2238
|
-
config: string;
|
|
2239
|
-
}, {
|
|
2240
|
-
type: "doppler";
|
|
2241
|
-
secret: string;
|
|
2242
|
-
project: string;
|
|
2243
|
-
config: string;
|
|
2244
|
-
}>]>>;
|
|
2245
|
-
cluster_secret: z.ZodOptional<z.ZodObject<{
|
|
2246
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2247
|
-
namespace: z.ZodOptional<z.ZodString>;
|
|
2248
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2249
|
-
key: z.ZodOptional<z.ZodString>;
|
|
2250
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2251
|
-
}, "strip", z.ZodTypeAny, {
|
|
2252
|
-
enabled: boolean;
|
|
2253
|
-
name?: string | undefined;
|
|
2254
|
-
namespace?: string | undefined;
|
|
2255
|
-
key?: string | undefined;
|
|
2256
|
-
annotations?: Record<string, string> | undefined;
|
|
2257
|
-
}, {
|
|
2258
|
-
name?: string | undefined;
|
|
2259
|
-
namespace?: string | undefined;
|
|
2260
|
-
key?: string | undefined;
|
|
2261
|
-
enabled?: boolean | undefined;
|
|
2262
|
-
annotations?: Record<string, string> | undefined;
|
|
2263
|
-
}>>;
|
|
2264
|
-
}, "strip", z.ZodTypeAny, {
|
|
2265
|
-
vault: string;
|
|
2266
|
-
cluster_secret?: {
|
|
2267
|
-
enabled: boolean;
|
|
2268
|
-
name?: string | undefined;
|
|
2269
|
-
namespace?: string | undefined;
|
|
2270
|
-
key?: string | undefined;
|
|
2271
|
-
annotations?: Record<string, string> | undefined;
|
|
2272
|
-
} | undefined;
|
|
2273
|
-
service_account_token?: {
|
|
2274
|
-
type: "1password";
|
|
2275
|
-
ref: string;
|
|
2276
|
-
} | {
|
|
2277
|
-
type: "doppler";
|
|
2278
|
-
secret: string;
|
|
2279
|
-
project: string;
|
|
2280
|
-
config: string;
|
|
2281
|
-
} | undefined;
|
|
2282
|
-
}, {
|
|
2283
|
-
vault: string;
|
|
2284
|
-
cluster_secret?: {
|
|
2285
|
-
name?: string | undefined;
|
|
2286
|
-
namespace?: string | undefined;
|
|
2287
|
-
key?: string | undefined;
|
|
2288
|
-
enabled?: boolean | undefined;
|
|
2289
|
-
annotations?: Record<string, string> | undefined;
|
|
2290
|
-
} | undefined;
|
|
2291
|
-
service_account_token?: {
|
|
2292
|
-
type: "1password";
|
|
2293
|
-
ref: string;
|
|
2294
|
-
} | {
|
|
2295
|
-
type: "doppler";
|
|
2296
|
-
secret: string;
|
|
2297
|
-
project: string;
|
|
2298
|
-
config: string;
|
|
2299
|
-
} | undefined;
|
|
2300
|
-
}>>;
|
|
2301
|
-
}, "strip", z.ZodTypeAny, {
|
|
2302
|
-
doppler?: {
|
|
2303
|
-
project?: string | undefined;
|
|
2304
|
-
config?: string | undefined;
|
|
2305
|
-
service_token?: {
|
|
2306
|
-
type: "1password";
|
|
2307
|
-
ref: string;
|
|
2308
|
-
} | {
|
|
2309
|
-
type: "doppler";
|
|
2310
|
-
secret: string;
|
|
2311
|
-
project: string;
|
|
2312
|
-
config: string;
|
|
2313
|
-
} | undefined;
|
|
2314
|
-
cluster_secret?: {
|
|
2315
|
-
enabled: boolean;
|
|
2316
|
-
name?: string | undefined;
|
|
2317
|
-
namespace?: string | undefined;
|
|
2318
|
-
key?: string | undefined;
|
|
2319
|
-
annotations?: Record<string, string> | undefined;
|
|
2320
|
-
} | undefined;
|
|
2321
|
-
} | undefined;
|
|
2322
|
-
onepassword?: {
|
|
2323
|
-
vault: string;
|
|
2324
|
-
cluster_secret?: {
|
|
2325
|
-
enabled: boolean;
|
|
2326
|
-
name?: string | undefined;
|
|
2327
|
-
namespace?: string | undefined;
|
|
2328
|
-
key?: string | undefined;
|
|
2329
|
-
annotations?: Record<string, string> | undefined;
|
|
2330
|
-
} | undefined;
|
|
2331
|
-
service_account_token?: {
|
|
2332
|
-
type: "1password";
|
|
2333
|
-
ref: string;
|
|
2334
|
-
} | {
|
|
2335
|
-
type: "doppler";
|
|
2336
|
-
secret: string;
|
|
2337
|
-
project: string;
|
|
2338
|
-
config: string;
|
|
2339
|
-
} | undefined;
|
|
2340
|
-
} | undefined;
|
|
2341
|
-
}, {
|
|
2342
|
-
doppler?: {
|
|
2343
|
-
project?: string | undefined;
|
|
2344
|
-
config?: string | undefined;
|
|
2345
|
-
service_token?: {
|
|
2346
|
-
type: "1password";
|
|
2347
|
-
ref: string;
|
|
2348
|
-
} | {
|
|
2349
|
-
type: "doppler";
|
|
2350
|
-
secret: string;
|
|
2351
|
-
project: string;
|
|
2352
|
-
config: string;
|
|
2353
|
-
} | undefined;
|
|
2354
|
-
cluster_secret?: {
|
|
2355
|
-
name?: string | undefined;
|
|
2356
|
-
namespace?: string | undefined;
|
|
2357
|
-
key?: string | undefined;
|
|
2358
|
-
enabled?: boolean | undefined;
|
|
2359
|
-
annotations?: Record<string, string> | undefined;
|
|
2360
|
-
} | undefined;
|
|
2361
|
-
} | undefined;
|
|
2362
|
-
onepassword?: {
|
|
2363
|
-
vault: string;
|
|
2364
|
-
cluster_secret?: {
|
|
2365
|
-
name?: string | undefined;
|
|
2366
|
-
namespace?: string | undefined;
|
|
2367
|
-
key?: string | undefined;
|
|
2368
|
-
enabled?: boolean | undefined;
|
|
2369
|
-
annotations?: Record<string, string> | undefined;
|
|
2370
|
-
} | undefined;
|
|
2371
|
-
service_account_token?: {
|
|
2372
|
-
type: "1password";
|
|
2373
|
-
ref: string;
|
|
2374
|
-
} | {
|
|
2375
|
-
type: "doppler";
|
|
2376
|
-
secret: string;
|
|
2377
|
-
project: string;
|
|
2378
|
-
config: string;
|
|
2379
|
-
} | undefined;
|
|
2380
|
-
} | undefined;
|
|
2381
|
-
}>>;
|
|
2382
1254
|
}, "strip", z.ZodTypeAny, {
|
|
2383
1255
|
values?: Record<string, string> | undefined;
|
|
2384
1256
|
oci?: {
|
|
@@ -2444,47 +1316,6 @@ export declare const cluster_schema: z.ZodObject<{
|
|
|
2444
1316
|
label_prefix?: string | undefined;
|
|
2445
1317
|
} | undefined;
|
|
2446
1318
|
nodes?: string[] | undefined;
|
|
2447
|
-
secrets?: {
|
|
2448
|
-
doppler?: {
|
|
2449
|
-
project?: string | undefined;
|
|
2450
|
-
config?: string | undefined;
|
|
2451
|
-
service_token?: {
|
|
2452
|
-
type: "1password";
|
|
2453
|
-
ref: string;
|
|
2454
|
-
} | {
|
|
2455
|
-
type: "doppler";
|
|
2456
|
-
secret: string;
|
|
2457
|
-
project: string;
|
|
2458
|
-
config: string;
|
|
2459
|
-
} | undefined;
|
|
2460
|
-
cluster_secret?: {
|
|
2461
|
-
enabled: boolean;
|
|
2462
|
-
name?: string | undefined;
|
|
2463
|
-
namespace?: string | undefined;
|
|
2464
|
-
key?: string | undefined;
|
|
2465
|
-
annotations?: Record<string, string> | undefined;
|
|
2466
|
-
} | undefined;
|
|
2467
|
-
} | undefined;
|
|
2468
|
-
onepassword?: {
|
|
2469
|
-
vault: string;
|
|
2470
|
-
cluster_secret?: {
|
|
2471
|
-
enabled: boolean;
|
|
2472
|
-
name?: string | undefined;
|
|
2473
|
-
namespace?: string | undefined;
|
|
2474
|
-
key?: string | undefined;
|
|
2475
|
-
annotations?: Record<string, string> | undefined;
|
|
2476
|
-
} | undefined;
|
|
2477
|
-
service_account_token?: {
|
|
2478
|
-
type: "1password";
|
|
2479
|
-
ref: string;
|
|
2480
|
-
} | {
|
|
2481
|
-
type: "doppler";
|
|
2482
|
-
secret: string;
|
|
2483
|
-
project: string;
|
|
2484
|
-
config: string;
|
|
2485
|
-
} | undefined;
|
|
2486
|
-
} | undefined;
|
|
2487
|
-
} | undefined;
|
|
2488
1319
|
}, {
|
|
2489
1320
|
values?: Record<string, string> | undefined;
|
|
2490
1321
|
oci?: {
|
|
@@ -2550,47 +1381,6 @@ export declare const cluster_schema: z.ZodObject<{
|
|
|
2550
1381
|
label_prefix?: string | undefined;
|
|
2551
1382
|
} | undefined;
|
|
2552
1383
|
nodes?: string[] | undefined;
|
|
2553
|
-
secrets?: {
|
|
2554
|
-
doppler?: {
|
|
2555
|
-
project?: string | undefined;
|
|
2556
|
-
config?: string | undefined;
|
|
2557
|
-
service_token?: {
|
|
2558
|
-
type: "1password";
|
|
2559
|
-
ref: string;
|
|
2560
|
-
} | {
|
|
2561
|
-
type: "doppler";
|
|
2562
|
-
secret: string;
|
|
2563
|
-
project: string;
|
|
2564
|
-
config: string;
|
|
2565
|
-
} | undefined;
|
|
2566
|
-
cluster_secret?: {
|
|
2567
|
-
name?: string | undefined;
|
|
2568
|
-
namespace?: string | undefined;
|
|
2569
|
-
key?: string | undefined;
|
|
2570
|
-
enabled?: boolean | undefined;
|
|
2571
|
-
annotations?: Record<string, string> | undefined;
|
|
2572
|
-
} | undefined;
|
|
2573
|
-
} | undefined;
|
|
2574
|
-
onepassword?: {
|
|
2575
|
-
vault: string;
|
|
2576
|
-
cluster_secret?: {
|
|
2577
|
-
name?: string | undefined;
|
|
2578
|
-
namespace?: string | undefined;
|
|
2579
|
-
key?: string | undefined;
|
|
2580
|
-
enabled?: boolean | undefined;
|
|
2581
|
-
annotations?: Record<string, string> | undefined;
|
|
2582
|
-
} | undefined;
|
|
2583
|
-
service_account_token?: {
|
|
2584
|
-
type: "1password";
|
|
2585
|
-
ref: string;
|
|
2586
|
-
} | {
|
|
2587
|
-
type: "doppler";
|
|
2588
|
-
secret: string;
|
|
2589
|
-
project: string;
|
|
2590
|
-
config: string;
|
|
2591
|
-
} | undefined;
|
|
2592
|
-
} | undefined;
|
|
2593
|
-
} | undefined;
|
|
2594
1384
|
}>, {
|
|
2595
1385
|
values?: Record<string, string> | undefined;
|
|
2596
1386
|
oci?: {
|
|
@@ -2656,47 +1446,6 @@ export declare const cluster_schema: z.ZodObject<{
|
|
|
2656
1446
|
label_prefix?: string | undefined;
|
|
2657
1447
|
} | undefined;
|
|
2658
1448
|
nodes?: string[] | undefined;
|
|
2659
|
-
secrets?: {
|
|
2660
|
-
doppler?: {
|
|
2661
|
-
project?: string | undefined;
|
|
2662
|
-
config?: string | undefined;
|
|
2663
|
-
service_token?: {
|
|
2664
|
-
type: "1password";
|
|
2665
|
-
ref: string;
|
|
2666
|
-
} | {
|
|
2667
|
-
type: "doppler";
|
|
2668
|
-
secret: string;
|
|
2669
|
-
project: string;
|
|
2670
|
-
config: string;
|
|
2671
|
-
} | undefined;
|
|
2672
|
-
cluster_secret?: {
|
|
2673
|
-
enabled: boolean;
|
|
2674
|
-
name?: string | undefined;
|
|
2675
|
-
namespace?: string | undefined;
|
|
2676
|
-
key?: string | undefined;
|
|
2677
|
-
annotations?: Record<string, string> | undefined;
|
|
2678
|
-
} | undefined;
|
|
2679
|
-
} | undefined;
|
|
2680
|
-
onepassword?: {
|
|
2681
|
-
vault: string;
|
|
2682
|
-
cluster_secret?: {
|
|
2683
|
-
enabled: boolean;
|
|
2684
|
-
name?: string | undefined;
|
|
2685
|
-
namespace?: string | undefined;
|
|
2686
|
-
key?: string | undefined;
|
|
2687
|
-
annotations?: Record<string, string> | undefined;
|
|
2688
|
-
} | undefined;
|
|
2689
|
-
service_account_token?: {
|
|
2690
|
-
type: "1password";
|
|
2691
|
-
ref: string;
|
|
2692
|
-
} | {
|
|
2693
|
-
type: "doppler";
|
|
2694
|
-
secret: string;
|
|
2695
|
-
project: string;
|
|
2696
|
-
config: string;
|
|
2697
|
-
} | undefined;
|
|
2698
|
-
} | undefined;
|
|
2699
|
-
} | undefined;
|
|
2700
1449
|
}, {
|
|
2701
1450
|
values?: Record<string, string> | undefined;
|
|
2702
1451
|
oci?: {
|
|
@@ -2762,47 +1511,6 @@ export declare const cluster_schema: z.ZodObject<{
|
|
|
2762
1511
|
label_prefix?: string | undefined;
|
|
2763
1512
|
} | undefined;
|
|
2764
1513
|
nodes?: string[] | undefined;
|
|
2765
|
-
secrets?: {
|
|
2766
|
-
doppler?: {
|
|
2767
|
-
project?: string | undefined;
|
|
2768
|
-
config?: string | undefined;
|
|
2769
|
-
service_token?: {
|
|
2770
|
-
type: "1password";
|
|
2771
|
-
ref: string;
|
|
2772
|
-
} | {
|
|
2773
|
-
type: "doppler";
|
|
2774
|
-
secret: string;
|
|
2775
|
-
project: string;
|
|
2776
|
-
config: string;
|
|
2777
|
-
} | undefined;
|
|
2778
|
-
cluster_secret?: {
|
|
2779
|
-
name?: string | undefined;
|
|
2780
|
-
namespace?: string | undefined;
|
|
2781
|
-
key?: string | undefined;
|
|
2782
|
-
enabled?: boolean | undefined;
|
|
2783
|
-
annotations?: Record<string, string> | undefined;
|
|
2784
|
-
} | undefined;
|
|
2785
|
-
} | undefined;
|
|
2786
|
-
onepassword?: {
|
|
2787
|
-
vault: string;
|
|
2788
|
-
cluster_secret?: {
|
|
2789
|
-
name?: string | undefined;
|
|
2790
|
-
namespace?: string | undefined;
|
|
2791
|
-
key?: string | undefined;
|
|
2792
|
-
enabled?: boolean | undefined;
|
|
2793
|
-
annotations?: Record<string, string> | undefined;
|
|
2794
|
-
} | undefined;
|
|
2795
|
-
service_account_token?: {
|
|
2796
|
-
type: "1password";
|
|
2797
|
-
ref: string;
|
|
2798
|
-
} | {
|
|
2799
|
-
type: "doppler";
|
|
2800
|
-
secret: string;
|
|
2801
|
-
project: string;
|
|
2802
|
-
config: string;
|
|
2803
|
-
} | undefined;
|
|
2804
|
-
} | undefined;
|
|
2805
|
-
} | undefined;
|
|
2806
1514
|
}>;
|
|
2807
1515
|
}, "strip", z.ZodTypeAny, {
|
|
2808
1516
|
kind: "Cluster";
|
|
@@ -2881,47 +1589,6 @@ export declare const cluster_schema: z.ZodObject<{
|
|
|
2881
1589
|
label_prefix?: string | undefined;
|
|
2882
1590
|
} | undefined;
|
|
2883
1591
|
nodes?: string[] | undefined;
|
|
2884
|
-
secrets?: {
|
|
2885
|
-
doppler?: {
|
|
2886
|
-
project?: string | undefined;
|
|
2887
|
-
config?: string | undefined;
|
|
2888
|
-
service_token?: {
|
|
2889
|
-
type: "1password";
|
|
2890
|
-
ref: string;
|
|
2891
|
-
} | {
|
|
2892
|
-
type: "doppler";
|
|
2893
|
-
secret: string;
|
|
2894
|
-
project: string;
|
|
2895
|
-
config: string;
|
|
2896
|
-
} | undefined;
|
|
2897
|
-
cluster_secret?: {
|
|
2898
|
-
enabled: boolean;
|
|
2899
|
-
name?: string | undefined;
|
|
2900
|
-
namespace?: string | undefined;
|
|
2901
|
-
key?: string | undefined;
|
|
2902
|
-
annotations?: Record<string, string> | undefined;
|
|
2903
|
-
} | undefined;
|
|
2904
|
-
} | undefined;
|
|
2905
|
-
onepassword?: {
|
|
2906
|
-
vault: string;
|
|
2907
|
-
cluster_secret?: {
|
|
2908
|
-
enabled: boolean;
|
|
2909
|
-
name?: string | undefined;
|
|
2910
|
-
namespace?: string | undefined;
|
|
2911
|
-
key?: string | undefined;
|
|
2912
|
-
annotations?: Record<string, string> | undefined;
|
|
2913
|
-
} | undefined;
|
|
2914
|
-
service_account_token?: {
|
|
2915
|
-
type: "1password";
|
|
2916
|
-
ref: string;
|
|
2917
|
-
} | {
|
|
2918
|
-
type: "doppler";
|
|
2919
|
-
secret: string;
|
|
2920
|
-
project: string;
|
|
2921
|
-
config: string;
|
|
2922
|
-
} | undefined;
|
|
2923
|
-
} | undefined;
|
|
2924
|
-
} | undefined;
|
|
2925
1592
|
};
|
|
2926
1593
|
}, {
|
|
2927
1594
|
kind: "Cluster";
|
|
@@ -3000,47 +1667,6 @@ export declare const cluster_schema: z.ZodObject<{
|
|
|
3000
1667
|
label_prefix?: string | undefined;
|
|
3001
1668
|
} | undefined;
|
|
3002
1669
|
nodes?: string[] | undefined;
|
|
3003
|
-
secrets?: {
|
|
3004
|
-
doppler?: {
|
|
3005
|
-
project?: string | undefined;
|
|
3006
|
-
config?: string | undefined;
|
|
3007
|
-
service_token?: {
|
|
3008
|
-
type: "1password";
|
|
3009
|
-
ref: string;
|
|
3010
|
-
} | {
|
|
3011
|
-
type: "doppler";
|
|
3012
|
-
secret: string;
|
|
3013
|
-
project: string;
|
|
3014
|
-
config: string;
|
|
3015
|
-
} | undefined;
|
|
3016
|
-
cluster_secret?: {
|
|
3017
|
-
name?: string | undefined;
|
|
3018
|
-
namespace?: string | undefined;
|
|
3019
|
-
key?: string | undefined;
|
|
3020
|
-
enabled?: boolean | undefined;
|
|
3021
|
-
annotations?: Record<string, string> | undefined;
|
|
3022
|
-
} | undefined;
|
|
3023
|
-
} | undefined;
|
|
3024
|
-
onepassword?: {
|
|
3025
|
-
vault: string;
|
|
3026
|
-
cluster_secret?: {
|
|
3027
|
-
name?: string | undefined;
|
|
3028
|
-
namespace?: string | undefined;
|
|
3029
|
-
key?: string | undefined;
|
|
3030
|
-
enabled?: boolean | undefined;
|
|
3031
|
-
annotations?: Record<string, string> | undefined;
|
|
3032
|
-
} | undefined;
|
|
3033
|
-
service_account_token?: {
|
|
3034
|
-
type: "1password";
|
|
3035
|
-
ref: string;
|
|
3036
|
-
} | {
|
|
3037
|
-
type: "doppler";
|
|
3038
|
-
secret: string;
|
|
3039
|
-
project: string;
|
|
3040
|
-
config: string;
|
|
3041
|
-
} | undefined;
|
|
3042
|
-
} | undefined;
|
|
3043
|
-
} | undefined;
|
|
3044
1670
|
};
|
|
3045
1671
|
}>;
|
|
3046
1672
|
export type ClusterType = z.infer<typeof cluster_schema>;
|