mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 10:13:58 +00:00
18 lines
447 B
YAML
18 lines
447 B
YAML
{{- if .Values.deployment.oauth2proxy.enabled -}}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "supabase.oauth2proxy.fullname" . }}
|
|
labels:
|
|
{{- include "supabase.labels" . | nindent 4 }}
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
{{- include "supabase.oauth2proxy.selectorLabels" . | nindent 4 }}
|
|
ports:
|
|
- name: http
|
|
port: {{ .Values.deployment.oauth2proxy.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
{{- end }}
|