Skip to content

Commit

Permalink
Store bundle as well as cert
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche committed Oct 23, 2023
1 parent b82b8ef commit 716431d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fixca/ca.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ def store_ca_certs(self, exclude_system: bool = True) -> None:
set_secret(
namespace=namespace,
secret_name="fix-ca-cert",
data={"ca.pem": cert_to_bytes(self.cert).decode("utf-8")},
data={
"ca.pem": cert_to_bytes(self.cert).decode("utf-8"),
"ca.bundle.pem": gen_ca_bundle_bytes(self.cert).decode("utf-8"),
},
)


Expand Down

0 comments on commit 716431d

Please sign in to comment.