Updated to 7.7.0.20250830-3-BN0276-ubi
Updated ANM destinationCertCA for 7.7.0.20250830-3-BN0276-ubi
This commit is contained in:
40
apigateway/templates/apimgr/apimgr-routes.yaml
Normal file
40
apigateway/templates/apimgr/apimgr-routes.yaml
Normal file
@@ -0,0 +1,40 @@
|
||||
{{- if .Values.apimgr.route.enabled -}}
|
||||
kind: Route
|
||||
apiVersion: route.openshift.io/v1
|
||||
metadata:
|
||||
name: "{{ include "gateway.fullname" . }}-apimgr"
|
||||
labels:
|
||||
{{- include "gateway.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: apimgr
|
||||
spec:
|
||||
{{- if .Values.global.domainName }}
|
||||
host: apimgr.{{ .Values.global.domainName }}
|
||||
{{- end }}
|
||||
to:
|
||||
kind: Service
|
||||
name: "{{ include "gateway.fullname" . }}-apimgr"
|
||||
port:
|
||||
targetPort: {{ tpl .Values.apimgr.route.targetPort . }}
|
||||
{{- if .Values.apimgr.route.tls.enabled }}
|
||||
tls:
|
||||
termination: {{ .Values.apimgr.route.tls.termination }}
|
||||
insecureEdgeTerminationPolicy: {{ .Values.apimgr.route.tls.insecureEdgeTerminationPolicy }}
|
||||
{{- if .Values.apimgr.route.tls.key }}
|
||||
key: |-
|
||||
{{- .Values.apimgr.route.tls.key | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- if .Values.apimgr.route.tls.destinationCACertificate }}
|
||||
destinationCACertificate: |-
|
||||
{{- .Values.apimgr.route.tls.destinationCACertificate | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- if .Values.apimgr.route.tls.caCertificate }}
|
||||
caCertificate: |-
|
||||
{{- .Values.apimgr.route.tls.caCertificate | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- if .Values.apimgr.route.tls.certificate }}
|
||||
certificate: |-
|
||||
{{- .Values.apimgr.route.tls.certificate | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
wildcardPolicy: None
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user