File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
rust/operator-binary/src/backend/tls Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ All notable changes to this project will be documented in this file.
24
24
### Fixed
25
25
26
26
- Underscores are now allowed in Kerberos principal names ([ #563 ] ).
27
+ - The issuer in generated TLS certificates is set to the subject of the issuing
28
+ certificate ([ #566 ] ).
27
29
28
30
[ #528 ] : https://github.com/stackabletech/secret-operator/pull/528
29
31
[ #544 ] : https://github.com/stackabletech/secret-operator/pull/544
@@ -32,6 +34,7 @@ All notable changes to this project will be documented in this file.
32
34
[ #552 ] : https://github.com/stackabletech/secret-operator/pull/552
33
35
[ #563 ] : https://github.com/stackabletech/secret-operator/pull/563
34
36
[ #564 ] : https://github.com/stackabletech/secret-operator/pull/564
37
+ [ #566 ] : https://github.com/stackabletech/secret-operator/pull/566
35
38
[ #569 ] : https://github.com/stackabletech/secret-operator/pull/569
36
39
37
40
## [ 24.11.1] - 2025-01-10
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ impl SecretBackend for TlsGenerate {
273
273
} ) ?
274
274
. build ( ) ;
275
275
x509. set_subject_name ( & subject_name) ?;
276
- x509. set_issuer_name ( ca. certificate . issuer_name ( ) ) ?;
276
+ x509. set_issuer_name ( ca. certificate . subject_name ( ) ) ?;
277
277
x509. set_not_before ( Asn1Time :: from_unix ( not_before. unix_timestamp ( ) ) ?. as_ref ( ) ) ?;
278
278
x509. set_not_after ( Asn1Time :: from_unix ( not_after. unix_timestamp ( ) ) ?. as_ref ( ) ) ?;
279
279
x509. set_pubkey ( & pod_key) ?;
You can’t perform that action at this time.
0 commit comments