Skip to content

Commit

Permalink
Updates README and values.schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
panzouh committed Nov 14, 2023
1 parent 78df82e commit 9d05fdd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/nginx-ingress/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
|`controller.hostNetwork` | Enables the Ingress Controller pods to use the host's network namespace. | false |
|`controller.dnsPolicy` | DNS policy for the Ingress Controller pods. | ClusterFirst |
|`controller.nginxDebug` | Enables debugging for NGINX. Uses the `nginx-debug` binary. Requires `error-log-level: debug` in the ConfigMap via `controller.config.entries`. | false |
| `controller.shareProcessNamespace` | Enables process namespace sharing. When process namespace sharing is enabled, processes in a container are visible to all other containers in the same pod. [docs](https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/) | false |
|`controller.logLevel` | The log level of the Ingress Controller. | 1 |
|`controller.image.digest` | The image digest of the Ingress Controller. | None |
|`controller.image.repository` | The image repository of the Ingress Controller. | nginx/nginx-ingress |
Expand Down
10 changes: 10 additions & 0 deletions charts/nginx-ingress/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,15 @@
true
]
},
"shareProcessNamespace": {
"type": "boolean",
"default": false,
"title": "Enables sharing of the process namespace between pods within the Ingress Controller",
"examples": [
false,
true
]
},
"logLevel": {
"type": "integer",
"default": 1,
Expand Down Expand Up @@ -1298,6 +1307,7 @@
},
"hostNetwork": false,
"nginxDebug": false,
"shareProcessNamespace": false,
"logLevel": 1,
"customPorts": [],
"image": {
Expand Down

0 comments on commit 9d05fdd

Please sign in to comment.