You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl http://{{ include "stackrox-mcp.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.service.port }}/health
27
+
curl -h {{ include "stackrox-mcp.portName" . }}://{{ include "stackrox-mcp.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.service.port }}/health
28
+
29
+
{{- if and (eq (include "stackrox-mcp.isOpenshift" .) "true") .Values.config.server.TLSEnabled (ne .Values.openshift.route.tls.termination "reencrypt") }}
30
+
WARN: OpenShift route TLS termination should be set to "reencrypt" if TLS encryption is enabled. You should set ".openshift.route.tls.termination" to "reencrypt".
31
+
{{- end }}
32
+
33
+
{{- if .Values.config.server.TLSEnabled }}
34
+
35
+
TLS Configuration:
36
+
Secret Name: {{ include "stackrox-mcp.tlsSecretName" . }}
37
+
{{- if .Values.tlsSecret.existingSecretName }}
38
+
Status: Using existing secret "{{ .Values.tlsSecret.existingSecretName }}"
39
+
{{- else if and .Values.tlsSecret.caCert .Values.tlsSecret.caKey }}
40
+
Status: Generated secret with provided certificates
41
+
{{- else }}
42
+
43
+
WARNING: TLS is enabled but no certificate configuration found!
44
+
Please provide either:
45
+
- tlsSecret.existingSecretName (to use existing secret)
46
+
- tlsSecret.caCert and tlsSecret.caKey (to generate secret)
0 commit comments