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
Helm Chart: Support extra volume mounts (nginx#1193)
Problem: No support in the helm chart for mounting additional
volumes onto the NGF and NGINX containers.
Solution: Add the ability to specify additional volumes and volume
mounts to the helm chart.
Copy file name to clipboardExpand all lines: deploy/helm-chart/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -211,6 +211,7 @@ The following tables lists the configurable parameters of the NGINX Gateway Fabr
211
211
| `nginxGateway.image.tag` | The tag for the NGINX Gateway Fabric image. | edge |
212
212
| `nginxGateway.image.pullPolicy` | The `imagePullPolicy` for the NGINX Gateway Fabric image. | Always |
213
213
| `nginxGateway.lifecycle` | The `lifecycle` of the nginx-gateway container. | {} |
214
+
| `nginxGateway.extraVolumeMounts` | Extra `volumeMounts` for the nginxGateway container. | {} |
214
215
| `nginxGateway.gatewayClassName` | The name of the GatewayClass for the NGINX Gateway Fabric deployment. | nginx |
215
216
| `nginxGateway.gatewayControllerName` | The name of the Gateway controller. The controller name must be of the form: DOMAIN/PATH. The controller's domain is gateway.nginx.org. | gateway.nginx.org/nginx-gateway-controller |
216
217
| `nginxGateway.kind` | The kind of the NGINX Gateway Fabric installation - currently, only Deployment is supported. | deployment |
@@ -225,6 +226,7 @@ The following tables lists the configurable parameters of the NGINX Gateway Fabr
225
226
| `nginx.image.tag` | The tag for the NGINX image. | edge |
226
227
| `nginx.image.pullPolicy` | The `imagePullPolicy` for the NGINX image. | Always |
227
228
| `nginx.lifecycle` | The `lifecycle` of the nginx container. | {} |
229
+
| `nginx.extraVolumeMounts` | Extra `volumeMounts` for the nginx container. | {} |
228
230
| `terminationGracePeriodSeconds` | The termination grace period of the NGINX Gateway Fabric pod. | 30 |
229
231
| `tolerations` | The `tolerations` of the NGINX Gateway Fabric pod. | [] |
230
232
| `affinity` | The `affinity` of the NGINX Gateway Fabric pod. | {} |
@@ -238,3 +240,4 @@ The following tables lists the configurable parameters of the NGINX Gateway Fabr
238
240
| `metrics.disable` | Disable exposing metrics in the Prometheus format. | false |
239
241
| `metrics.port` | Set the port where the Prometheus metrics are exposed. Format: [1024 - 65535] | 9113 |
240
242
| `metrics.secure` | Enable serving metrics via https. By default metrics are served via http. Please note that this endpoint will be secured with a self-signed certificate. | false |
243
+
| `extraVolumes` | Extra `volumes` for the NGINX Gateway Fabric pod. | [] |
0 commit comments