Update palworld.yaml

This commit is contained in:
2026-02-20 07:47:14 +00:00
parent 8d23697ac2
commit 50e749b02f

View File

@@ -1,20 +1,55 @@
apiVersion: argoproj.io/v1alpha1 ---
kind: Application apiVersion: v1
kind: Namespace
metadata:
name: palworld
---
apiVersion: apps/v1
kind: Deployment
metadata: metadata:
name: palworld-server name: palworld-server
namespace: argocd namespace: palworld
spec: spec:
project: default replicas: 1
source: selector:
# 주소 끝에 /를 빼고 명확하게 기입합니다. matchLabels:
repoURL: https://jammsen.github.io/docker-palworld-dedicated-server app: palworld
chart: palworld-dedicated-server template:
targetRevision: 0.2.0 metadata:
destination: labels:
server: https://kubernetes.default.svc app: palworld
namespace: palworld spec:
syncPolicy: containers:
automated: - name: palworld
prune: true image: jammsen/palworld-dedicated-server:latest
selfHeal: true ports:
createNamespace: true - containerPort: 8211
protocol: UDP
env:
- name: PLAYERS
value: "16"
- name: SERVER_NAME
value: "MyMiniPC-Palworld"
# 64GB 램을 활용하기 위한 리소스 설정
resources:
requests:
memory: "8Gi"
cpu: "2"
limits:
memory: "16Gi"
cpu: "4"
---
apiVersion: v1
kind: Service
metadata:
name: palworld-service
namespace: palworld
spec:
type: NodePort
selector:
app: palworld
ports:
- port: 8211
targetPort: 8211
protocol: UDP
nodePort: 30211