diff --git a/charts/testkube-cloud-api/templates/ingress-grpc.yaml b/charts/testkube-cloud-api/templates/ingress-grpc.yaml index 11c4af4d7..e601b9ce5 100644 --- a/charts/testkube-cloud-api/templates/ingress-grpc.yaml +++ b/charts/testkube-cloud-api/templates/ingress-grpc.yaml @@ -53,7 +53,7 @@ spec: tls: - hosts: - {{ include "testkube-cloud-api.ingress.grpcHost" . | quote }} - secretName: {{ .Values.api.tls.tlsSecret }} + secretName: {{ .Values.grpcIngress.tlsSecret }} {{- end }} rules: {{- $tlsConfig := .Values.api.tls }} diff --git a/charts/testkube-cloud-api/templates/ingress-ws.yaml b/charts/testkube-cloud-api/templates/ingress-ws.yaml index dd69f5678..982c11230 100644 --- a/charts/testkube-cloud-api/templates/ingress-ws.yaml +++ b/charts/testkube-cloud-api/templates/ingress-ws.yaml @@ -45,7 +45,7 @@ spec: tls: - hosts: - {{ include "testkube-cloud-api.ingress.websocketsHost" . | quote }} - secretName: {{ .Values.api.tls.tlsSecret }} + secretName: {{ .Values.websocketsIngress.tlsSecret }} rules: {{- $tlsConfig := .Values.api.tls }} - host: {{ include "testkube-cloud-api.ingress.websocketsHost" . | quote }} diff --git a/charts/testkube-cloud-api/values.yaml b/charts/testkube-cloud-api/values.yaml index 71eb72818..f6847649b 100644 --- a/charts/testkube-cloud-api/values.yaml +++ b/charts/testkube-cloud-api/values.yaml @@ -430,6 +430,7 @@ scimIngress: grpcIngress: # -- Toggle whether to enable the gRPC API Ingress enabled: true + tlsSecret: "testkube-enterprise-grpc-tls" # -- Additional labels to add to the gRPC Ingress resource labels: {} # -- Additional annotations to add to the gRPC Ingress resource @@ -442,6 +443,7 @@ grpcIngress: websocketsIngress: # -- Toggle whether to enable the Websocket API Ingress enabled: true + tlsSecret: "testkube-enterprise-websocket-tls" # -- Additional labels to add to the WebSocket Ingress resource labels: {} # -- Additional annotations to add to the WebSocket Ingress resource