Features/kong ingress controller custom ingress class (#9870)

* Allow the ingress-class to be customized in the values.yaml.

Signed-off-by: Joseph Chen <joseph.chen@gmail.com>

* Update readme

Signed-off-by: Joseph Chen <joseph.chen@gmail.com>

* Bump chart version to 0.6.6

Signed-off-by: Joseph Chen <joseph.chen@gmail.com>

* Remove extra blank line.

Signed-off-by: Joseph Chen <joseph.chen@gmail.com>
This commit is contained in:
joe1chen
2018-12-10 15:06:18 -08:00
committed by Kubernetes Prow Robot
parent 4cc13f2a63
commit 18d86ca8bb
4 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -12,5 +12,5 @@ maintainers:
name: kong
sources:
- https://github.com/Kong/kong
version: 0.6.5
version: 0.6.6
appVersion: 0.14.1
+1
View File
@@ -177,3 +177,4 @@ https://github.com/Kong/kubernetes-ingress-controller/blob/master/docs/custom-ty
| image.tag | Version of the ingress controller | 0.2.0 |
| readinessProbe | Kong ingress controllers readiness probe | |
| livenessProbe | Kong ingress controllers liveness probe | |
| ingressClass | The ingress-class value for controller | nginx
@@ -118,6 +118,8 @@ spec:
- --default-backend-service={{ .Release.Namespace }}/{{ template "kong.fullname" . }}-proxy
# Service from were we extract the IP address/es to use in Ingress status
- --publish-service={{ .Release.Namespace }}/{{ template "kong.fullname" . }}-proxy
# Set the ingress class
- --ingress-class={{ .Values.ingressController.ingressClass }}
env:
- name: POD_NAME
valueFrom:
+2
View File
@@ -195,3 +195,5 @@ ingressController:
# The name of the ServiceAccount to use.
# If not set and create is true, a name is generated using the fullname template
name:
ingressClass: nginx