Skip to content

Commit 8c85cae

Browse files
authoredMar 6, 2024
Enable running CS2 locally
* Add csgo working config * Add docker-compose,yaml * Add support for CS2 and two server libvirt * Fix filebeat pkg selection * Add enabling of filebeat service * Introduce the telemetry server * Add game stat gen * Remove git install for telemetry server * Add Logstash configuration for CS:GO console log and allow Ansible to perform Docker operations * clean up libvirt tf files * Add hostname to vms and update docker-compose * Fix logstash issue and vm host names * Fix issue to make local server run * Add instructions on getting the libvirt server running * Fix player name * Review fixes
1 parent 31550ff commit 8c85cae

32 files changed

+2493
-359
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
arm_parameters.json
22
arm_template.json
3+
csgo_scripts/autoexec.cfg
34
vm.lst
45
Dockerfile.bookworm
56
Dockerfile.focal

‎Dockerfile.bullseye

-62
This file was deleted.

‎Dockerfile ‎Dockerfile.cs2

+30-16
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,19 @@
33
############################################################
44
FROM ubuntu as build_stage
55

6-
# docker build --tag steam_ubuntu:0.1.1 .
7-
# docker run -it steam_ubuntu:0.1.1 bash
8-
# docker run -it --volume ${HOME}/Downloads/csgo_app:/data/steam/csgo_app --volume `pwd`/../csgo_scripts:/data/steam/csgo_git_repo/csgo_scripts steam_ubuntu:0.1.1 bash
9-
# --network host
10-
# cd ~/
11-
# mkdir ~/csgo_app
6+
# docker build --file Dockerfile.cs2 --tag cs2_server:0.2.8 .
7+
# docker run -it cs2_server:0.2.8 bash
8+
# docker run -it --network host --volume ${HOME}/Downloads/cs2_app:/data/steam/csgo_app --volume `pwd`/csgo_scripts:/data/steam/csgo_git_repo/csgo_scripts cs2_server:0.2.8 bash
9+
# su - steam
10+
# ~/csgo_git_repo/csgo_scripts/run_cs2_server.sh
11+
12+
# cd ~/csgo_app
1213
# export LD_LIBRARY_PATH=/home/steam/steamcmd/linux32
13-
# time steamcmd +force_install_dir ~/csgo_app/ +login anonymous +app_update 740 validate +quit
14-
# ~/csgo_git_repo/csgo_scripts/run_server.sh
14+
# time steamcmd +force_install_dir ~/csgo_app/ +login STEAM_LOGIN STEAM_PASSWORD +app_update 730 validate +quit
15+
# ~/csgo_git_repo/csgo_scripts/run_cs2_server.sh
1516
#
16-
# export LD_LIBRARY_PATH=/data/steam/csgo_app/bin
17-
# /data/steam/csgo_app/srcds_linux -game csgo -usercon -net_port_try 1 -tickrate 128 -nobots +game_type 0 +game_mode 1 +mapgroup mg_active +map de_mirage
17+
# export LD_LIBRARY_PATH=/usr/lib/games/linux64
18+
# /data/steam/csgo_app/game/bin/linuxsteamrt64/cs2 -dedicated +map de_dust2
1819

1920

2021
ARG PUID=1000
@@ -40,13 +41,14 @@ RUN dpkg --add-architecture i386 \
4041
&& apt-get install -y --no-install-recommends --no-install-suggests \
4142
ca-certificates\
4243
curl\
44+
file\
4345
htop\
46+
iproute2\
4447
less\
45-
lib32gcc-s1\
46-
lib32stdc++6\
47-
libcurl4-gnutls-dev:i386\
48+
libxcb1\
4849
locales\
4950
steamcmd\
51+
strace\
5052
vim
5153

5254
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \
@@ -58,14 +60,26 @@ RUN chown ${USER}:${USER} ${HOMEDIR}/.steam
5860
RUN mkdir ${HOMEDIR}/csgo_git_repo
5961
RUN chown ${USER}:${USER} ${HOMEDIR}/csgo_git_repo
6062

63+
ADD csgo_scripts/run_cs2_server.sh ${HOMEDIR}/
64+
RUN chown ${USER}:${USER} ${HOMEDIR}/run_cs2_server.sh
65+
66+
RUN apt update && apt upgrade -y
6167

6268
# Clean up
6369
RUN apt-get remove --purge --auto-remove -y \
6470
&& rm -rf /var/lib/apt/lists/*
6571

6672
FROM build_stage AS ubuntu-root
67-
WORKDIR ${STEAMCMDDIR}
73+
74+
# Allow the steam user to update the steam app?
75+
RUN chgrp steam /usr/lib/games && \
76+
chmod g+w /usr/lib/games
77+
78+
WORKDIR ${HOMEDIR}
6879

6980
#FROM bullseye-root AS bullseye
70-
## Switch to user
71-
#USER ${USER}
81+
# Switch to user
82+
USER ${USER}
83+
84+
RUN echo "0.2.8" >> docker_image_version
85+
RUN export LD_LIBRARY_PATH=/home/steam/steamcmd/linux32 && /usr/games/steamcmd +quit

‎Dockerfile.linuxgsm

-30
This file was deleted.
+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Design document for statistics server
2+
3+
* TODO format this correctly
4+
* TODO I think the decision on OS and docker things belong in the design not the architecture documentation.
5+
6+
## Designs
7+
8+
### VM deployment
9+
10+
* TODO put metric collection on both servers and show on statistics server
11+
12+
#### VM deployment for statistics server
13+
14+
* Using the statistics-docker-compose.yaml
15+
* TODO create a design selection.
16+
17+
#### VM deployment for the CS2 server
18+
19+
* TODO how to provide the filebeat config file
20+
* TOOD how to provide an address for the logstash server, which resides on the statistics server.
21+
22+
### docker-compose deployement
23+
24+
* Put everything into a single docker compose
25+
26+
#### Filebeat in docker-compose
27+
28+
* the csgo data dir is mounted into the filebeat container and thus enable filebeat to read the logs.
29+
30+
https://www.elastic.co/guide/en/beats/filebeat/current/setup-repositories.html
31+
32+
## Design decisions
33+
34+
### VM OS selection
35+
36+
OS to use in the VMs
37+
38+
* Selected: Ubuntu
39+
* Reasons
40+
* It is the one I am used to using on Azure.
41+
42+
Points to concider when selecting the VM OS
43+
44+
* support for ansible installation
45+
* support for installation via terraform
46+
* ability to run docker host
47+
* security
48+
49+
#### VM OS option: Alpine linux
50+
51+
#### VM OS option: Debian
52+
53+
#### VM OS option: Ubuntu
54+
55+
### Game Server deployment
56+
57+
### Statstics Server deployment
58+
59+
* VM
60+
* container on docker host
61+
* container in k8s cluster
62+
63+
### providing the game statistics html generator
64+
65+
* Selected: cron method
66+
* Reasons
67+
* ease of installation
68+
* just need to add an entry to the crontab
69+
70+
Points to concider when selecting the method for running the game statistics html
71+
72+
* Ease of installation
73+
* maintainability
74+
75+
#### game statistics generator via cron
76+
77+
* Description
78+
* OptionEvaluation A
79+
* Description:
80+
* Rating
81+
82+
#### game statistics generator via systemctl
83+
84+
* Description
85+
* OptionEvaluation A
86+
* Description:
87+
* Rating
88+
89+
#### game statistics generator via container
90+
91+
* Description
92+
* OptionEvaluation A
93+
* Description:
94+
* Rating

‎README.md

+27-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ Supported environments:
1919

2020
### References
2121

22+
* [Register game server](https://steamcommunity.com/dev/managegameservers)
23+
* [](https://www.gamingonlinux.com/2023/09/counter-strike-2-is-out-now-with-linux-support/)
24+
* [FULL COUNTER STRIKE 2 CONSOLE COMMAND LIST](https://www.ghostcap.com/cs2-commands/)
25+
2226
* [Dedicated Servers List](https://developer.valvesoftware.com/wiki/Dedicated_Servers_List)
2327
* [How to Make a Counter-Strike: Global Offensive Server on Linux](https://www.hostinger.com/tutorials/how-to-make-a-csgo-server)
2428
* [forum - Source Dedicated Server (Linux)](https://steamcommunity.com/discussions/forum/14/)
@@ -27,6 +31,7 @@ Supported environments:
2731
* [Forum - Counter-Strike: Global Offensive](https://steamcommunity.com/app/730/discussions/)
2832
* [debian csgo docker image](https://hub.docker.com/r/cm2network/csgo/)
2933
* [SteamCMD](https://developer.valvesoftware.com/wiki/SteamCMD)
34+
* [ELK stack for CSGO](https://github.com/CypressXt/elk4csgo)
3035

3136
### Overview
3237

@@ -51,7 +56,17 @@ Steps:
5156
* login to the VM
5257
* sudo -i
5358
* su - steam
54-
* ~/csgo_git_repo/csgo_scripts/run_server.sh
59+
* ~/csgo_git_repo/csgo_scripts/run_cs2_server.sh
60+
61+
#### Manually installing the csgo server
62+
63+
* ssh in as ansible
64+
* sudo -
65+
* su - steam
66+
* cd ~/csgo_app
67+
* export LD_LIBRARY_PATH=/home/steam/steamcmd/linux32
68+
* time steamcmd +force_install_dir ~/csgo_app/ +login STEAM_LOGIN STEAM_PASSWORD +app_update 730 validate +quit
69+
~ 145 minutes.
5570

5671
#### Example of deployment script
5772

@@ -192,9 +207,13 @@ Please see the `Dockerfile`
192207
* TODO can I use this command to switch mode? `map <mapname> survival`
193208
* changelevel dz_blacksite survival
194209

210+
* You can mix rescue and demolition, but not arms race.
211+
195212
### Parameters of interest
196213

197214
* mp_maxrounds
215+
* 5 ?
216+
* set the win limit to the same
198217
* mp_friendlyfire
199218
* mp_roundtime
200219
* mp_timelimit
@@ -203,9 +222,14 @@ Please see the `Dockerfile`
203222
* mp_respawnwavetime
204223
* mp_roundtime_hostage
205224
* mp_freezetime
225+
* 6
226+
* seconds from start of game until you can move, gives older players some help.
227+
* 10 seconds feels too long.
228+
* ?? warmuptime, 60
229+
* to give slower load machines a change to get in, until the game actually starts.
206230
* mp_disable_respawn_times
207231
* mp_disable_respawn_times
208232
* mp_friendlyfire
209233
* mp_limitteams
210-
mp_teamplay
211-
mp_autoteambalance
234+
* mp_teamplay
235+
* mp_autoteambalance

0 commit comments

Comments
 (0)
Please sign in to comment.