Use quoted values for boolean and number values in Operator examples

Closes #43459

Signed-off-by: Alexander Schwartz <alexander.schwartz@ibm.com>
This commit is contained in:
Alexander Schwartz 2025-10-14 18:53:00 +02:00 committed by GitHub
parent f28e34ee79
commit 3b8bcd3f8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,10 +93,10 @@ spec:
additionalOptions:
- name: spi-connections-http-client--default--connection-pool-size
secret: # Secret reference
name: http-client-secret # name of the Secret
key: poolSize # name of the Key in the Secret
name: http-client-secret # Name of the Secret
key: poolSize # Name of the Key in the Secret
- name: spi-email-template--mycustomprovider--enabled
value: true # plain text value
value: 'true' # Plain text value. Use quotes for numbers and boolean values.
----
NOTE: The name format of options defined in this way is identical to the key format of options specified in the configuration file.
For details on various configuration formats, see <@links.server id="configuration"/>.