blob: bed5fab6b0ed15c2761ac073b5dffd8883623eb1 [file] [log] [blame]
Sean Condon670605a2021-12-13 12:58:20 +00001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
Sean Condon670605a2021-12-13 12:58:20 +00004
5apiVersion: v1
6kind: ConfigMap
7metadata:
8 name: {{ template "aether-enterprise-portal.fullname" . }}
9 namespace: {{ .Release.Namespace }}
10 labels:
11 release: {{ .Release.Name }}
12 heritage: {{ .Release.Service }}
13data:
14 server-block.conf: |-
15 server {
16 listen {{.Values.Nginx.port}};
17 ssl_certificate /usr/share/certs/aether-enterprise-portal.crt;
18 ssl_certificate_key /usr/share/certs/aether-enterprise-portal.key;
19 {{- if .Values.websocket.proxyEnabled }}
20 location /ws {
21 proxy_pass {{ .Values.websocket.protocol }}://{{ .Values.websocket.service }}:{{ .Values.websocket.port }}/ws;
22 proxy_http_version 1.1;
23 proxy_set_header Upgrade $http_upgrade;
24 proxy_set_header Connection "Upgrade";
25 proxy_set_header Host $host;
26 }{{end}}
27 {{- if .Values.grafana.proxyEnabled }}
28 location /grafana/ {
29 proxy_pass {{ .Values.grafana.protocol }}://{{ .Values.grafana.service }}:{{ .Values.grafana.port }}/;
30 proxy_http_version 1.1;
31 proxy_redirect off;
32 proxy_set_header Upgrade $http_upgrade;
33 proxy_set_header Connection "Upgrade";
34 proxy_set_header X-Real-IP $remote_addr;
35 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
36 proxy_set_header Host $http_host;
37 proxy_set_header X-NginX-Proxy true;
38 proxy_hide_header 'X-Frame-Options';
39 add_header X-Frame-Options SAMEORIGIN;
40 }{{end}}
41 {{- if .Values.prometheus.proxyEnabled }}
42 location /prometheus/ {
43 proxy_pass {{ .Values.prometheus.protocol }}://{{ .Values.prometheus.service }}:{{ .Values.prometheus.port }}/;
44 proxy_http_version 1.1;
45 proxy_set_header Upgrade $http_upgrade;
46 add_header X-Frame-Options SAMEORIGIN;
47 }{{end}}
48 location / {
49 root /usr/share/nginx/html;
50 }
51 {{- range $key, $value := .Values.aetherservices }}
52 location /{{ $key }}/ {
53 proxy_pass {{ $value.protocol}}://{{$key}}:{{ $value.http }}/;
54 proxy_http_version 1.1;
55 proxy_set_header Upgrade $http_upgrade;
56 proxy_set_header Connection "Upgrade";
57 proxy_connect_timeout {{ $value.streamTimeout }};
58 proxy_send_timeout {{ $value.streamTimeout }};
59 proxy_read_timeout {{ $value.streamTimeout }};
60 send_timeout {{ $value.streamTimeout }};
61 }
62 {{ end }}
63 }
64