Jump to content

impulse

Scallywag
  • Content Count

    2
  • Joined

  • Last visited

Community Reputation

0 Neutral

About impulse

  • Rank
    Pathfinder
  1. Todays update did elevate the linux server version to build 7031483, but still showing version v524.11, the Client is now at v527.3 (Rev. 124054). Resulting in still not being able to see the Linux server in the ingame server list, or being able to connect to it via steam server list. And FYI: i'm also testing a 2x2 Grid in a Kubernetes cluster, server is running and seen by steam... only issue is -> see above...
  2. Spinning up a docker container with atlas is not the issue... but the version missmatch is! here is an example of a working Dockerfile: FROM ubuntu:18.04 # quash warnings ARG DEBIAN_FRONTEND=noninteractive # Set some Variables ENV TZ "Europe/Berlin" # install atlas-server-tools prerequisites RUN apt-get update && apt-get upgrade -y \ && apt-get install -y --no-install-recommends \ perl-modules \ curl \ lsof \ libc6-i386 \ lib32gcc1 \ bzip2 \ jq \ bash \ screen \ vim \ unzip \ tzdata \ wine-stable \ xvfb \ ca-certificates \ wget \ findutils \ coreutils \ perl \ rsync \ sed \ tar RUN dpkg --add-architecture i386 \ && apt-get install -y --no-install-recommends \ dnsutils \ net-tools \ libssl1.0.0 \ libprotobuf-dev \ libidn11 \ librtmp1 \ libgssapi-krb5-2 \ libcompress-raw-zlib-perl RUN useradd -s /bin/bash steam \ && mkdir -p /home/steam/atlas_map/ \ && chown -R steam.steam /home/steam/atlas_map # prepare steamcmd RUN mkdir -p /home/steam/steamcmd \ && cd /home/steam/steamcmd \ && wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz \ && tar -xf steamcmd_linux.tar.gz \ && rm steamcmd_linux.tar.gz \ && chown -R steam.steam /home/steam/steamcmd \ && su - steam -c "/home/steam/steamcmd/steamcmd.sh +quit" RUN curl -sL http://git.io/fh4HA | /bin/bash -s steam \ && apt-get install redis-server -y \ && mkdir -p /home/steam/Steam \ && chown -R steam.steam /home/steam/Steam COPY configs/shell/ /root/ COPY --chown=steam configs/shell/ /home/steam/ COPY entrypoint.sh /entrypoint.sh COPY --chown=steam configs/map/ /home/steam/atlas_map/ COPY --chown=steam configs/etc/atlasmanager/atlasmanager.cfg /etc/atlasmanager/atlasmanager.cfg COPY --chown=steam configs/etc/atlasmanager/instances/main.cfg /etc/atlasmanager/instances/main.cfg COPY --chown=steam configs/etc/atlasmanager/instances/instance.cfg /etc/atlasmanager/instances/instance.cfg.example ENTRYPOINT [ "sh", "/entrypoint.sh" ] I did manage to spin up a 2x2 Grid with this and the servers are listed in my steam server list. But at the current moment (12.07.2021) the linux server has version v524.11 and the game client has v526.9 (rev. 123946), which results in not listing the server in the ingame favorits. And directly connecting via steam server list always results in a Network Failure: "Unable to query server info for invite"
×
×
  • Create New...