Skip to content

Commit

Permalink
added advanced
Browse files Browse the repository at this point in the history
  • Loading branch information
temmiland committed Feb 17, 2024
1 parent ff12327 commit 4e56d52
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ 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`
* `kubectl apply -f secret.yaml`
* `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)
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Check failure on line 21 in docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md

View workflow job for this annotation

GitHub Actions / Lint - Markdown

Line length

docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md:21:121 MD013/line-length Line length [Expected: 120; Actual: 152] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md013.md

```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.

Check failure on line 28 in docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md

View workflow job for this annotation

GitHub Actions / Lint - Markdown

Line length

docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md:28:121 MD013/line-length Line length [Expected: 120; Actual: 138] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md013.md

0 comments on commit 4e56d52

Please sign in to comment.