theforeman/foreman · error · ProxyException
Unable to get PuppetCA certificates
Error message
Unable to get PuppetCA certificates
What it means
Error "Unable to get PuppetCA certificates" thrown in theforeman/foreman.
Source
Thrown at app/services/proxy_api/puppet_ca.rb:47
def sign_certificate(certname)
parse(post("", certname))
rescue => e
raise ProxyException.new(url, e, N_("Unable to sign PuppetCA certificate for %s"), certname)
end
def del_certificate(certname)
parse(delete(certname.to_s))
rescue RestClient::ResourceNotFound
# entry doesn't exists anyway
true
rescue => e
raise ProxyException.new(url, e, N_("Unable to delete PuppetCA certificate for %s"), certname)
end
def all
parse(get)
rescue => e
raise ProxyException.new(url, e, N_("Unable to get PuppetCA certificates"))
end
end
end
View on GitHub (pinned to 6b05625475)
When it happens
Trigger: Thrown at app/services/proxy_api/puppet_ca.rb:47 when the library encounters an invalid state.
Common situations: See trigger scenarios.
Understand the failure class
- SSL/TLS and certificate errors — how TLS handshakes and certificate validation fail.
AI-assisted analysis of theforeman/foreman@6b05625475 (2026-08-23).
Data as JSON: /api/errors/136ba9a792753c04.
Report an issue: GitHub.