From 44112d341848909d0b3af890113d47b94d5345a7 Mon Sep 17 00:00:00 2001 From: Michael Moussa Date: Mon, 17 Feb 2020 13:53:14 -0500 Subject: [PATCH] Update aws-eks/helm-chart docs & --wait default Co-Authored-By: Elad Ben-Israel --- packages/@aws-cdk/aws-eks/lib/helm-chart.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-eks/lib/helm-chart.ts b/packages/@aws-cdk/aws-eks/lib/helm-chart.ts index c3de0d2d7889b..593cf6f0a511c 100644 --- a/packages/@aws-cdk/aws-eks/lib/helm-chart.ts +++ b/packages/@aws-cdk/aws-eks/lib/helm-chart.ts @@ -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