From c3b4c9bffbcf360182c547b404a3add55e4cb341 Mon Sep 17 00:00:00 2001 From: Jennifer Moore Date: Tue, 16 Apr 2024 11:44:28 -0500 Subject: [PATCH] fix[infludb3-clustered]: remove optional ingress config from default values --- charts/influxdb3-clustered/values.yaml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/charts/influxdb3-clustered/values.yaml b/charts/influxdb3-clustered/values.yaml index e1832c18..7b5921a8 100644 --- a/charts/influxdb3-clustered/values.yaml +++ b/charts/influxdb3-clustered/values.yaml @@ -112,18 +112,19 @@ ingress: hosts: # This is the host on which you will access Influxdb 3.0, for both reads and writes - "" - # (Optional) - # The name of the Kubernetes Secret containing a TLS certificate, this should exist in the same namespace as the Clustered installation. - # If you are using cert-manager, enter a name for the Secret it should create. + # # (Optional) + # # The name of the Kubernetes Secret containing a TLS certificate, this should exist in the same namespace as the Clustered installation. + # # If you are using cert-manager, enter a name for the Secret it should create. # tlsSecretName: "" - http: - # Usually you have only one ingress controller installed in a given cluster. - # In case you have more than one, you have to specify the "class name" of the ingress controller you want to use - className: nginx - grpc: - # Usually you have only one ingress controller installed in a given cluster. - # In case you have more than one, you have to specify the "class name" of the ingress controller you want to use - className: nginx + + # # (Optional) + # # Usually you have only one ingress controller installed in a given cluster. + # # In case you have more than one, you have to specify the "class name" of the ingress controller you want to use + # http: + # className: nginx + # grpc: + # className: nginx + # (Optional) # Enables specifying which 'type' of Ingress to use, alongside whether to place additional annotations # onto those objects, this is useful for third party software in your environment, such as cert-manager.