Skip to content

Commit

Permalink
ud[ate secret name
Browse files Browse the repository at this point in the history
  • Loading branch information
ypoplavs committed Feb 6, 2025
1 parent 76d19a7 commit e9ecdba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/testkube-cloud-api/templates/ingress-grpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/testkube-cloud-api/templates/ingress-ws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 2 additions & 0 deletions charts/testkube-cloud-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e9ecdba

Please sign in to comment.