The ProtoConfig 1.0
is an open, language agnostic specification that describes a process of using, defining, and consuming software configuration input in a unified way.
Like OpenAPI but for Configuration!
Designed to support all popular configuration patterns: Cloud Native Configuration as a Code
, robust command line interfaces (CLI), static or dynamic configurability as well as remote configuration APIs.
The ProtoConfig 1.0
standardises application configuration, by describing the process as follows:
- Application developer creates a .proto file with
Configuration Proto Definition
, that defines what exactly options application has. - Thanks to the single source of truth for your app configuration, a developer can generate a data structure in the language they need. Such structs/classes can be then used to parse incoming input in native proto or JSON encoding (for example from
stdin
, CLI flag or HTTP API, etc).
ProtoConfig
allows generation extensibility, so such definition can be also used to generate documentation,--help
,man
, custom types, or even whole CLI flag & args parsing code. Options are unlimited!
- Following the
ProtoConfig
convention, a human or program can now configure the application either by specifying JSON manually or by generating (again) data structure fromConfiguration Proto Definition
in the programming language they want. Such struct/class is typed (if a language is typed), have a valid format, have help commentaries and can be encoded toprotobuf
supported format and passed to theconfigurable
application!
ProtoConfig 1.0
standard specifies that every ProtoConfig 1.0
compatible application accepts encoded protobuf
in proto or JSON format as the way of configuring itself. Either as the only way or in addition to other conventions (e.g args and flags).
Configure software in a way that is:
- Discoverable and Type-Safe: We don't need to guess or read complex documentations to know application configuration format, invariants, and assumptions Configuration is defined by a single, typed proto package.
- Allows Auto Generation: We don't need to manually implement application client or data format to encode and similarly data format to parse. All can be safely generated thanks to
protobuf
in almost any programming language, thanks to the wide plugin ecosystem. Additionally, you can generate a full CLI flag paring code or even documentation(!). It also means the smallest, possible impact in the event of application upgrade or modification. Type, Default, or even Help changed can be easily tracked in any language. - Easy to Verify: Non-semantic verification and validation (e.g ) do not require executable participation. No need for CLI --dry-run logic, or even invoking anything external. All can be validated from the point of
protobuf
. https://github.com/envoyproxy/protoc-gen-validate - Backward & Forward Compatible: Smooth version migrations, thanks to
protobuf
guarantee and safety checkers likebuf check breaking
- Extensible: On top of Proto Config Extensions Format 1.0. this specification allows CLI or language-specific extensions (e.g see
kingpinv2
Go package and its extensions)
See "Configuration in 2021 is still broken" blog post (TBD).
See ./specification#principles.
See ./specification#why-protocol-buffers
See example in Go.
If you are not familiar with Go, this is still a useful example, as the flow and pattern will be similar to any language.
Item | What | Status |
---|---|---|
proto/protoconfig/v1/extensions.proto |
Proto Config Extensions Format 1.0 | Alpha |
proto/examples/helloworld/v1/helloworld.proto |
Example Configuration Proto Definitions (CPD) | Alpha |
go/ |
Go module with (optional) Proto Config Extensions Format 1.0 bindings | Alpha |
go/protoc-gen-go-protoconfig |
Go module with (optional) protogen go plugin supporting Proto Config Extensions Format 1.0 Go language | Alpha |
go/examples |
Go module with (optional) protogen go plugin supporting Proto Config Extensions Format 1.0 Go language | Alpha |
Any help wanted. Do you have an idea, want to help, don't know how to start helping?
Put an issue on this repo, create PR or ping us on the CNCF Slack (@bwplotka
, @brancz
)! 🤗
- OpenConfig: OpenConfig aims for something very similar, however aimed for network management configuration. Defined in
YANG
(some sort ofXML
) instead of more modernprotobuf
which was designed for code generation and IDL. - protoconf: Amazing project inspired by Facebook's Configurator. While sounding similar it's essentially a protobuf based dynamic configuration with its own GitOps pipeline.
ProtoConfig
does not specify how to do dynamic configuration, leaving that to extensions that can be added to specification itself (e.g language specific generator that generates lib for dynamic reloading). - OpenAPI/Swagger: OpenAPI aims for API definitions. Configuration can be treated as some part of the API (payload?), however scoping definition purely for configuration, simplifies the whole topic a lot.
ProtoConfig
does not need to care about status codes, HTTP specifics or actually even OS/Process details.ProtoConfig
can be applied
Help wanted!
- Documentation for using ProtoConfig 1.0 by different language than supported by this repo.
- Documentation for writing ProtoConfig 1.0 plugin for a different language than supported by this repo.
- Publish formal RFC-compatible specification, finish it, add recommendations (e.g package names).
- Document extensibility.
- Add example if any configuration templating engine.
- Large
protobuf
are hard to use. Standard should specify some solution whenEncoded Configuration Message
is larger than Megabytes. - Unit tests.
- Bartek Płotka @bwplotka
- Frederic Branczyk @brancz