Hi here,
Just an update on configuration-as-code effort (JEP-201)
I've started implementing schema generation for the configuration-as-code yaml file.
it's only first iteration, so I expect some corner cases, but the main benefits is we will be able to validate this configuration without having to start jenkins and wait for potential failure. Another way to say, is we can check a configuration file will result in a healthy jenkins instance.
jenkins.model.Jenkins: {type: "object",
properties:
{
authorizationStrategy:
{
schema:
{
oneOf:
[
{
loggedInUsersCanDoAnything:
{
}
},
]
}
},