From e0dab33dd437f332c5c91e23d476616de42a520b Mon Sep 17 00:00:00 2001 From: jose Date: Fri, 10 May 2024 10:52:16 +0100 Subject: [PATCH 1/3] Add manual run option --- .github/workflows/helm_release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/helm_release.yaml b/.github/workflows/helm_release.yaml index 20b1689857..df6ad0a3e9 100644 --- a/.github/workflows/helm_release.yaml +++ b/.github/workflows/helm_release.yaml @@ -6,6 +6,7 @@ on: - master paths: - 'charts/**' + workflow_dispatch: jobs: release: From 7b0f0a38290ea4fd2e93f2fd06cf4def556ae53e Mon Sep 17 00:00:00 2001 From: jose Date: Fri, 10 May 2024 11:38:52 +0100 Subject: [PATCH 2/3] Fix doc comments --- charts/zigbee2mqtt/values.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/zigbee2mqtt/values.yaml b/charts/zigbee2mqtt/values.yaml index 0745812fe4..2969867a28 100644 --- a/charts/zigbee2mqtt/values.yaml +++ b/charts/zigbee2mqtt/values.yaml @@ -181,21 +181,21 @@ zigbee2mqtt: ingress: # -- When enabled a new Ingress will be created enabled: false - # The ingress class name for the ingress + # -- The ingress class name for the ingress ingressClassName: contour - # Additional labels for the ingres + # -- Additional labels for the ingres labels: {} - # URL in which the ingress will be accepting requests for zigbee2mqtt + # -- URL in which the ingress will be accepting requests for zigbee2mqtt path: / - # Ingress implementation specific (potentially) for most use cases Prefix should be ok + # -- Ingress implementation specific (potentially) for most use cases Prefix should be ok pathType: Prefix # Additional annotations for the ingress. ExternalDNS, and CertManager are tipically integrated here annotations: {} - # configuration for tls service (ig any) + # -- configuration for tls service (ig any) tls: - secretName: some-tls-secret hosts: - yourdomain.com - # list of hosts that should be allowed for the zigbee2mqtt service + # -- list of hosts that should be allowed for the zigbee2mqtt service hosts: - yourdomain.com From 09934693ae20a6b356a06e77c60ad65e44e38049 Mon Sep 17 00:00:00 2001 From: jose Date: Fri, 10 May 2024 22:24:44 +0100 Subject: [PATCH 3/3] Add notes in the helm chart for deployments using ingress --- charts/zigbee2mqtt/values.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/zigbee2mqtt/values.yaml b/charts/zigbee2mqtt/values.yaml index 2969867a28..761f4b49b0 100644 --- a/charts/zigbee2mqtt/values.yaml +++ b/charts/zigbee2mqtt/values.yaml @@ -178,6 +178,9 @@ zigbee2mqtt: # In case you are having issues try `200`. # For more information see https://github.com/Koenkk/zigbee2mqtt/issues/4884 adapter_delay: 0 +# -- Ingress configuration. Zigbee2mqtt does use webssockets, which is not part of the Ingress standart settings. +# most of the popular ingresses supports them through annotations. Please check https://www.zigbee2mqtt.io/guide/installation/08_kubernetes.html +# for examples. ingress: # -- When enabled a new Ingress will be created enabled: false