We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff62f7 commit e17a60eCopy full SHA for e17a60e
1 file changed
kp_pre_commit_hooks/gitops-values-validation.py
@@ -172,7 +172,9 @@ def main():
172
f"\nERROR: Validation errors for {service_path} in {instance_file}, {base_file} or values.yaml:"
173
)
174
for error in errors:
175
- error_location = "/".join(find_full_error_path(error)) or "the root"
+ print(find_full_error_path(error))
176
+ #error_location = "/".join(find_full_error_path(error)) or "the root"
177
+ error_location = "/".join(str(x) for x in find_full_error_path(error)) or "the root"
178
print(f" - {error.message} at {error_location}")
179
180
output_file = service_path / f"error-merged-{instance_file}"
0 commit comments