mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-19 14:18:57 +00:00
20 lines
393 B
YAML
20 lines
393 B
YAML
{{- if .Values.gcp }}
|
|
apiVersion: networking.gke.io/v1
|
|
kind: ManagedCertificate
|
|
metadata:
|
|
name: managed-cert
|
|
spec:
|
|
domains:
|
|
- {{ .Values.api_host }}
|
|
- {{ .Values.socketcluster_host }}
|
|
---
|
|
apiVersion: networking.gke.io/v1beta1
|
|
kind: FrontendConfig
|
|
metadata:
|
|
name: httpsredirect
|
|
spec:
|
|
redirectToHttps:
|
|
enabled: true
|
|
responseCodeName: MOVED_PERMANENTLY_DEFAULT
|
|
{{- end }}
|