Skip to content

Disable ingress

Mark Spencer requested to merge (removed):disable-ingress into master

Currently, there's no way for you to disable the creation of an ingress if your deployment for your application does not need one. For Example, if the application is only accessed by other services within the cluster, an Ingress won't be needed.

This MR will allow the developer to set ingress.disabled to false in their helm values.yaml to disable the creation of an Ingress for the application.

Changes:

  • Added conditional in templates/ingress.yaml to only create the ingress if .Values.ingress.enabled is set to true
  • Added default ingress.enabled value in values.yaml
  • Updated table in README.md to accomodate for ingress.enabled

Merge request reports