-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update ingress for web container * Update ingress for nominatim and overpass api * Update ingress for osmcha * Update ingress for taginfo * Update ingress for task manager * Update ingress for tiler server * Update ingress domain in values and hp * Add api.<domain> for web ingress * Update web ingress for main domain * Disable domain route * Update service name in ingress - tm * Enable rules for root domain - web * update cromjob for osmcha * Update proxy-body-size in ingress * Set SERVER_URL from Values.web.ingressDomain in case we use ClusterIP
- Loading branch information
Showing
13 changed files
with
219 additions
and
138 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
26 changes: 0 additions & 26 deletions
26
osm-seed/templates/tasking-manager-api/tasking-manager-api-ingress.yaml
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,31 @@ | ||
{{- if and .Values.tmApi.enabled (eq .Values.serviceType "ClusterIP") }} | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: {{ template "osm-seed.fullname" . }}-ingress-tm-api | ||
annotations: | ||
kubernetes.io/ingress.class: nginx | ||
cert-manager.io/cluster-issuer: letsencrypt-prod-issuer | ||
nginx.ingress.kubernetes.io/proxy-body-size: 5m | ||
spec: | ||
ingressClassName: nginx | ||
tls: | ||
- hosts: | ||
{{- if .Values.tmApi.ingressDomain }} | ||
- {{ .Values.tmApi.ingressDomain }} | ||
{{- else }} | ||
- tm-api.{{ .Values.domain }} | ||
{{- end }} | ||
secretName: {{ template "osm-seed.fullname" . }}-secret-tm-api | ||
rules: | ||
- host: {{ if .Values.tmApi.ingressDomain }}{{ .Values.tmApi.ingressDomain }}{{ else }}tm-api.{{ .Values.domain }}{{ end }} | ||
http: | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: {{ template "osm-seed.fullname" . }}-tasking-manager-api | ||
port: | ||
number: 80 | ||
{{- end }} |
File renamed without changes.
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
Oops, something went wrong.