|
|
@ -13,12 +13,32 @@ metadata: |
|
|
|
{{- include "portalmodelo.labels" . | nindent 4 }} |
|
|
|
annotations: |
|
|
|
{{- if .Values.ingress.tls.enabled }} |
|
|
|
# USE TLS |
|
|
|
{{- if contains "letsencrypt" .Values.ingress.tls.provider }} |
|
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod" |
|
|
|
{{- end }} |
|
|
|
{{- if contains "nginx" .Values.ingress.class }} |
|
|
|
nginx.ingress.kubernetes.io/rewrite-target: "/VirtualHostBase/https/www.{{ $hostName }}:443/portal/VirtualHostRoot/$1" |
|
|
|
nginx.ingress.kubernetes.io/from-to-www-redirect: "true" |
|
|
|
{{- end }} |
|
|
|
{{- if contains "alb" .Values.ingress.class }} |
|
|
|
alb.ingress.kubernetes.io/listen-ports: '[{"HTTP": 80}, {"HTTPS": 443}]' |
|
|
|
{{- end }} |
|
|
|
{{- else }} |
|
|
|
# DO NOT USE TLS |
|
|
|
{{- if contains "nginx" .Values.ingress.class }} |
|
|
|
nginx.ingress.kubernetes.io/rewrite-target: "/VirtualHostBase/http/www.{{ $hostName }}:80/portal/VirtualHostRoot/$1" |
|
|
|
{{- end }} |
|
|
|
{{- if contains "alb" .Values.ingress.class }} |
|
|
|
alb.ingress.kubernetes.io/listen-ports: '[{"HTTP": 80}]' |
|
|
|
{{- end }} |
|
|
|
{{- end }} |
|
|
|
{{- if contains "alb" .Values.ingress.class }} |
|
|
|
alb.ingress.kubernetes.io/group.name: pm |
|
|
|
alb.ingress.kubernetes.io/scheme: internet-facing |
|
|
|
alb.ingress.kubernetes.io/target-type: ip |
|
|
|
kubernetes.io/ingress.class: alb |
|
|
|
{{- end }} |
|
|
|
spec: |
|
|
|
{{- if .Values.ingress.tls.enabled }} |
|
|
|
tls: |
|
|
@ -31,7 +51,11 @@ spec: |
|
|
|
- host: "www.{{ $hostName }}" |
|
|
|
http: |
|
|
|
paths: |
|
|
|
{{- if contains "nginx" .Values.ingress.class }} |
|
|
|
- path: /(.*) |
|
|
|
{{- else }} |
|
|
|
- path: /* |
|
|
|
{{- end }} |
|
|
|
backend: |
|
|
|
serviceName: {{ $fullName }}-plone |
|
|
|
servicePort: 8080 |
|
|
|