-
Notifications
You must be signed in to change notification settings - Fork 88
Labels
Team PromotedIssues to be triaged and discussed by committers, maintainers, to be worked on the following sprintIssues to be triaged and discussed by committers, maintainers, to be worked on the following sprintbugSomething isn't workingSomething isn't workinginternalFor changes that affect the project's internal workings but not its outward-facing functionality.For changes that affect the project's internal workings but not its outward-facing functionality.
Milestone
Description
Description
Currently, the charts CI job fails due to lint errors in YAML files. The errors include:
- Incorrect comment formatting: “too few spaces before comment” (e.g., lines 71 and 177).
- Failed linting process: The validation of Helm charts (hedera-json-rpc-relay and hedera-json-rpc-relay-websocket) fails, causing the CI pipeline to exit with status code 1.
The error details are visible in GitHub Actions logs and can be reproduced by running the linting process locally.
Steps to Reproduce
- Push changes or trigger a GitHub Actions workflow that includes YAML linting.
- Observe the failure in the linting step for values.yaml.
Proposed Solution
- Fix comment formatting issues by ensuring proper spacing before comments in YAML files.
- Maybe move the comment to the top of the statement instead of the side
For example, instead of
postman: '' # Custom postman.json in base64 encodingMove it to the top
# Custom postman.json in base64 encoding
postman: ''Metadata
Metadata
Assignees
Labels
Team PromotedIssues to be triaged and discussed by committers, maintainers, to be worked on the following sprintIssues to be triaged and discussed by committers, maintainers, to be worked on the following sprintbugSomething isn't workingSomething isn't workinginternalFor changes that affect the project's internal workings but not its outward-facing functionality.For changes that affect the project's internal workings but not its outward-facing functionality.