You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/helm/kafka-operator/crds/crds.yaml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -163,6 +163,10 @@ spec:
163
163
nullable: true
164
164
type: boolean
165
165
type: object
166
+
requestedSecretLifetime:
167
+
description: Request secret (currently only autoTls certificates) lifetime from the secret operator, e.g. `7d`, or `30d`. Please note that this can be shortened by the `maxCertificateLifetime` setting on the SecretClass issuing the TLS certificate.
168
+
nullable: true
169
+
type: string
166
170
resources:
167
171
default:
168
172
cpu:
@@ -434,6 +438,10 @@ spec:
434
438
nullable: true
435
439
type: boolean
436
440
type: object
441
+
requestedSecretLifetime:
442
+
description: Request secret (currently only autoTls certificates) lifetime from the secret operator, e.g. `7d`, or `30d`. Please note that this can be shortened by the `maxCertificateLifetime` setting on the SecretClass issuing the TLS certificate.
Copy file name to clipboardExpand all lines: rust/crd/src/lib.rs
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -430,9 +430,17 @@ pub struct KafkaConfig {
430
430
431
431
/// The ListenerClass used for connecting to brokers. Should use a direct connection ListenerClass to minimize cost and minimize performance overhead (such as `cluster-internal` or `external-unstable`).
432
432
pubbroker_listener_class:String,
433
+
434
+
/// Request secret (currently only autoTls certificates) lifetime from the secret operator, e.g. `7d`, or `30d`.
435
+
/// Please note that this can be shortened by the `maxCertificateLifetime` setting on the SecretClass issuing the TLS certificate.
0 commit comments