Describe the feature
I would like the helm chart properties (at least: chart, repository, version) to be available in the HelmChart construct after instantiation.
Use Case
I was looking at writing an aspect that I wanted to use to inspect all helm charts added in our CDK stacks
Proposed Solution
Add and populate the properties in the HelmChart
export class HelmChart extends Construct {
public abstract readonly chart: string;
public abstract readonly repository: string;
public abstract readonly version: string;
public abstract readonly chartAsset: Asset;
....
Other Information
No response
Acknowledgements
CDK version used
2.90.0
Environment details (OS name and version, etc.)
Windows
Describe the feature
I would like the helm chart properties (at least: chart, repository, version) to be available in the HelmChart construct after instantiation.
Use Case
I was looking at writing an aspect that I wanted to use to inspect all helm charts added in our CDK stacks
Proposed Solution
Add and populate the properties in the HelmChart
Other Information
No response
Acknowledgements
CDK version used
2.90.0
Environment details (OS name and version, etc.)
Windows