-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Helm-Chart updated / Ignore processingTime DP with 0
- Loading branch information
Chris Wiechmann
committed
Dec 15, 2021
1 parent
3004b9d
commit d105f01
Showing
6 changed files
with
79 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{- if .Values.ingress.enabled -}} | ||
{{- if .Capabilities.APIVersions.Has "route.openshift.io/v1/Route" }} | ||
{{- $fullName := include "axway-apim-prometheus.fullname" . -}} | ||
{{- $svcPort := .Values.service.port -}} | ||
kind: Route | ||
apiVersion: route.openshift.io/v1 | ||
metadata: | ||
name: {{ $fullName }} | ||
spec: | ||
to: | ||
kind: Service | ||
name: {{ $fullName }} | ||
port: | ||
targetPort: {{ $svcPort }} | ||
tls: | ||
termination: passthrough | ||
insecureEdgeTerminationPolicy: Redirect | ||
wildcardPolicy: None | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters