-
Notifications
You must be signed in to change notification settings - Fork 402
Add support for cloud-init ca-certs field #744
Comments
The workaround in #518 should be something you can capture in a
|
Was this closed because a workaround exists, or because there has been an affirmative decision to reject the feature request? Personally I'd still like to see k3os support the standard cloud-init |
@dweomer I was wondering about the reasoning behind closing this issue? Was it closed simply because a workaround exists, or was it closed because there has been an affirmative decision to reject the feature request? Personally I'd still like to see k3os support the standard cloud-init |
@philomory apologies for missing your original follow-up: I am happy to re-open this but I must also admit that I do not foresee working on this anytime soon. It would definitely be nice to have! |
Is your feature request related to a problem? Please describe.
I'd like to add a private CA as a trusted root to k3os. Cloud-init provides a way to accomplish this, via the
ca-certs
parameter, but k3os doesn't seem to support this parameter.Describe the solution you'd like
I'd like k3os to support using
ca-certs.trusted
in the cloud-init data to add trusted root CAs (while leaving the existing trusted roots in place unlessca-certs.remove-defaults
is set totrue
).Describe alternatives you've considered
I considered manually adding the certificate using
write_files
, but this is difficult to do correctly due to a bug in k3os's implementation ofupdate-ca-certificates
(#518).The text was updated successfully, but these errors were encountered: