You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The REGISTRY_MIRRORS param merely allows defining the hosts. But the buildkit config also has fields http = true|false and insecure = true|false that allow resolving situations where the mirror doesn't support full HTTPS (e.g. an internal deployment).
Describe the solution you'd like
Expose additional variables to set http and insecure fields for repository mirrors.
Describe alternatives you've considered
The only alternative that comes to mind is to figure out how to bake a static buildkitd.toml into a custom version of this resource.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Params like `REGISTRY_MIRRORS` don't really scale well to cover
a complex schema like buildkit's toml configuration. Plus, they
can become out-of-date.
A param whose content is written verbatim to the config file
allows defining everything the configuration has to offer, now
and in the future. It also avoids having to add new params one by
one as users request the ability to configure individual values.
Closes: concourse#120
Params like `REGISTRY_MIRRORS` don't really scale well to cover
a complex schema like buildkit's toml configuration. Plus, they
can become out-of-date.
A param whose content is written verbatim to the config file
allows defining everything the configuration has to offer, now
and in the future. It also avoids having to add new params one by
one as users request the ability to configure individual values.
Closes: concourse#120
Signed-off-by: Lucas Schwiderski <[email protected]>
Is your feature request related to a problem? Please describe.
The
REGISTRY_MIRRORS
param merely allows defining the hosts. But the buildkit config also has fieldshttp = true|false
andinsecure = true|false
that allow resolving situations where the mirror doesn't support full HTTPS (e.g. an internal deployment).Describe the solution you'd like
Expose additional variables to set
http
andinsecure
fields for repository mirrors.Describe alternatives you've considered
The only alternative that comes to mind is to figure out how to bake a static
buildkitd.toml
into a custom version of this resource.Additional context
No response
The text was updated successfully, but these errors were encountered: