26 lines
655 B
Go Template
26 lines
655 B
Go Template
version: 1
|
|
metadata:
|
|
name: myCloud - tenant
|
|
entries:
|
|
- model: authentik_brands.Brand
|
|
identifiers:
|
|
domain: "authentik-default"
|
|
state: present
|
|
attrs:
|
|
{{- with .Values.commons.theme }}
|
|
{{- with .title }}
|
|
branding_title: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .logo }}
|
|
branding_logo: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .favicon }}
|
|
branding_favicon: {{ . | quote }}
|
|
{{- end }}
|
|
{{- end }}{{/* end-with .commons.theme */}}
|
|
{{- with .Values.theme.background }}
|
|
attributes:
|
|
settings:
|
|
theme:
|
|
background: {{ . | quote }}
|
|
{{- end }}
|