mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
20 lines
884 B
YAML
20 lines
884 B
YAML
# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
cleanup:
|
|
# Keep Pods/Job logs after successful run.
|
|
deletePodsOnSuccess: true
|
|
# When deletePodsOnSuccess is enabled, the pod will be deleted after configured seconds.
|
|
deletePodsOnSuccessTimeout: 60
|
|
# Keep persistence on deletion of this release.
|
|
keepPVCOnDelete: false
|
|
# Keep additional resources, like certificates on deletion of this release.
|
|
keepRessourceOnDelete: true
|
|
debug:
|
|
# should activate debug output in all components and even allow e.g. successfully executed jobs
|
|
# to stay available. This is going to be implemented on a case by case basis when we actually
|
|
# need debugging in a component.
|
|
# Use: `{{ if .Values.debug.enabled }}"DEBUG"{{ else }}"WARN"{{ end }}`
|
|
enabled: false
|
|
...
|