Compare commits

...

7 Commits

3 changed files with 6 additions and 3 deletions

View File

@ -11,3 +11,5 @@ ki_ldap_url: ldaps://idp01.wtf-eg.net:636
ki_ldap_auth_user: ""
ki_ldap_auth_password: ""
ki_ldap_base_dn: ou=people,dc=wtf-eg,dc=de
ki_flask_env: development
ki_loglevel: 10

View File

@ -25,6 +25,7 @@
- docker-compose.yml
- name: be sure the ki services are running
become: true
community.docker.docker_compose:
project_src: /var/docker/ki
pull: yes

View File

@ -16,9 +16,9 @@ services:
- ki
environment:
SQLALCHEMY_DATABASE_URI: "mariadb+pymysql://ki:{{ ki_db_password }}@ki_db:3306/ki"
FLASK_ENV: "development"
KI_LOGLEVEL: "10"
KI_AUTH: "ldap"
FLASK_ENV: "{{ ki_flask_env }}"
KI_LOGLEVEL: "{{ ki_loglevel }}"
KI_AUTH: "{{ ki_auth }}"
KI_LDAP_URL: "{{ ki_ldap_url }}"
KI_LDAP_AUTH_USER: "{{ ki_ldap_auth_user }}"
KI_LDAP_AUTH_PASSWORD: "{{ ki_ldap_auth_password }}"