timonel 2.8.3 → 2.9.1
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 +13 -0
- package/README.md +35 -0
- package/dist/cli.js +255 -680
- package/dist/index.d.ts +4 -1
- package/dist/index.js +4 -1
- package/dist/lib/helmChartWriter.js +26 -4
- package/dist/lib/rutter.d.ts +28 -16
- package/dist/lib/rutter.js +250 -48
- package/dist/lib/templates/basic-chart.d.ts +19 -0
- package/dist/lib/templates/basic-chart.js +189 -0
- package/dist/lib/templates/subchart.d.ts +27 -0
- package/dist/lib/templates/subchart.js +221 -0
- package/dist/lib/templates/umbrella-chart.d.ts +13 -0
- package/dist/lib/templates/umbrella-chart.js +222 -0
- package/dist/lib/types.d.ts +20 -0
- package/dist/lib/types.js +1 -0
- package/dist/lib/utils/helmHelpers.d.ts +18 -2
- package/dist/lib/utils/helmHelpers.js +246 -3
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [2.9.1](https://github.com/KenkoGeek/timonel/compare/v2.9.0...v2.9.1) (2025-09-19)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **deps:** merge conflict solved [skip ci] ([3422464](https://github.com/KenkoGeek/timonel/commit/3422464ddee4a1408019ba4617b6f8e6f6c8fd12))
|
|
6
|
+
- **deps:** upgrade timonel version [skip ci] ([63901ef](https://github.com/KenkoGeek/timonel/commit/63901ef4277a1ebf702fc55337ed1eb7f6b226ea))
|
|
7
|
+
|
|
8
|
+
# [2.9.0](https://github.com/KenkoGeek/timonel/compare/v2.8.3...v2.9.0) (2025-09-17)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **core:** refactor addConditionalManifest to manage helm templates ([520aae1](https://github.com/KenkoGeek/timonel/commit/520aae10e634f40ecdbda5e4a87b7b40b9733053))
|
|
13
|
+
|
|
1
14
|
## [2.8.3](https://github.com/KenkoGeek/timonel/compare/v2.8.2...v2.8.3) (2025-09-15)
|
|
2
15
|
|
|
3
16
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -43,6 +43,41 @@ helm install my-app charts/my-app-dist
|
|
|
43
43
|
|
|
44
44
|
## 📚 Documentation
|
|
45
45
|
|
|
46
|
+
## 🔧 Troubleshooting
|
|
47
|
+
|
|
48
|
+
### CDK8s Module Not Found Error
|
|
49
|
+
|
|
50
|
+
If you get `Error: Cannot find module 'cdk8s'` when running `tl umbrella synth`:
|
|
51
|
+
|
|
52
|
+
**Problem**: Timonel is installed globally, but your project needs CDK8s dependencies locally.
|
|
53
|
+
|
|
54
|
+
**Solution**: Create a `package.json` in your project directory:
|
|
55
|
+
|
|
56
|
+
```json
|
|
57
|
+
{
|
|
58
|
+
"name": "my-timonel-project",
|
|
59
|
+
"version": "1.0.0",
|
|
60
|
+
"type": "module",
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"cdk8s": "^2.70.11",
|
|
63
|
+
"cdk8s-plus-33": "^2.3.5",
|
|
64
|
+
"constructs": "^10.4.2",
|
|
65
|
+
"timonel": "^2.9.0"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@types/node": "^24.3.0",
|
|
69
|
+
"typescript": "^5.9.2"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Then run:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
npm install
|
|
78
|
+
tl umbrella synth # Now it works!
|
|
79
|
+
```
|
|
80
|
+
|
|
46
81
|
## 🤝 Contributing
|
|
47
82
|
|
|
48
83
|
See our [Contributing Guide](https://github.com/KenkoGeek/timonel/wiki/Contributing) for development
|