25 lines
648 B
YAML
25 lines
648 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: palworld-server
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
# 저장소 등록 없이 URL을 직접 입력합니다.
|
|
repoURL: https://charts.sebastian-muthwill.de
|
|
chart: palworld
|
|
targetRevision: 0.12.2
|
|
helm:
|
|
# 핵심: 여기서 보안 검사를 강제로 건너뛰도록 지시합니다.
|
|
parameters:
|
|
- name: "insecureSkipVerify"
|
|
value: "true"
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: palworld
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
createNamespace: true |