Sean Condon | a49cffd | 2021-10-01 12:38:45 +0100 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org> |
| 2 | # |
| 3 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 4 | |
| 5 | apiVersion: v1 |
| 6 | kind: ConfigMap |
| 7 | metadata: |
| 8 | name: {{ template "aether-roc-gui.fullname" . }} |
| 9 | namespace: {{ .Release.Namespace }} |
| 10 | labels: |
| 11 | release: {{ .Release.Name }} |
| 12 | heritage: {{ .Release.Service }} |
| 13 | data: |
| 14 | server-block.conf: |- |
| 15 | server { |
| 16 | listen {{.Values.Nginx.port}}; |
| 17 | ssl_certificate /usr/share/certs/aether-roc-gui.crt; |
| 18 | ssl_certificate_key /usr/share/certs/aether-roc-gui.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 | location /rs/nav/uiextensions { |
| 52 | root /usr/share/nginx/html; |
| 53 | } |
| 54 | location /kubernetes-api/ { |
| 55 | proxy_pass http://localhost:8001/; |
| 56 | proxy_http_version 1.1; |
| 57 | } |
| 58 | {{- range $key, $value := .Values.aetherservices }} |
| 59 | location /{{ $key }}/ { |
| 60 | proxy_pass {{ $value.protocol}}://{{$key}}:{{ $value.http }}/; |
| 61 | proxy_http_version 1.1; |
| 62 | proxy_set_header Upgrade $http_upgrade; |
| 63 | proxy_set_header Connection "Upgrade"; |
| 64 | proxy_connect_timeout {{ $value.streamTimeout }}; |
| 65 | proxy_send_timeout {{ $value.streamTimeout }}; |
| 66 | proxy_read_timeout {{ $value.streamTimeout }}; |
| 67 | send_timeout {{ $value.streamTimeout }}; |
| 68 | } |
| 69 | {{ end }} |
| 70 | } |
| 71 | |