Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.19 KB

setup.md

File metadata and controls

32 lines (24 loc) · 1.19 KB

lingress Setup

lingress can currently be setup out-of-the-box with Helm.

With Helm

  1. Register the echocat Helm chart:

    helm repo add echocat https://packages.echocat.org/helm
  2. Install/Upgrade the chart:

    Basics
    helm upgrade --install --atomic -n kube-system lingress echocat/lingress
    With parameters

    Providing parameters using --set <param>=<value>, --set-string <param>=<value> or --set-json <param>=<value> (see Helm Upgrade documentation for more details). The following example ensures, that the helm is never deleting the service of lingress:

    helm upgrade --install --atomic -n kube-system lingress echocat/lingress \
         --set-json 'service.annotations={"helm.sh/resource-policy":"keep"}'

    See all supported values: charts/lingress/values.yaml and configuration in general.

More topics