Mohamed Akram Lahdir
09/25/2024, 10:13 AMsudo abctl local install -v --values abctl_config/values.yaml --secret abctl_config/config-secret.yaml
but im getting this error
unable to install airbyte chart: unable to install helm: YAML parse error on airbyte/charts/server/templates/deployment.yaml: error converting YAML to JSON: yaml: line 214: could not find expected ':'
i didnt change the values and secrets files that worked in the previuos deploymentuser
09/25/2024, 10:13 AMdeployment.yaml
file. This could be due to a variety of reasons such as incorrect indentation, missing a colon, or having an extra space. Unfortunately, the provided knowledge sources do not contain specific information about the deployment.yaml
file or the exact error you're encountering. However, they do provide some general advice on troubleshooting YAML files and Helm installations. Firstly, ensure that you are in the correct directory or informing the path to the file correctly. If the file is not found or cannot be read, you will encounter errors ([source](https://docs.airbyte.com/deploying-airbyte/troubleshoot-deploy#unable-to-read-values-from-yaml-file)). Secondly, you might want to verify the contents of your values.yaml
file. This file is used to override specific parts of the Helm Chart for your Airbyte installation. Make sure you only provide the specific overrides and that the syntax is correct ([source](https://docs.airbyte.com/deploying-airbyte/#3-create-a-valuesyaml-override-file)). If the issue persists, it might be helpful to compare your values.yaml
and deployment.yaml
files with the examples provided in the Airbyte documentation or repository. You can find an example values.yaml
file in the [charts/airbyte](https://github.com/airbytehq/airbyte-platform/blob/main/charts/airbyte/values.yaml) folder of the Airbyte repository ([source](https://docs.airbyte.com/enterprise-setup/implementation-guide#customizing-your-deployment)). If you're still having trouble, consider reaching out to the Airbyte community on their [GitHub Discussions](https://github.com/airbytehq/airbyte/discussions) page or opening a new issue if you believe this is a bug.