Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[configuration] Specify YAML schema that configuration files should follow #3973

Merged
merged 11 commits into from
May 7, 2024
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ release.

- Clarify environment variable substitution is not recursive
([#3913](https://github.com/open-telemetry/opentelemetry-specification/pull/3913))
- Clarify the schema for YAML configuration files
([#3973](https://github.com/open-telemetry/opentelemetry-specification/pull/3973))

### Common

Expand Down
2 changes: 1 addition & 1 deletion specification/configuration/file-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Configuration files SHOULD use one the following serialization formats:
### YAML file format

[YAML](https://yaml.org/spec/1.2.2/) configuration files SHOULD follow YAML spec
revision >= 1.2.
revision >= 1.2 and SHOULD use the [v1.2 YAML core schema](https://yaml.org/spec/1.2.2/#103-core-schema).
jack-berg marked this conversation as resolved.
Show resolved Hide resolved
mx-psi marked this conversation as resolved.
Show resolved Hide resolved

YAML configuration files MUST use file extensions `.yaml` or `.yml`.

Expand Down
Loading