Skip to content

Commit

Permalink
Update aws-eks/helm-chart docs & --wait default
Browse files Browse the repository at this point in the history
Co-Authored-By: Elad Ben-Israel <benisrae@amazon.com>
  • Loading branch information
michaelmoussa and Elad Ben-Israel committed Feb 17, 2020
1 parent 40b66cd commit 44112d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-eks/lib/helm-chart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class HelmChart extends Construct {
Release: props.release || this.node.uniqueId.slice(-53).toLowerCase(), // Helm has a 53 character limit for the name
Chart: props.chart,
Version: props.version,
Wait: props.wait || false,
Wait: props.wait === 'undefined' ? false : props.wait,
Values: (props.values ? stack.toJsonString(props.values) : undefined),
Namespace: props.namespace || 'default',
Repository: props.repository
Expand Down

0 comments on commit 44112d3

Please sign in to comment.