From 0a371ba416d16e81d47da740144d8efe2f5ff9ab Mon Sep 17 00:00:00 2001 From: Reza Chalak Date: Fri, 16 Jan 2026 09:17:04 +0100 Subject: [PATCH] docs: add example for ingress The ingress definition in the helm chart is confusing, added example to help. There should not be `host` in the hosts section. Normally we define ingresses like: ``` ingress: ... hosts: - step.example.com ... ``` But in this chart: ``` ingress: ... hosts: - host: step.example.com ... ``` --- step-certificates/values.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/step-certificates/values.yaml b/step-certificates/values.yaml index dde6b45..eaae3b4 100644 --- a/step-certificates/values.yaml +++ b/step-certificates/values.yaml @@ -332,6 +332,20 @@ autocert: enabled: false # ingress contains the configuration for an ingress controller. +# ingress: + # enabled: true + # annotations: + # cert-manager.io/cluster-issuer: "letsencrypt" + # ingressClassName: nginx + # hosts: + # - host: stepcert.example.com + # paths: + # - / + # tls: + # - secretName: step-tls + # hosts: + # - "*.example.com" + ingress: enabled: false annotations: {}