Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ All notable changes to this project will be documented in this file.
### Fixed

- Underscores are now allowed in Kerberos principal names ([#563]).
- The issuer in generated TLS certificates is set to the subject of the issuing
certificate ([#566]).

[#528]: https://github.com/stackabletech/secret-operator/pull/528
[#544]: https://github.com/stackabletech/secret-operator/pull/544
Expand All @@ -32,6 +34,7 @@ All notable changes to this project will be documented in this file.
[#552]: https://github.com/stackabletech/secret-operator/pull/552
[#563]: https://github.com/stackabletech/secret-operator/pull/563
[#564]: https://github.com/stackabletech/secret-operator/pull/564
[#566]: https://github.com/stackabletech/secret-operator/pull/566
[#569]: https://github.com/stackabletech/secret-operator/pull/569

## [24.11.1] - 2025-01-10
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/backend/tls/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ impl SecretBackend for TlsGenerate {
})?
.build();
x509.set_subject_name(&subject_name)?;
x509.set_issuer_name(ca.certificate.issuer_name())?;
x509.set_issuer_name(ca.certificate.subject_name())?;
x509.set_not_before(Asn1Time::from_unix(not_before.unix_timestamp())?.as_ref())?;
x509.set_not_after(Asn1Time::from_unix(not_after.unix_timestamp())?.as_ref())?;
x509.set_pubkey(&pod_key)?;
Expand Down
Loading