new files
This commit is contained in:
parent
86ec7b467c
commit
1c6668fbb1
22
del_project.sh
Executable file
22
del_project.sh
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
random=$1
|
||||||
|
lxc project switch $random
|
||||||
|
|
||||||
|
lxc stop $random-csgo2-00
|
||||||
|
lxc delete $random-csgo2-00
|
||||||
|
|
||||||
|
lxc project delete $random
|
||||||
|
lxc network delete vn-$random
|
||||||
|
|
||||||
|
#node1=`nmctl node list | grep $random | grep k2c-1 | awk '{print $16}'`
|
||||||
|
#node2=`nmctl node list | grep $random | grep k2c-2 | awk '{print $16}'`
|
||||||
|
#node3=`nmctl node list | grep $random | grep k2c-3 | awk '{print $16}'`
|
||||||
|
#otto=`nmctl node list | grep $random | grep otto | awk '{print $16}'`
|
||||||
|
|
||||||
|
#nmctl node delete $random $node1
|
||||||
|
#nmctl node delete $random $node2
|
||||||
|
#nmctl node delete $random $node3
|
||||||
|
#nmctl node delete $random $otto
|
||||||
|
|
||||||
|
#nmctl network delete $random
|
20
gen_random.sh
Executable file
20
gen_random.sh
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
random=`date | md5sum | awk '{print $1}' | cut -c 22-`
|
||||||
|
echo $random
|
||||||
|
|
||||||
|
# Generate Game container
|
||||||
|
lxc project create $random -c features.images=false > /dev/null
|
||||||
|
lxc project switch $random > /dev/null
|
||||||
|
lxc --project $random network create vn-$random > /dev/null
|
||||||
|
cat /root/default.profile | lxc --project $random profile edit default > /dev/null
|
||||||
|
lxc launch --project $random -p default ubuntu:22.04 $random-csgo2-00 --network vn-$random > /dev/null
|
||||||
|
|
||||||
|
# Generate docker compose file
|
||||||
|
echo $random > /tmp/random
|
||||||
|
export VAR=`cat /tmp/random`
|
||||||
|
envsubst < template-wg_server.yaml > $random-wg_server.yaml
|
||||||
|
curl --silent -X PUT --user "adelorenzo:dimi2014" https://couchdb.oe74.cloud/kk_users/${random}/${random} -d "{"_id":"$random"}" > /dev/null
|
||||||
|
random_rev=`curl --silent -X GET https://adelorenzo:dimi2014@couchdb.oe74.cloud/kk_users/$random | jq -c '._rev' | sed 's/^.//' | sed 's/.$//'`
|
||||||
|
curl --silent -H "Content-Type: text/x-yaml" -X PUT --data-binary @${random}-wg_server.yaml --user "adelorenzo:dimi2014" "https://couchdb.oe74.cloud/kk_users/${random}/${random}-wg_server.yaml?rev=$random_rev" > /dev/null
|
||||||
|
rm ${random}-wg_server.yaml
|
29
template-wg_server.yaml
Normal file
29
template-wg_server.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
services:
|
||||||
|
$VAR:
|
||||||
|
image: lscr.io/linuxserver/wireguard:latest
|
||||||
|
container_name: $VAR-wireguard
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
- SYS_MODULE
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
- SERVERURL=vpn.koffeekube.io
|
||||||
|
- SERVERPORT=51820
|
||||||
|
- PEERS=200
|
||||||
|
- PEERDNS=auto
|
||||||
|
- INTERNAL_SUBNET=10.13.13.0
|
||||||
|
- ALLOWEDIPS=0.0.0.0/0
|
||||||
|
- PERSISTENTKEEPALIVE_PEERS=15
|
||||||
|
- LOG_CONFS=true
|
||||||
|
volumes:
|
||||||
|
- $VAR-config:/config
|
||||||
|
ports:
|
||||||
|
- :51820/udp
|
||||||
|
sysctls:
|
||||||
|
- net.ipv4.conf.all.src_valid_mark=1
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
$VAR-config:
|
Loading…
Reference in New Issue
Block a user