Cleanup bugfixes. Move vars to dedicated files

This commit is contained in:
Guillaume
2023-06-14 20:21:23 +02:00
parent d46b475e1b
commit 6721e05387
6 changed files with 63 additions and 31 deletions

28
scripts/vars Normal file
View File

@ -0,0 +1,28 @@
## Vars
# Admin token to unlock the DLS store
DLS_UNLOCK_TOKEN=changeme
# Docker container name for dir2config
D2C_IMG=novit.tech/direktil/local-server:b6fa941
D2C_CTR_NAME=dir2config
# Docker container name for direktil local server
DLS_IMG=novit.tech/direktil/local-server:b6fa941
DLS_CTR_NAME=dls
# QEMU local bridge name. If you specificy a custom name, you may have to configure qemu bridge helper to allow it
QEMU_BR_NAME=virbr0
# QEMU VM default disk size
QEMU_DISK_SIZE=30G
# Allocated CPUs to QEMU VMs
QEMU_VM_CPU=4
# Allocated Memory to QEMU VMs
QEMU_VM_MEM=8096
################
# Token file for dls
tknfile=".dls_adm_token"
# SSH command args
SSH_CMD="ssh -o StrictHostKeyChecking=no"