add default values

This commit is contained in:
weeman 2021-08-14 13:02:25 +02:00
parent 2ad8492c26
commit 10d0d54596
Signed by: weeman
GPG Key ID: 34F0524D4DA694A1
2 changed files with 13 additions and 5 deletions

View File

@ -10,14 +10,14 @@ SPDX-License-Identifier: AGPL-3.0-or-later
## Variablen:
| Name | Beschreibung | Beispiel |
| Name | Beschreibung | Standardwert |
| --- | --- | --- |
| `ki_frontend_image` | KI Frontend Image | `registry.wtf-eg.net/ki-frontend:23` |
| `ki_frontend_image` | KI Frontend Image | `registry.wtf-eg.net/ki-frontend:latest` |
| `ki_frontend_uri` | URI zum Frontend | `https://ki-wtf-eg.de/` |
| `ki_frontend_port` | Docker-Port für das Frontend | `13337` |
| `ki_backend_image` | KI Backend Image | `registry.wtf-eg.net/ki-backend:42` |
| `ki_backend_image` | KI Backend Image | `registry.wtf-eg.net/ki-backend:latest` |
| `ki_backend_uri` | URI zum Backend | `https://ki-wtf-eg.de/api` |
| `ki_backend_port` | Docker-Port für das Backend | `13338` |
| `ki_db_image` | Datenbank-Image | `mariadb:10.6.3` |
| `ki_db_root_password` | KI DB Root Passwort | |
| `ki_db_password` | KI DB Anwendungspasswort | |
| `ki_db_root_password` | KI DB Root Passwort | - |
| `ki_db_password` | KI DB Anwendungspasswort | - |

8
defaults/main.yml Normal file
View File

@ -0,0 +1,8 @@
---
ki_frontend_image: registry.wtf-eg.net/ki-frontend:latest
ki_frontend_uri: https://ki-wtf-eg.de/
ki_frontend_port: 13337
ki_backend_image: registry.wtf-eg.net/ki-backend:latest
ki_backend_uri: https://ki-wtf-eg.de/api
ki_backend_port: 13338
ki_db_image: mariadb:10.6.3