-
Notifications
You must be signed in to change notification settings - Fork 39
Document imageVersionChecks and passwordEncodingType ConfigMap fields #808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
leochr
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kabicin Thank you for the PR. Added some minor comments. Looks good otherwise.
doc/user-guide-v1.adoc
Outdated
| | `certManagerCACertDuration` | The cert-manager issued CA certificate's duration before expiry in link:++https://pkg.go.dev/time#ParseDuration++[Go time.Duration] string format. The default value is 8766h (1 year). To learn more about this field see link:#generating-certificates-with-certificate-manager[Generating certificates with certificate manager]. | ||
| | `certManagerCertDuration` | The cert-manager issued service certificate's duration before expiry in link:++https://pkg.go.dev/time#ParseDuration++[Go time.Duration] string format. The default value is 2160h (90 days). To learn more about this field see link:#generating-certificates-with-certificate-manager[Generating certificates with certificate manager]. | ||
| | `defaultHostname` | The default hostname for the OpenLibertyApplication Route or Ingress URL when .spec.expose is set to true. To learn more about this field see link:#expose-applications-externally[Expose applications externally (`.spec.expose`, `.spec.createKnativeService`, `.spec.route`)]. | ||
| | `imageVersionChecks` | The boolean parameter that determines whether the Operator should pull and validate the Liberty version of the `.spec.applicationImage`. The default value is _true_. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pull and validate --> pull and evaluate
doc/user-guide-v1.adoc
Outdated
| | `imageVersionChecks` | The boolean parameter that determines whether the Operator should pull and validate the Liberty version of the `.spec.applicationImage`. The default value is _true_. | ||
| | `imageVersionChecksRefreshIntervalMinutes` | The amount of minutes that the Operator will wait until re-validating the Liberty version of a tagged image in `.spec.applicationImage`. This flag does not apply to ID-based images. | ||
| | `operatorLogLevel` | The log level for the Liberty operator. The default value is `info`, other options are `warning`, `fine`, `finer`, `finest`. The log level can be dynamically modified and takes effect immediately. | ||
| | `passwordEncodingType` | The encoding type used to encode the LTPA keys password when `.spec.manageLTPA` is set to _true_. The default value is `aes` (aes-256) , another option is `aes-128`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The encoding type used to encode the LTPA keys password when --> The encoding type to encode the LTPA keys password with when
What this PR does / why we need it?:
Does this PR introduce a user-facing change?
CHANGELOG.mdWhich issue(s) this PR fixes:
Fixes #