27 lines
1.3 KiB
YAML
27 lines
1.3 KiB
YAML
|
|
# yaml-language-server: $schema=values.schema.json
|
||
|
|
argocd:
|
||
|
|
# -- The name of the chart to use for the instance
|
||
|
|
chart: nplus-instance
|
||
|
|
# -- The ArgoCD Namespace within the cluster. The ArgoCD Application will be deployed to this namespace
|
||
|
|
# You will need write privileges for this namespace
|
||
|
|
namespace: argocd
|
||
|
|
# -- ArgoCD organizes Applications in Projects. This is the name of the project, the application should be deployed to
|
||
|
|
project: default
|
||
|
|
# -- ArgoCD can also remote deploy Applications to alien clusters. The server specifies the API Endpoint of the Cluster, where
|
||
|
|
# the Application should be deployed
|
||
|
|
destinationServer: "https://kubernetes.default.svc"
|
||
|
|
# -- ArgoCD can deploy to any Namespace on the destination Server. You have to specify it.
|
||
|
|
# Default is the release namespace
|
||
|
|
destinationNamespace: "{{ .Release.Namespace }}"
|
||
|
|
# -- Toggle self healing feature for this Application
|
||
|
|
selfHeal: true
|
||
|
|
# -- Toggle pruning for this Application
|
||
|
|
prune: true
|
||
|
|
# -- Specifiy the helm repo, from which ArgoCD should load the chart. Please make sure ArgoCD gets access rights to this repo
|
||
|
|
repo: "https://git.nplus.cloud"
|
||
|
|
global:
|
||
|
|
meta:
|
||
|
|
# -- specifies that this is an Argo Installation. Used to determine the correct handler in the chart
|
||
|
|
# @internal -- Do not change
|
||
|
|
isArgo: true
|