Skip to content

Commit 7cb9745

Browse files
committed
update docs
1 parent 9950e9f commit 7cb9745

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

deploy/helm/secret-operator/crds/crds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,9 @@ spec:
398398
targetKind:
399399
default: ConfigMap
400400
description: |-
401-
Which Kubernetes resource should be used to output the requested information to.
401+
Which Kubernetes kind should be used to output the requested information to.
402402
403-
The trust information (such as a `ca.crt`) can be considered public information, so we put it in a `ConfigMap` by default. However, some tools (such as OpenShift routes) require it to be placed in a `Secret`, so we also support that.
403+
The trust information (such as a `ca.crt`) can be considered public information, so we put it in a `ConfigMap` by default. However, some tools might require it to be placed in a `Secret`, so we also support that.
404404
405405
Can be either `ConfigMap` or `Secret`, defaults to `ConfigMap`.
406406
enum:

rust/operator-binary/src/crd.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -518,11 +518,11 @@ pub struct TrustStoreSpec {
518518
/// The name of the SecretClass that the request concerns.
519519
pub secret_class_name: String,
520520

521-
/// Which Kubernetes resource should be used to output the requested information to.
521+
/// Which Kubernetes kind should be used to output the requested information to.
522522
///
523523
/// The trust information (such as a `ca.crt`) can be considered public information, so we put
524-
/// it in a `ConfigMap` by default. However, some tools (such as OpenShift routes) require it
525-
/// to be placed in a `Secret`, so we also support that.
524+
/// it in a `ConfigMap` by default. However, some tools might require it to be placed in a
525+
/// `Secret`, so we also support that.
526526
///
527527
/// Can be either `ConfigMap` or `Secret`, defaults to `ConfigMap`.
528528
#[serde(default)]

0 commit comments

Comments
 (0)