From 4e56d527ac21525556048e9e251a4f41c0e216ad Mon Sep 17 00:00:00 2001 From: Tom Pietsch Date: Sat, 17 Feb 2024 21:59:41 +0100 Subject: [PATCH] added advanced --- .../current/advanced/kubernetes.md | 10 ++++---- .../current/advanced/palworld-directory.md | 25 +++++++++---------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/kubernetes.md b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/kubernetes.md index 9f8ece499..6f19d1a68 100644 --- a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/kubernetes.md +++ b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/kubernetes.md @@ -4,11 +4,11 @@ sidebar_position: 2 # Kubernetes -All files you will need to deploy this container to kubernetes are located in the [k8s folder](https://github.com/thijsvanloef/palworld-server-docker/tree/main/k8s). +Alle Dateien, die Sie benötigen, um diesen Container in Kubernetes bereitzustellen, befinden sich im [k8s-Ordner](https://github.com/thijsvanloef/palworld-server-docker/tree/main/k8s). -## Setup Palworld in kubernetes +## Einrichten von Palworld in Kubernetes -Use the following commands to setup this Palworld container in Kubernetes: +Verwenden Sie die folgenden Befehle, um diesen Palworld-Container in Kubernetes einzurichten: * `kubectl apply -f pvc.yaml` * `kubectl apply -f configmap.yaml` @@ -16,6 +16,6 @@ Use the following commands to setup this Palworld container in Kubernetes: * `kubectl apply -f service.yaml` * `kubectl apply -f deployment.yaml` -## Using helm chart +## Verwendung des Helm-Charts -The official helm chart can be found in a seperate repository, [palworld-server-chart](https://github.com/Twinki14/palworld-server-chart) +Der offizielle Helm-Chart befindet sich in einem separaten Repository, [palworld-server-chart](https://github.com/Twinki14/palworld-server-chart) diff --git a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md index 39c2e7382..f2ecbc4c1 100644 --- a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md +++ b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md @@ -2,28 +2,27 @@ sidebar_position: 1 --- -# Palworld Directory +# Palworld-Verzeichnis -Everything related to the Palworld data is inside the `/palworld` folder inside the container +Alles, was mit den Palworld-Dateien zusammenhängt, befindet sich im Ordner `/palworld` innerhalb des Containers. -## Folder structure +## Ordnerstruktur -![Folder Structure](../assets/folder_structure.jpg) +![Ordnerstruktur](../assets/folder_structure.jpg) -| Folder | Use | -|------------------------------|-------------------------------------------------------------------| -| palworld | Root folder with all the Palworld Server files | -| backups | Folder where all the backups from the `backup` command are stored | -| Pal/Saved/Config/LinuxServer | Folder with all the .ini configuration files for manual config | +| Ordner | Verwendung | +|------------------------------|------------------------------------------------------------------------| +| palworld | Stammordner mit allen Dateien des Palworld-Servers | +| backups | Ordner, in dem alle Backups des Befehls `backup` gespeichert werden | +| Pal/Saved/Config/LinuxServer | Ordner mit allen .ini-Konfigurationsdateien für manuelle Konfiguration | -## Attaching data directory to host filesystem +## Datenverzeichnis an das Host-Dateisystem anbinden -The simplest way of attaching the palworld folder to your host system is -to use the example given in the docker-compose.yml file: +Der einfachste Weg, das Palworld-Verzeichnis an Ihr Host-System anzubinden ist es das mittels docker-compose.yml bereitgestellte Beispiel zu verwenden: ```yml volumes: - ./palworld:/palworld/ ``` -This creates a `palworld` folder in the current working directory and mounts the `/palworld` folder. +Dies erstellt ein lokales `palworld`-Verzeichnis im aktuellen Arbeitsverzeichnis und bindet das `/palworld`-Verzeichnis des Containers an.