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
spec:
project: default
source:
# 주소 끝에 /를 빼고 명확하게 기입합니다.
repoURL: https://jammsen.github.io/docker-palworld-dedicated-server
chart: palworld-dedicated-server
targetRevision: 0.2.0
destination:
server: https://kubernetes.default.svc
namespace: palworld namespace: palworld
syncPolicy: spec:
automated: replicas: 1
prune: true selector:
selfHeal: true matchLabels:
createNamespace: true app: palworld
template:
metadata:
labels:
app: palworld
spec:
containers:
- name: palworld
image: jammsen/palworld-dedicated-server:latest
ports:
- 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