From 51514d676e9323dd23291cc91e50caa55247e173 Mon Sep 17 00:00:00 2001 From: John Skinner Date: Wed, 31 Jan 2024 11:45:09 -0600 Subject: [PATCH] update readme and helm values for new release --- README.md | 14 ++++++++++---- helm/values.yaml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0633b42..17189d9 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,13 @@ Run Enshrouded dedicated server in a container. Optionally includes helm chart f The processes within the container do **NOT** run as root. Everything runs as the user steam (gid:10000/uid:10000 by default). If you exec into the container, you will drop into `/home/steam` as the steam user. Enshrouded will be installed to `/home/steam/enshrouded`. Any persistent volumes should be mounted to `/home/steam/enshrouded/savegame` and be owned by 10000:10000. -In all of the examples below the image tag is set to `v2.0.4` which is the current latest release. I will update the examples each time I cut a new release. This is to avoid forcing potentially breaking changes if your tag is set to `latest` and you always pull. Please review my release notes for each version between your current and your target before upgrading. +In all of the examples below the image tag is set to `v2.0.5` which is the current latest release. I will update the examples each time I cut a new release. This is to avoid forcing potentially breaking changes if your tag is set to `latest` and you always pull. Please review my release notes for each version between your current and your target before upgrading. + +### Proton and Wine based images + +latest and semantic versioned (vN.N.N) image tags are Wine based images. If you would like to try my Proton (GE-Proton) based image, use the proton-latest tag. + +If testing shows that the Proton image is substantially more performant than the Wine image, I may retire the Wine image. ### Ports @@ -49,7 +55,7 @@ docker run \ --env=SERVER_PASSWORD='ChangeThisPlease' \ --env=GAME_PORT=15636 \ --env=QUERY_PORT=15637 \ - sknnr/enshrouded-dedicated-server:v2.0.4 + sknnr/enshrouded-dedicated-server:v2.0.5 ``` ### Docker Compose @@ -70,7 +76,7 @@ compose.yaml file: ```yaml services: enshrouded: - image: sknnr/enshrouded-dedicated-server:v2.0.4 + image: sknnr/enshrouded-dedicated-server:v2.0.5 ports: - "15636:15636/udp" - "15637:15637/udp" @@ -106,7 +112,7 @@ podman run \ --env=SERVER_PASSWORD='ChangeThisPlease' \ --env=GAME_PORT=15636 \ --env=QUERY_PORT=15637 \ - docker.io/sknnr/enshrouded-dedicated-server:v2.0.4 + docker.io/sknnr/enshrouded-dedicated-server:v2.0.5 ``` ### Kubernetes diff --git a/helm/values.yaml b/helm/values.yaml index 39158d3..afdeff8 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -1,5 +1,5 @@ image: sknnr/enshrouded-dedicated-server -imageTag: v2.0.4 +imageTag: v2.0.5 # serviceType should be LoadBalancer or NodePort serviceType: LoadBalancer resources: