feat(homarr): make apps list configurable with auto-layout
This commit is contained in:
parent
d4eaa5f12c
commit
c1c1a84591
3 changed files with 101 additions and 60 deletions
|
|
@ -26,6 +26,18 @@
|
|||
Set via OpenBao or remove 'oidc' from homarr_auth_providers.
|
||||
when: "'oidc' in homarr_auth_providers"
|
||||
|
||||
- name: Validate homarr_apps have unique ids
|
||||
ansible.builtin.assert:
|
||||
that:
|
||||
- homarr_apps | map(attribute='id') | list | length ==
|
||||
homarr_apps | map(attribute='id') | unique | list | length
|
||||
fail_msg: >-
|
||||
homarr_apps contains duplicate ids.
|
||||
Each app must have a unique 'id'. Got:
|
||||
{{ homarr_apps | map(attribute='id') | list }}
|
||||
success_msg: All app ids are unique
|
||||
when: homarr_apps | length > 0
|
||||
|
||||
# =====================================================================
|
||||
# 1. PREPARATION: packages and directories before container start
|
||||
# =====================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue