20 lines
510 B
YAML
20 lines
510 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: palworld-server
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
# 주소를 아래와 같이 변경합니다.
|
|
repoURL: https://it-praktyk.github.io/charts
|
|
chart: palworld
|
|
targetRevision: 0.1.1 # 해당 저장소의 안정화 버전입니다.
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: palworld
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
createNamespace: true |