Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions modules/cert-manager-explanation-of-certmanager-cr-fields.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@ The following table lists the common fields that you can configure in the `spec.
|`dict`
|You can override the supported environment variables for the cert-manager controller. This field is only supported for the cert-manager controller component.

|`overrideReplicas`
|`int`
|You can configure the replicas for the cert-manager components. The default value is `1`. For production environments, the following replica counts are recommended:

* controller: 2

* cainjector: 2

* webhook: At least 3.

For more information, see link:https://cert-manager.io/docs/installation/best-practice/#high-availability[High Availability].

|`overrideResources`
|`object`
|You can configure the CPU and memory limits for the cert-manager components.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ spec:
operator: "Equal"
value: "value1"
effect: "NoSchedule"
overrideReplicas: 2
#...

webhookConfig:
overrideArgs:
Expand All @@ -50,13 +52,17 @@ spec:
#...
overrideScheduling:
#...
overrideReplicas:
#...

cainjectorConfig:
overrideArgs:
#...
overrideResources:
#...
overrideScheduling:
#...
overrideReplicas:
#...
----

Expand Down