Releases: cdk8s-team/cdk8s
Releases · cdk8s-team/cdk8s
v0.15.0
v0.14.0
v0.13.1
v0.13.0
This release adds Python support for cdk8s and includes;
- The
cdk8s
library is released to PyPI cdk8s init python-app
creates new Python appscdk8s import
generates python classes for Kubernetes API objects
⚠ BREAKING CHANGES
- cli:
cdk8s import
now generates a single file with all types, which means you will have to modify TypeScript code toimport { Deployment, Pod, ... } from './imports/k8s'
instead of importing multiple files. - cli:
cdk8s gen
is nowcdk8s import k8s
and output goes toimports/k8s.ts
instead of.gen/index.ts
.
Features
- cli: "cdk8s gen" is now "cdk8s import k8s" (#43) (fb9e0b5), closes #31 #40
- cli: "cdk8s synth" (#44) (d457ea9), closes #41
- cli: cdk8s.yaml (#52) (e6834d3), closes #42
- cli: import only one class for every api object (#39) (2db4cfb)
- cli: python project template (#36) (30f3bb7)
- cli: python support for "import" (#47) (3b93d64)
- cli: typescript project - "npm run upgrade" & "upgrade:next" (735e840)
- cli: typescript project - "npm run build" now includes "synth" (7b15e3a)
- docs: getting started in python (#60) (27d3bac)
- examples: updates to hello-world example and directory reorganization (#33) (1c8f694)