cdk8s 1.0.0 → 1.1.3
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/.gitattributes +1 -2
- package/.jsii +287 -41
- package/README.md +0 -2
- package/docs/java.md +244 -0
- package/docs/python.md +307 -2
- package/docs/typescript.md +184 -0
- package/lib/_child_process.d.ts +10 -0
- package/lib/_child_process.js +13 -0
- package/lib/api-object.js +1 -1
- package/lib/app.js +1 -1
- package/lib/chart.js +1 -1
- package/lib/dependency.js +2 -2
- package/lib/duration.js +1 -1
- package/lib/helm.js +4 -4
- package/lib/include.js +1 -1
- package/lib/json-patch.js +1 -1
- package/lib/lazy.js +1 -1
- package/lib/metadata.d.ts +120 -0
- package/lib/metadata.js +25 -3
- package/lib/names.js +1 -1
- package/lib/size.js +1 -1
- package/lib/testing.js +1 -1
- package/lib/yaml.js +1 -1
- package/package.json +10 -10
package/.gitattributes
CHANGED
|
@@ -17,6 +17,5 @@
|
|
|
17
17
|
/.projen/tasks.json linguist-generated
|
|
18
18
|
/LICENSE linguist-generated
|
|
19
19
|
/package.json linguist-generated
|
|
20
|
-
/tsconfig.
|
|
21
|
-
/tsconfig.jest.json linguist-generated
|
|
20
|
+
/tsconfig.dev.json linguist-generated
|
|
22
21
|
/yarn.lock linguist-generated
|
package/.jsii
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"stability": "stable"
|
|
47
47
|
},
|
|
48
48
|
"homepage": "https://github.com/cdk8s-team/cdk8s-core.git",
|
|
49
|
-
"jsiiVersion": "1.
|
|
49
|
+
"jsiiVersion": "1.39.0 (build 8af72c2)",
|
|
50
50
|
"keywords": [
|
|
51
51
|
"cdk",
|
|
52
52
|
"constructs",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"name": "cdk8s",
|
|
65
65
|
"readme": {
|
|
66
|
-
"markdown": "# cdk8s\n\n### Cloud Development Kit for Kubernetes\n\n
|
|
66
|
+
"markdown": "# cdk8s\n\n### Cloud Development Kit for Kubernetes\n\n[](https://github.com/cdk8s-team/cdk8s-core/actions/workflows/release.yml)\n[](https://badge.fury.io/js/cdk8s)\n[](https://badge.fury.io/py/cdk8s)\n[](https://maven-badges.herokuapp.com/maven-central/org.cdk8s/cdk8s)\n\n**cdk8s** is a software development framework for defining Kubernetes\napplications using rich object-oriented APIs. It allows developers to leverage\nthe full power of software in order to define abstract components called\n\"constructs\" which compose Kubernetes resources or other constructs into\nhigher-level abstractions.\n\n## Documentation\n\nSee [cdk8s.io](https://cdk8s.io).\n\n## License\n\nThis project is distributed under the [Apache License, Version 2.0](./LICENSE).\n\nThis module is part of the [cdk8s project](https://github.com/cdk8s-team/cdk8s).\n"
|
|
67
67
|
},
|
|
68
68
|
"repository": {
|
|
69
69
|
"type": "git",
|
|
@@ -336,7 +336,8 @@
|
|
|
336
336
|
"primitive": "string"
|
|
337
337
|
}
|
|
338
338
|
}
|
|
339
|
-
]
|
|
339
|
+
],
|
|
340
|
+
"symbolId": "src/api-object:ApiObject"
|
|
340
341
|
},
|
|
341
342
|
"cdk8s.ApiObjectMetadata": {
|
|
342
343
|
"assembly": "cdk8s",
|
|
@@ -378,6 +379,31 @@
|
|
|
378
379
|
}
|
|
379
380
|
}
|
|
380
381
|
},
|
|
382
|
+
{
|
|
383
|
+
"abstract": true,
|
|
384
|
+
"docs": {
|
|
385
|
+
"default": "- No finalizers.",
|
|
386
|
+
"remarks": "Must be empty before the object is deleted from the registry. Each entry is\nan identifier for the responsible component that will remove the entry from\nthe list. If the deletionTimestamp of the object is non-nil, entries in\nthis list can only be removed. Finalizers may be processed and removed in\nany order. Order is NOT enforced because it introduces significant risk of\nstuck finalizers. finalizers is a shared field, any actor with permission\ncan reorder it. If the finalizer list is processed in order, then this can\nlead to a situation in which the component responsible for the first\nfinalizer in the list is waiting for a signal (field value, external\nsystem, or other) produced by a component responsible for a finalizer later\nin the list, resulting in a deadlock. Without enforced ordering finalizers\nare free to order amongst themselves and are not vulnerable to ordering\nchanges in the list.",
|
|
387
|
+
"see": "https://kubernetes.io/docs/concepts/overview/working-with-objects/finalizers/",
|
|
388
|
+
"stability": "stable",
|
|
389
|
+
"summary": "Namespaced keys that tell Kubernetes to wait until specific conditions are met before it fully deletes resources marked for deletion."
|
|
390
|
+
},
|
|
391
|
+
"immutable": true,
|
|
392
|
+
"locationInModule": {
|
|
393
|
+
"filename": "src/metadata.ts",
|
|
394
|
+
"line": 76
|
|
395
|
+
},
|
|
396
|
+
"name": "finalizers",
|
|
397
|
+
"optional": true,
|
|
398
|
+
"type": {
|
|
399
|
+
"collection": {
|
|
400
|
+
"elementtype": {
|
|
401
|
+
"primitive": "string"
|
|
402
|
+
},
|
|
403
|
+
"kind": "array"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
},
|
|
381
407
|
{
|
|
382
408
|
"abstract": true,
|
|
383
409
|
"docs": {
|
|
@@ -440,8 +466,34 @@
|
|
|
440
466
|
"type": {
|
|
441
467
|
"primitive": "string"
|
|
442
468
|
}
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"abstract": true,
|
|
472
|
+
"docs": {
|
|
473
|
+
"default": "- automatically set by Kubernetes",
|
|
474
|
+
"remarks": "If ALL objects in the list have\nbeen deleted, this object will be garbage collected. If this object is\nmanaged by a controller, then an entry in this list will point to this\ncontroller, with the controller field set to true. There cannot be more\nthan one managing controller.\n\nKubernetes sets the value of this field automatically for objects that are\ndependents of other objects like ReplicaSets, DaemonSets, Deployments, Jobs\nand CronJobs, and ReplicationControllers. You can also configure these\nrelationships manually by changing the value of this field. However, you\nusually don't need to and can allow Kubernetes to automatically manage the\nrelationships.",
|
|
475
|
+
"see": "https://kubernetes.io/docs/concepts/overview/working-with-objects/owners-dependents/",
|
|
476
|
+
"stability": "stable",
|
|
477
|
+
"summary": "List of objects depended by this object."
|
|
478
|
+
},
|
|
479
|
+
"immutable": true,
|
|
480
|
+
"locationInModule": {
|
|
481
|
+
"filename": "src/metadata.ts",
|
|
482
|
+
"line": 95
|
|
483
|
+
},
|
|
484
|
+
"name": "ownerReferences",
|
|
485
|
+
"optional": true,
|
|
486
|
+
"type": {
|
|
487
|
+
"collection": {
|
|
488
|
+
"elementtype": {
|
|
489
|
+
"fqn": "cdk8s.OwnerReference"
|
|
490
|
+
},
|
|
491
|
+
"kind": "array"
|
|
492
|
+
}
|
|
493
|
+
}
|
|
443
494
|
}
|
|
444
|
-
]
|
|
495
|
+
],
|
|
496
|
+
"symbolId": "src/metadata:ApiObjectMetadata"
|
|
445
497
|
},
|
|
446
498
|
"cdk8s.ApiObjectMetadataDefinition": {
|
|
447
499
|
"assembly": "cdk8s",
|
|
@@ -456,7 +508,7 @@
|
|
|
456
508
|
},
|
|
457
509
|
"locationInModule": {
|
|
458
510
|
"filename": "src/metadata.ts",
|
|
459
|
-
"line":
|
|
511
|
+
"line": 147
|
|
460
512
|
},
|
|
461
513
|
"parameters": [
|
|
462
514
|
{
|
|
@@ -471,7 +523,7 @@
|
|
|
471
523
|
"kind": "class",
|
|
472
524
|
"locationInModule": {
|
|
473
525
|
"filename": "src/metadata.ts",
|
|
474
|
-
"line":
|
|
526
|
+
"line": 106
|
|
475
527
|
},
|
|
476
528
|
"methods": [
|
|
477
529
|
{
|
|
@@ -481,7 +533,7 @@
|
|
|
481
533
|
},
|
|
482
534
|
"locationInModule": {
|
|
483
535
|
"filename": "src/metadata.ts",
|
|
484
|
-
"line":
|
|
536
|
+
"line": 208
|
|
485
537
|
},
|
|
486
538
|
"name": "add",
|
|
487
539
|
"parameters": [
|
|
@@ -512,7 +564,7 @@
|
|
|
512
564
|
},
|
|
513
565
|
"locationInModule": {
|
|
514
566
|
"filename": "src/metadata.ts",
|
|
515
|
-
"line":
|
|
567
|
+
"line": 181
|
|
516
568
|
},
|
|
517
569
|
"name": "addAnnotation",
|
|
518
570
|
"parameters": [
|
|
@@ -536,6 +588,30 @@
|
|
|
536
588
|
}
|
|
537
589
|
]
|
|
538
590
|
},
|
|
591
|
+
{
|
|
592
|
+
"docs": {
|
|
593
|
+
"stability": "stable",
|
|
594
|
+
"summary": "Add one or more finalizers."
|
|
595
|
+
},
|
|
596
|
+
"locationInModule": {
|
|
597
|
+
"filename": "src/metadata.ts",
|
|
598
|
+
"line": 190
|
|
599
|
+
},
|
|
600
|
+
"name": "addFinalizers",
|
|
601
|
+
"parameters": [
|
|
602
|
+
{
|
|
603
|
+
"docs": {
|
|
604
|
+
"summary": "the finalizers."
|
|
605
|
+
},
|
|
606
|
+
"name": "finalizers",
|
|
607
|
+
"type": {
|
|
608
|
+
"primitive": "string"
|
|
609
|
+
},
|
|
610
|
+
"variadic": true
|
|
611
|
+
}
|
|
612
|
+
],
|
|
613
|
+
"variadic": true
|
|
614
|
+
},
|
|
539
615
|
{
|
|
540
616
|
"docs": {
|
|
541
617
|
"stability": "stable",
|
|
@@ -543,7 +619,7 @@
|
|
|
543
619
|
},
|
|
544
620
|
"locationInModule": {
|
|
545
621
|
"filename": "src/metadata.ts",
|
|
546
|
-
"line":
|
|
622
|
+
"line": 163
|
|
547
623
|
},
|
|
548
624
|
"name": "addLabel",
|
|
549
625
|
"parameters": [
|
|
@@ -567,6 +643,28 @@
|
|
|
567
643
|
}
|
|
568
644
|
]
|
|
569
645
|
},
|
|
646
|
+
{
|
|
647
|
+
"docs": {
|
|
648
|
+
"stability": "stable",
|
|
649
|
+
"summary": "Add an owner."
|
|
650
|
+
},
|
|
651
|
+
"locationInModule": {
|
|
652
|
+
"filename": "src/metadata.ts",
|
|
653
|
+
"line": 199
|
|
654
|
+
},
|
|
655
|
+
"name": "addOwnerReference",
|
|
656
|
+
"parameters": [
|
|
657
|
+
{
|
|
658
|
+
"docs": {
|
|
659
|
+
"summary": "the owner."
|
|
660
|
+
},
|
|
661
|
+
"name": "owner",
|
|
662
|
+
"type": {
|
|
663
|
+
"fqn": "cdk8s.OwnerReference"
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
]
|
|
667
|
+
},
|
|
570
668
|
{
|
|
571
669
|
"docs": {
|
|
572
670
|
"returns": "a value of a label or undefined",
|
|
@@ -574,7 +672,7 @@
|
|
|
574
672
|
},
|
|
575
673
|
"locationInModule": {
|
|
576
674
|
"filename": "src/metadata.ts",
|
|
577
|
-
"line":
|
|
675
|
+
"line": 171
|
|
578
676
|
},
|
|
579
677
|
"name": "getLabel",
|
|
580
678
|
"parameters": [
|
|
@@ -602,7 +700,7 @@
|
|
|
602
700
|
},
|
|
603
701
|
"locationInModule": {
|
|
604
702
|
"filename": "src/metadata.ts",
|
|
605
|
-
"line":
|
|
703
|
+
"line": 215
|
|
606
704
|
},
|
|
607
705
|
"name": "toJson",
|
|
608
706
|
"returns": {
|
|
@@ -623,7 +721,7 @@
|
|
|
623
721
|
"immutable": true,
|
|
624
722
|
"locationInModule": {
|
|
625
723
|
"filename": "src/metadata.ts",
|
|
626
|
-
"line":
|
|
724
|
+
"line": 115
|
|
627
725
|
},
|
|
628
726
|
"name": "name",
|
|
629
727
|
"optional": true,
|
|
@@ -639,7 +737,7 @@
|
|
|
639
737
|
"immutable": true,
|
|
640
738
|
"locationInModule": {
|
|
641
739
|
"filename": "src/metadata.ts",
|
|
642
|
-
"line":
|
|
740
|
+
"line": 120
|
|
643
741
|
},
|
|
644
742
|
"name": "namespace",
|
|
645
743
|
"optional": true,
|
|
@@ -647,7 +745,8 @@
|
|
|
647
745
|
"primitive": "string"
|
|
648
746
|
}
|
|
649
747
|
}
|
|
650
|
-
]
|
|
748
|
+
],
|
|
749
|
+
"symbolId": "src/metadata:ApiObjectMetadataDefinition"
|
|
651
750
|
},
|
|
652
751
|
"cdk8s.ApiObjectProps": {
|
|
653
752
|
"assembly": "cdk8s",
|
|
@@ -714,7 +813,8 @@
|
|
|
714
813
|
"fqn": "cdk8s.ApiObjectMetadata"
|
|
715
814
|
}
|
|
716
815
|
}
|
|
717
|
-
]
|
|
816
|
+
],
|
|
817
|
+
"symbolId": "src/api-object:ApiObjectProps"
|
|
718
818
|
},
|
|
719
819
|
"cdk8s.App": {
|
|
720
820
|
"assembly": "cdk8s",
|
|
@@ -797,7 +897,8 @@
|
|
|
797
897
|
"fqn": "cdk8s.YamlOutputType"
|
|
798
898
|
}
|
|
799
899
|
}
|
|
800
|
-
]
|
|
900
|
+
],
|
|
901
|
+
"symbolId": "src/app:App"
|
|
801
902
|
},
|
|
802
903
|
"cdk8s.AppProps": {
|
|
803
904
|
"assembly": "cdk8s",
|
|
@@ -849,7 +950,8 @@
|
|
|
849
950
|
"fqn": "cdk8s.YamlOutputType"
|
|
850
951
|
}
|
|
851
952
|
}
|
|
852
|
-
]
|
|
953
|
+
],
|
|
954
|
+
"symbolId": "src/app:AppProps"
|
|
853
955
|
},
|
|
854
956
|
"cdk8s.Chart": {
|
|
855
957
|
"assembly": "cdk8s",
|
|
@@ -1037,7 +1139,8 @@
|
|
|
1037
1139
|
"primitive": "string"
|
|
1038
1140
|
}
|
|
1039
1141
|
}
|
|
1040
|
-
]
|
|
1142
|
+
],
|
|
1143
|
+
"symbolId": "src/chart:Chart"
|
|
1041
1144
|
},
|
|
1042
1145
|
"cdk8s.ChartProps": {
|
|
1043
1146
|
"assembly": "cdk8s",
|
|
@@ -1095,7 +1198,8 @@
|
|
|
1095
1198
|
"primitive": "string"
|
|
1096
1199
|
}
|
|
1097
1200
|
}
|
|
1098
|
-
]
|
|
1201
|
+
],
|
|
1202
|
+
"symbolId": "src/chart:ChartProps"
|
|
1099
1203
|
},
|
|
1100
1204
|
"cdk8s.DependencyGraph": {
|
|
1101
1205
|
"assembly": "cdk8s",
|
|
@@ -1168,7 +1272,8 @@
|
|
|
1168
1272
|
"fqn": "cdk8s.DependencyVertex"
|
|
1169
1273
|
}
|
|
1170
1274
|
}
|
|
1171
|
-
]
|
|
1275
|
+
],
|
|
1276
|
+
"symbolId": "src/dependency:DependencyGraph"
|
|
1172
1277
|
},
|
|
1173
1278
|
"cdk8s.DependencyVertex": {
|
|
1174
1279
|
"assembly": "cdk8s",
|
|
@@ -1306,7 +1411,8 @@
|
|
|
1306
1411
|
"fqn": "constructs.IConstruct"
|
|
1307
1412
|
}
|
|
1308
1413
|
}
|
|
1309
|
-
]
|
|
1414
|
+
],
|
|
1415
|
+
"symbolId": "src/dependency:DependencyVertex"
|
|
1310
1416
|
},
|
|
1311
1417
|
"cdk8s.Duration": {
|
|
1312
1418
|
"assembly": "cdk8s",
|
|
@@ -1662,7 +1768,8 @@
|
|
|
1662
1768
|
}
|
|
1663
1769
|
}
|
|
1664
1770
|
],
|
|
1665
|
-
"name": "Duration"
|
|
1771
|
+
"name": "Duration",
|
|
1772
|
+
"symbolId": "src/duration:Duration"
|
|
1666
1773
|
},
|
|
1667
1774
|
"cdk8s.GroupVersionKind": {
|
|
1668
1775
|
"assembly": "cdk8s",
|
|
@@ -1710,7 +1817,8 @@
|
|
|
1710
1817
|
"primitive": "string"
|
|
1711
1818
|
}
|
|
1712
1819
|
}
|
|
1713
|
-
]
|
|
1820
|
+
],
|
|
1821
|
+
"symbolId": "src/api-object:GroupVersionKind"
|
|
1714
1822
|
},
|
|
1715
1823
|
"cdk8s.Helm": {
|
|
1716
1824
|
"assembly": "cdk8s",
|
|
@@ -1772,7 +1880,8 @@
|
|
|
1772
1880
|
"primitive": "string"
|
|
1773
1881
|
}
|
|
1774
1882
|
}
|
|
1775
|
-
]
|
|
1883
|
+
],
|
|
1884
|
+
"symbolId": "src/helm:Helm"
|
|
1776
1885
|
},
|
|
1777
1886
|
"cdk8s.HelmProps": {
|
|
1778
1887
|
"assembly": "cdk8s",
|
|
@@ -1890,7 +1999,8 @@
|
|
|
1890
1999
|
}
|
|
1891
2000
|
}
|
|
1892
2001
|
}
|
|
1893
|
-
]
|
|
2002
|
+
],
|
|
2003
|
+
"symbolId": "src/helm:HelmProps"
|
|
1894
2004
|
},
|
|
1895
2005
|
"cdk8s.IAnyProducer": {
|
|
1896
2006
|
"assembly": "cdk8s",
|
|
@@ -1921,7 +2031,8 @@
|
|
|
1921
2031
|
}
|
|
1922
2032
|
}
|
|
1923
2033
|
],
|
|
1924
|
-
"name": "IAnyProducer"
|
|
2034
|
+
"name": "IAnyProducer",
|
|
2035
|
+
"symbolId": "src/lazy:IAnyProducer"
|
|
1925
2036
|
},
|
|
1926
2037
|
"cdk8s.Include": {
|
|
1927
2038
|
"assembly": "cdk8s",
|
|
@@ -1988,7 +2099,8 @@
|
|
|
1988
2099
|
}
|
|
1989
2100
|
}
|
|
1990
2101
|
}
|
|
1991
|
-
]
|
|
2102
|
+
],
|
|
2103
|
+
"symbolId": "src/include:Include"
|
|
1992
2104
|
},
|
|
1993
2105
|
"cdk8s.IncludeProps": {
|
|
1994
2106
|
"assembly": "cdk8s",
|
|
@@ -2021,7 +2133,8 @@
|
|
|
2021
2133
|
"primitive": "string"
|
|
2022
2134
|
}
|
|
2023
2135
|
}
|
|
2024
|
-
]
|
|
2136
|
+
],
|
|
2137
|
+
"symbolId": "src/include:IncludeProps"
|
|
2025
2138
|
},
|
|
2026
2139
|
"cdk8s.JsonPatch": {
|
|
2027
2140
|
"assembly": "cdk8s",
|
|
@@ -2270,7 +2383,8 @@
|
|
|
2270
2383
|
"static": true
|
|
2271
2384
|
}
|
|
2272
2385
|
],
|
|
2273
|
-
"name": "JsonPatch"
|
|
2386
|
+
"name": "JsonPatch",
|
|
2387
|
+
"symbolId": "src/json-patch:JsonPatch"
|
|
2274
2388
|
},
|
|
2275
2389
|
"cdk8s.Lazy": {
|
|
2276
2390
|
"assembly": "cdk8s",
|
|
@@ -2324,7 +2438,8 @@
|
|
|
2324
2438
|
}
|
|
2325
2439
|
}
|
|
2326
2440
|
],
|
|
2327
|
-
"name": "Lazy"
|
|
2441
|
+
"name": "Lazy",
|
|
2442
|
+
"symbolId": "src/lazy:Lazy"
|
|
2328
2443
|
},
|
|
2329
2444
|
"cdk8s.NameOptions": {
|
|
2330
2445
|
"assembly": "cdk8s",
|
|
@@ -2418,7 +2533,8 @@
|
|
|
2418
2533
|
"primitive": "number"
|
|
2419
2534
|
}
|
|
2420
2535
|
}
|
|
2421
|
-
]
|
|
2536
|
+
],
|
|
2537
|
+
"symbolId": "src/names:NameOptions"
|
|
2422
2538
|
},
|
|
2423
2539
|
"cdk8s.Names": {
|
|
2424
2540
|
"assembly": "cdk8s",
|
|
@@ -2520,7 +2636,130 @@
|
|
|
2520
2636
|
"static": true
|
|
2521
2637
|
}
|
|
2522
2638
|
],
|
|
2523
|
-
"name": "Names"
|
|
2639
|
+
"name": "Names",
|
|
2640
|
+
"symbolId": "src/names:Names"
|
|
2641
|
+
},
|
|
2642
|
+
"cdk8s.OwnerReference": {
|
|
2643
|
+
"assembly": "cdk8s",
|
|
2644
|
+
"datatype": true,
|
|
2645
|
+
"docs": {
|
|
2646
|
+
"remarks": "An owning object must be in the same namespace as the dependent, or\nbe cluster-scoped, so there is no namespace field.",
|
|
2647
|
+
"stability": "stable",
|
|
2648
|
+
"summary": "OwnerReference contains enough information to let you identify an owning object."
|
|
2649
|
+
},
|
|
2650
|
+
"fqn": "cdk8s.OwnerReference",
|
|
2651
|
+
"kind": "interface",
|
|
2652
|
+
"locationInModule": {
|
|
2653
|
+
"filename": "src/metadata.ts",
|
|
2654
|
+
"line": 234
|
|
2655
|
+
},
|
|
2656
|
+
"name": "OwnerReference",
|
|
2657
|
+
"properties": [
|
|
2658
|
+
{
|
|
2659
|
+
"abstract": true,
|
|
2660
|
+
"docs": {
|
|
2661
|
+
"stability": "stable",
|
|
2662
|
+
"summary": "API version of the referent."
|
|
2663
|
+
},
|
|
2664
|
+
"immutable": true,
|
|
2665
|
+
"locationInModule": {
|
|
2666
|
+
"filename": "src/metadata.ts",
|
|
2667
|
+
"line": 238
|
|
2668
|
+
},
|
|
2669
|
+
"name": "apiVersion",
|
|
2670
|
+
"type": {
|
|
2671
|
+
"primitive": "string"
|
|
2672
|
+
}
|
|
2673
|
+
},
|
|
2674
|
+
{
|
|
2675
|
+
"abstract": true,
|
|
2676
|
+
"docs": {
|
|
2677
|
+
"see": "https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
|
|
2678
|
+
"stability": "stable",
|
|
2679
|
+
"summary": "Kind of the referent."
|
|
2680
|
+
},
|
|
2681
|
+
"immutable": true,
|
|
2682
|
+
"locationInModule": {
|
|
2683
|
+
"filename": "src/metadata.ts",
|
|
2684
|
+
"line": 262
|
|
2685
|
+
},
|
|
2686
|
+
"name": "kind",
|
|
2687
|
+
"type": {
|
|
2688
|
+
"primitive": "string"
|
|
2689
|
+
}
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
"abstract": true,
|
|
2693
|
+
"docs": {
|
|
2694
|
+
"see": "http://kubernetes.io/docs/user-guide/identifiers#names",
|
|
2695
|
+
"stability": "stable",
|
|
2696
|
+
"summary": "Name of the referent."
|
|
2697
|
+
},
|
|
2698
|
+
"immutable": true,
|
|
2699
|
+
"locationInModule": {
|
|
2700
|
+
"filename": "src/metadata.ts",
|
|
2701
|
+
"line": 269
|
|
2702
|
+
},
|
|
2703
|
+
"name": "name",
|
|
2704
|
+
"type": {
|
|
2705
|
+
"primitive": "string"
|
|
2706
|
+
}
|
|
2707
|
+
},
|
|
2708
|
+
{
|
|
2709
|
+
"abstract": true,
|
|
2710
|
+
"docs": {
|
|
2711
|
+
"see": "http://kubernetes.io/docs/user-guide/identifiers#uids",
|
|
2712
|
+
"stability": "stable",
|
|
2713
|
+
"summary": "UID of the referent."
|
|
2714
|
+
},
|
|
2715
|
+
"immutable": true,
|
|
2716
|
+
"locationInModule": {
|
|
2717
|
+
"filename": "src/metadata.ts",
|
|
2718
|
+
"line": 276
|
|
2719
|
+
},
|
|
2720
|
+
"name": "uid",
|
|
2721
|
+
"type": {
|
|
2722
|
+
"primitive": "string"
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
"abstract": true,
|
|
2727
|
+
"docs": {
|
|
2728
|
+
"default": "false. To set this field, a user needs \"delete\" permission of the\nowner, otherwise 422 (Unprocessable Entity) will be returned.",
|
|
2729
|
+
"remarks": "Defaults to false. To set this field, a user needs \"delete\"\npermission of the owner, otherwise 422 (Unprocessable Entity) will be\nreturned.",
|
|
2730
|
+
"stability": "stable",
|
|
2731
|
+
"summary": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed."
|
|
2732
|
+
},
|
|
2733
|
+
"immutable": true,
|
|
2734
|
+
"locationInModule": {
|
|
2735
|
+
"filename": "src/metadata.ts",
|
|
2736
|
+
"line": 250
|
|
2737
|
+
},
|
|
2738
|
+
"name": "blockOwnerDeletion",
|
|
2739
|
+
"optional": true,
|
|
2740
|
+
"type": {
|
|
2741
|
+
"primitive": "boolean"
|
|
2742
|
+
}
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"abstract": true,
|
|
2746
|
+
"docs": {
|
|
2747
|
+
"stability": "stable",
|
|
2748
|
+
"summary": "If true, this reference points to the managing controller."
|
|
2749
|
+
},
|
|
2750
|
+
"immutable": true,
|
|
2751
|
+
"locationInModule": {
|
|
2752
|
+
"filename": "src/metadata.ts",
|
|
2753
|
+
"line": 255
|
|
2754
|
+
},
|
|
2755
|
+
"name": "controller",
|
|
2756
|
+
"optional": true,
|
|
2757
|
+
"type": {
|
|
2758
|
+
"primitive": "boolean"
|
|
2759
|
+
}
|
|
2760
|
+
}
|
|
2761
|
+
],
|
|
2762
|
+
"symbolId": "src/metadata:OwnerReference"
|
|
2524
2763
|
},
|
|
2525
2764
|
"cdk8s.Size": {
|
|
2526
2765
|
"assembly": "cdk8s",
|
|
@@ -2792,7 +3031,8 @@
|
|
|
2792
3031
|
}
|
|
2793
3032
|
}
|
|
2794
3033
|
],
|
|
2795
|
-
"name": "Size"
|
|
3034
|
+
"name": "Size",
|
|
3035
|
+
"symbolId": "src/size:Size"
|
|
2796
3036
|
},
|
|
2797
3037
|
"cdk8s.SizeConversionOptions": {
|
|
2798
3038
|
"assembly": "cdk8s",
|
|
@@ -2827,7 +3067,8 @@
|
|
|
2827
3067
|
"fqn": "cdk8s.SizeRoundingBehavior"
|
|
2828
3068
|
}
|
|
2829
3069
|
}
|
|
2830
|
-
]
|
|
3070
|
+
],
|
|
3071
|
+
"symbolId": "src/size:SizeConversionOptions"
|
|
2831
3072
|
},
|
|
2832
3073
|
"cdk8s.SizeRoundingBehavior": {
|
|
2833
3074
|
"assembly": "cdk8s",
|
|
@@ -2865,7 +3106,8 @@
|
|
|
2865
3106
|
"name": "NONE"
|
|
2866
3107
|
}
|
|
2867
3108
|
],
|
|
2868
|
-
"name": "SizeRoundingBehavior"
|
|
3109
|
+
"name": "SizeRoundingBehavior",
|
|
3110
|
+
"symbolId": "src/size:SizeRoundingBehavior"
|
|
2869
3111
|
},
|
|
2870
3112
|
"cdk8s.Testing": {
|
|
2871
3113
|
"assembly": "cdk8s",
|
|
@@ -2954,7 +3196,8 @@
|
|
|
2954
3196
|
"static": true
|
|
2955
3197
|
}
|
|
2956
3198
|
],
|
|
2957
|
-
"name": "Testing"
|
|
3199
|
+
"name": "Testing",
|
|
3200
|
+
"symbolId": "src/testing:Testing"
|
|
2958
3201
|
},
|
|
2959
3202
|
"cdk8s.TimeConversionOptions": {
|
|
2960
3203
|
"assembly": "cdk8s",
|
|
@@ -2989,7 +3232,8 @@
|
|
|
2989
3232
|
"primitive": "boolean"
|
|
2990
3233
|
}
|
|
2991
3234
|
}
|
|
2992
|
-
]
|
|
3235
|
+
],
|
|
3236
|
+
"symbolId": "src/duration:TimeConversionOptions"
|
|
2993
3237
|
},
|
|
2994
3238
|
"cdk8s.Yaml": {
|
|
2995
3239
|
"assembly": "cdk8s",
|
|
@@ -3139,7 +3383,8 @@
|
|
|
3139
3383
|
"static": true
|
|
3140
3384
|
}
|
|
3141
3385
|
],
|
|
3142
|
-
"name": "Yaml"
|
|
3386
|
+
"name": "Yaml",
|
|
3387
|
+
"symbolId": "src/yaml:Yaml"
|
|
3143
3388
|
},
|
|
3144
3389
|
"cdk8s.YamlOutputType": {
|
|
3145
3390
|
"assembly": "cdk8s",
|
|
@@ -3176,9 +3421,10 @@
|
|
|
3176
3421
|
"name": "FILE_PER_RESOURCE"
|
|
3177
3422
|
}
|
|
3178
3423
|
],
|
|
3179
|
-
"name": "YamlOutputType"
|
|
3424
|
+
"name": "YamlOutputType",
|
|
3425
|
+
"symbolId": "src/app:YamlOutputType"
|
|
3180
3426
|
}
|
|
3181
3427
|
},
|
|
3182
|
-
"version": "1.
|
|
3183
|
-
"fingerprint": "
|
|
3428
|
+
"version": "1.1.3",
|
|
3429
|
+
"fingerprint": "4kbVHSC1S2nuDWjRM2pcyYrA4+uvGmewox2WeG9PqZc="
|
|
3184
3430
|
}
|
package/README.md
CHANGED
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
### Cloud Development Kit for Kubernetes
|
|
4
4
|
|
|
5
|
-

|
|
6
5
|
[](https://github.com/cdk8s-team/cdk8s-core/actions/workflows/release.yml)
|
|
7
6
|
[](https://badge.fury.io/js/cdk8s)
|
|
8
7
|
[](https://badge.fury.io/py/cdk8s)
|
|
9
|
-
[](https://badge.fury.io/nu/Org.Cdk8s)
|
|
10
8
|
[](https://maven-badges.herokuapp.com/maven-central/org.cdk8s/cdk8s)
|
|
11
9
|
|
|
12
10
|
**cdk8s** is a software development framework for defining Kubernetes
|