Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions helm/resource_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -978,6 +978,10 @@ func resourceDiff(ctx context.Context, d *schema.ResourceDiff, meta interface{})
debug(`cluster was unreachable at create time, marking "manifest" as computed`)
return d.SetNewComputed("manifest")
}
if strings.Contains(err.Error(), "ensure CRDs are installed first") {
debug(`some CRDs are not (yet) installed, marking "manifest" as computed`)
return d.SetNewComputed("manifest")
}
return err
}

Expand Down