19 lines
496 B
YAML
19 lines
496 B
YAML
{{- if .Values.capabilityScan.enabled }}
|
|
apiVersion: dot-ai.devopstoolkit.live/v1alpha1
|
|
kind: CapabilityScanConfig
|
|
metadata:
|
|
name: default-scan
|
|
annotations:
|
|
"helm.sh/hook": post-install,post-upgrade
|
|
"helm.sh/hook-weight": "10"
|
|
spec:
|
|
mcp:
|
|
endpoint: http://dot-ai:3456/api/v1/tools/manageOrgData
|
|
authSecretRef:
|
|
name: dot-ai-secrets
|
|
key: auth-token
|
|
{{- with .Values.capabilityScan.debounceWindowSeconds }}
|
|
debounceWindowSeconds: {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|