|
|
@ -1,6 +1,6 @@ |
|
|
|
{{- if .Values.ingress.enabled -}} |
|
|
|
{{- $fullName := include "portalmodelo.fullname" . -}} |
|
|
|
{{- $ingressPath := .Values.ingress.path -}} |
|
|
|
{{- $hostName := .Values.portal.hostname -}} |
|
|
|
{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} |
|
|
|
apiVersion: networking.k8s.io/v1beta1 |
|
|
|
{{- else -}} |
|
|
@ -11,29 +11,22 @@ metadata: |
|
|
|
name: {{ $fullName }} |
|
|
|
labels: |
|
|
|
{{- include "portalmodelo.labels" . | nindent 4 }} |
|
|
|
{{- with .Values.ingress.annotations }} |
|
|
|
annotations: |
|
|
|
{{- toYaml . | nindent 4 }} |
|
|
|
{{- end }} |
|
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod" |
|
|
|
nginx.ingress.kubernetes.io/rewrite-target: "/VirtualHostBase/https/www.{{ $hostName }}:443/portal/VirtualHostRoot/$1" |
|
|
|
nginx.ingress.kubernetes.io/from-to-www-redirect: "true" |
|
|
|
spec: |
|
|
|
{{- if .Values.ingress.tls }} |
|
|
|
tls: |
|
|
|
{{- range .Values.ingress.tls }} |
|
|
|
- hosts: |
|
|
|
{{- range .hosts }} |
|
|
|
- {{ . | quote }} |
|
|
|
{{- end }} |
|
|
|
secretName: {{ .secretName }} |
|
|
|
{{- end }} |
|
|
|
{{- end }} |
|
|
|
- "www.{{ $hostName }}" |
|
|
|
- "{{ $hostName }}" |
|
|
|
secretName: {{ $hostName | replace "." "-" }}-tls |
|
|
|
rules: |
|
|
|
{{- range .Values.ingress.hosts }} |
|
|
|
- host: {{ . | quote }} |
|
|
|
- host: "www.{{ $hostName }}" |
|
|
|
http: |
|
|
|
paths: |
|
|
|
- path: {{ $ingressPath }} |
|
|
|
- path: /(.*) |
|
|
|
backend: |
|
|
|
serviceName: {{ $fullName }}-plone |
|
|
|
servicePort: 8080 |
|
|
|
{{- end }} |
|
|
|
{{- end }} |
|
|
|