From 263c071313e0513bfeded2bd78ca376e67d1da5c Mon Sep 17 00:00:00 2001 From: Stefan Machmeier Date: Thu, 10 Oct 2024 14:51:03 +0200 Subject: [PATCH] Remove unnecessary file --- src/example.yaml | 55 ------------------------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 src/example.yaml diff --git a/src/example.yaml b/src/example.yaml deleted file mode 100644 index cf2d533..0000000 --- a/src/example.yaml +++ /dev/null @@ -1,55 +0,0 @@ -###################################################################################### -# Description of the YAML File: -# To use ctf_main.py, you have to provide a YAML config file like this one. -# -# Arguments for the YAML file: -# - name: Name of the YAML config. -# - containers: Docker containers deployed for each user. -# - users: List of users. -# - identityFile: Path to the private SSH keys for host login. -# - hosts: Hosts where the Docker containers are running. -# - subnet_first_part: IP address, formatted as firstpart.xx.xx.xx/24. -# - subnet_second_part: IP address, formatted as xx.second_part.xx.xx/24. -# - subnet_third_part: IP address, formatted as xx.xx.third_part.xx/24. -# -###################################################################################### - -name: test1 -# Containername:version -# E.g. nginx:latest -containers: - - nginx:latest - - nginx:latest -# Usernames/ Uni-IDs -users: - - tz251 - - mg235 - - qd109 - - lk543 - -# For SSH Connection -# Direction of your private SSH key -identityFile: - - /home/nick/Data/ssh_key - -# For SSH Connection with user in Terminal -# E.g. user@hostIPadress -hosts: - - ubuntu@10.20.30.101 - - ubuntu@10.20.30.102 - - ubuntu@10.20.30.103 - - ubuntu@10.20.30.104 - -# IP Adress: firstpart.xx.xx.xx/24 -# E.g. 10 if IP Adress is 10.13.0.0/24 -subnet_first_part: - - 10 -# IP Adress xx.second_part.xx.xx/24 -# E.g. 13 if IP Adress is 10.13.0.0/24 -subnet_second_part: - - 13 - -# IP Adress xx.xx.third_part.xx/24 -# E.g. 0 if IP Adress is 10.13.0.0/24 -subnet_third_part: - - 0