charts/stackgres-operator/templates/operator-nginx-configmap.yaml
2024-05-30 20:42:52 +08:00

29 lines
973 B
YAML

{{ if and .Values.developer.externalOperatorIp .Values.developer.externalOperatorPort }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-nginx
namespace: {{ .Release.Namespace }}
{{- if .Values.qutePreprocess }}#comment.preprocess.start{{- end }}
data:
stackgres-operator.conf: |
server {
server_name localhost;
listen 9443 ssl;
ssl_certificate /etc/operator/certs/server.crt;
ssl_certificate_key /etc/operator/certs/root.key;
location ~ ^/stackgres {
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://{{ .Release.Name }}-api:8080;
}
}
{{- if .Values.qutePreprocess }}#comment.preprocess.end{{- end}}
{{- end }}