Change Readme and fix values
Signed-off-by: Stef Graces <stefgraces@hotmail.com>
This commit is contained in:
parent
b3574b2137
commit
a01dc86bd8
3 changed files with 14 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[ingress-nginx](https://github.com/kubernetes/ingress-nginx) Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
|
[ingress-nginx](https://github.com/kubernetes/ingress-nginx) Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
To use, add `ingressClassName: nginx` spec field or the `kubernetes.io/ingress.class: nginx` annotation to your Ingress resources.
|
To use, add `ingressClassName: nginx` spec field or the `kubernetes.io/ingress.class: nginx` annotation to your Ingress resources.
|
||||||
|
|
||||||
|
@ -443,6 +443,7 @@ As of version `1.26.0` of this chart, by simply not providing any clusterIP valu
|
||||||
| controller.service.targetPorts.https | string | `"https"` | |
|
| controller.service.targetPorts.https | string | `"https"` | |
|
||||||
| controller.service.type | string | `"LoadBalancer"` | |
|
| controller.service.type | string | `"LoadBalancer"` | |
|
||||||
| controller.shareProcessNamespace | bool | `false` | |
|
| controller.shareProcessNamespace | bool | `false` | |
|
||||||
|
| controller.strictValidatePathType | bool | `false` | Set strict valdiation for paths When pathType is configured as `Exact` or `Prefix`, there should be a more strict validation, allowing only paths starting with "/" and containing only alphanumeric characters and "-", "_" and additional "/". |
|
||||||
| controller.sysctls | object | `{}` | sysctls for controller pods # Ref: https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ |
|
| controller.sysctls | object | `{}` | sysctls for controller pods # Ref: https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ |
|
||||||
| controller.tcp.annotations | object | `{}` | Annotations to be added to the tcp config configmap |
|
| controller.tcp.annotations | object | `{}` | Annotations to be added to the tcp config configmap |
|
||||||
| controller.tcp.configMapNamespace | string | `""` | Allows customization of the tcp-services-configmap; defaults to $(POD_NAMESPACE) |
|
| controller.tcp.configMapNamespace | string | `""` | Allows customization of the tcp-services-configmap; defaults to $(POD_NAMESPACE) |
|
||||||
|
|
8
charts/ingress-nginx/changelog/Changelog-4.8.4.md
Normal file
8
charts/ingress-nginx/changelog/Changelog-4.8.4.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
This file documents all notable changes to [ingress-nginx](https://github.com/kubernetes/ingress-nginx) Helm Chart. The release numbering uses [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
|
### 4.8.4
|
||||||
|
* Add strict-validate-path-type arg to chart params
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/kubernetes/ingress-nginx/compare/helm-chart-4.8.3...helm-chart-4.8.4
|
|
@ -89,13 +89,13 @@ controller:
|
||||||
# when users add those annotations.
|
# when users add those annotations.
|
||||||
# Global snippets in ConfigMap are still respected
|
# Global snippets in ConfigMap are still respected
|
||||||
allowSnippetAnnotations: false
|
allowSnippetAnnotations: false
|
||||||
# -- Required for use with CNI based kubernetes installations (such as ones set up by kubeadm),
|
|
||||||
# since CNI and hostport don't mix yet. Can be deprecated once https://github.com/kubernetes/kubernetes/issues/23920
|
|
||||||
# is merged
|
|
||||||
strictValidatePathType: false
|
|
||||||
# -- Set strict valdiation for paths
|
# -- Set strict valdiation for paths
|
||||||
# When pathType is configured as `Exact` or `Prefix`, there should be a more strict validation, allowing only paths starting with "/" and
|
# When pathType is configured as `Exact` or `Prefix`, there should be a more strict validation, allowing only paths starting with "/" and
|
||||||
# containing only alphanumeric characters and "-", "_" and additional "/".
|
# containing only alphanumeric characters and "-", "_" and additional "/".
|
||||||
|
strictValidatePathType: false
|
||||||
|
# -- Required for use with CNI based kubernetes installations (such as ones set up by kubeadm),
|
||||||
|
# since CNI and hostport don't mix yet. Can be deprecated once https://github.com/kubernetes/kubernetes/issues/23920
|
||||||
|
# is merged
|
||||||
hostNetwork: false
|
hostNetwork: false
|
||||||
## Use host ports 80 and 443
|
## Use host ports 80 and 443
|
||||||
## Disabled by default
|
## Disabled by default
|
||||||
|
|
Loading…
Reference in a new issue