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: charts/nginx-gateway-fabric/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,10 +195,11 @@ The following table lists the configurable parameters of the NGINX Gateway Fabri
195
195
196
196
| Key | Description | Type | Default |
197
197
|-----|-------------|------|---------|
198
-
|`certGenerator`| The certGenerator section contains the configuration for the cert-generator Job. | object |`{"affinity":{},"agentTLSSecretName":"agent-tls","annotations":{},"nodeSelector":{},"overwrite":false,"serverTLSSecretName":"server-tls","tolerations":[],"topologySpreadConstraints":[],"ttlSecondsAfterFinished":30}`|
198
+
|`certGenerator`| The certGenerator section contains the configuration for the cert-generator Job. | object |`{"affinity":{},"agentTLSSecretName":"agent-tls","annotations":{},"enable":true,"nodeSelector":{},"overwrite":false,"serverTLSSecretName":"server-tls","tolerations":[],"topologySpreadConstraints":[],"ttlSecondsAfterFinished":30}`|
199
199
|`certGenerator.affinity`| The affinity of the cert-generator pod. | object |`{}`|
200
200
|`certGenerator.agentTLSSecretName`| The name of the base Secret containing TLS CA, certificate, and key for the NGINX Agent to securely communicate with the NGINX Gateway Fabric control plane. Must exist in the same namespace that the NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway). | string |`"agent-tls"`|
201
201
|`certGenerator.annotations`| The annotations of the cert-generator Job. | object |`{}`|
202
+
|`certGenerator.enable`| Enable the cert-generator Job. If this is disabled, then cert-manager or some other method must be used to create the required Secrets. | bool |`true`|
202
203
|`certGenerator.nodeSelector`| The nodeSelector of the cert-generator pod. | object |`{}`|
203
204
|`certGenerator.overwrite`| Overwrite existing TLS Secrets on startup. | bool |`false`|
204
205
|`certGenerator.serverTLSSecretName`| The name of the Secret containing TLS CA, certificate, and key for the NGINX Gateway Fabric control plane to securely communicate with the NGINX Agent. Must exist in the same namespace that the NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway). | string |`"server-tls"`|
Copy file name to clipboardExpand all lines: charts/nginx-gateway-fabric/values.schema.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,13 @@
23
23
"title": "annotations",
24
24
"type": "object"
25
25
},
26
+
"enable": {
27
+
"default": true,
28
+
"description": "Enable the cert-generator Job. If this is disabled, then cert-manager or some other method must be used to create the required Secrets.",
29
+
"required": [],
30
+
"title": "enable",
31
+
"type": "boolean"
32
+
},
26
33
"nodeSelector": {
27
34
"description": "The nodeSelector of the cert-generator pod.",
0 commit comments