The documented workaround in #37 doesn't seem to get passed through the HTTP client.
I posted a wrapper cookbook against the chef-server cookbook to bootstrap users (and organizations eventually) in https://gist.github.com/aespinosa/62bf4801ac570ab76f47a644b793b194
I have done various ways of adding ssl_verify_mode and none seem to work. So far I have tried the following
- put
Chef::Config.ssl_verify_mode inside a ruby_block
- put the whole
chef_server parameter inside a lazy { Chef::Config.ssl_verify_mode ... } block
The documented workaround in #37 doesn't seem to get passed through the HTTP client.
I posted a wrapper cookbook against the chef-server cookbook to bootstrap users (and organizations eventually) in https://gist.github.com/aespinosa/62bf4801ac570ab76f47a644b793b194
I have done various ways of adding ssl_verify_mode and none seem to work. So far I have tried the following
Chef::Config.ssl_verify_modeinside aruby_blockchef_serverparameter inside alazy { Chef::Config.ssl_verify_mode ... }block