It seems there are no existing GitHub issues related to the "unclosed action" error during a Helm installation of a Prefect worker. This error typically indicates a syntax problem in the Helm chart templates, such as a missing closing brace or delimiter in a template file.
Here are a few steps you can take to troubleshoot and potentially resolve the issue:
1.
Inspect the Template: Check the file
prefect-worker/charts/common/templates/_resources.tpl
around line 15 for any unclosed braces (
{{
or
}}
) or other syntax issues.
2.
Validate YAML: Ensure that the YAML syntax is correct in your Helm chart. Use a YAML validator to catch any syntax errors.
3.
Update Helm Charts: Make sure you are using the latest version of the Prefect Helm chart. Sometimes, issues are fixed in newer releases.
4.
Check Dependencies: If the chart depends on other charts, ensure that all dependencies are correctly installed and up-to-date.
If you continue to face the issue, consider reaching out to the Prefect community or checking the Prefect Slack for more specific guidance.