@intentius/chant-lexicon-helm 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +2 -2
- package/dist/manifest.json +1 -1
- package/package.json +1 -1
- package/src/render.ts +4 -1
package/dist/integrity.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"algorithm": "sha256",
|
|
3
3
|
"artifacts": {
|
|
4
|
-
"manifest.json": "
|
|
4
|
+
"manifest.json": "ef5f7e294c0c8b6ca190fe59db119c9a09a62a7707c2b1aa70de6897f7c0fc0a",
|
|
5
5
|
"meta.json": "14243c5730a07c6a6edc35ddd351438547d58df5cf345f2233a355b0c7611ccc",
|
|
6
6
|
"types/index.d.ts": "5377696ca8698cd2999e4680feb8e8e4b54a7b49fb603a87b2f27356114d1794",
|
|
7
7
|
"rules/chart-metadata.ts": "8f3377e893d5e2828460b7fe5924fca098334245a9a2fdb90f6b67e490eaf091",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"skills/chant-helm-patterns.md": "9e79e6a46391da46709d8aa57e2825a7cd9eb981cd923f02ad60836c49b2561e",
|
|
35
35
|
"skills/chant-helm-security.md": "bfc367eabceed2e84f1cf94501b407df78aeed963cec104f24a321d0962063c9"
|
|
36
36
|
},
|
|
37
|
-
"composite": "
|
|
37
|
+
"composite": "794ebe6ec1f86321a5a64cecbd8e8c0fcaa64dd4cb85d7c93562eaff8cd64cf7"
|
|
38
38
|
}
|
package/dist/manifest.json
CHANGED
package/package.json
CHANGED
package/src/render.ts
CHANGED
|
@@ -38,7 +38,10 @@ import { homedir, tmpdir } from "node:os";
|
|
|
38
38
|
import { join } from "node:path";
|
|
39
39
|
|
|
40
40
|
import { Composite } from "@intentius/chant";
|
|
41
|
-
|
|
41
|
+
// Use the k8s lexicon's Deployment as a generic Declarable wrapper for
|
|
42
|
+
// arbitrary K8s manifests. The k8s serializer reads props.apiVersion and
|
|
43
|
+
// props.kind verbatim when set, so the actual class doesn't matter.
|
|
44
|
+
import { Deployment } from "@intentius/chant-lexicon-k8s/generated/index";
|
|
42
45
|
import yaml from "js-yaml";
|
|
43
46
|
|
|
44
47
|
export interface HelmRenderProps {
|