mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
15 lines
323 B
YAML
15 lines
323 B
YAML
{{- if and .Values.auth.create .Values.auth.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: traefik-forward-auth
|
|
namespace: {{ .Values.namespace }}
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: traefik-forward-auth
|
|
ports:
|
|
- name: auth
|
|
port: {{ .Values.auth.port }}
|
|
targetPort: auth
|
|
{{- end }} |