Add instance name prefix setting
This commit is contained in:
parent
cc84926693
commit
9cff1e85ac
2 changed files with 7 additions and 0 deletions
|
|
@ -77,3 +77,7 @@ SERVALA_ODOO_HELPDESK_TEAM_ID='5'
|
|||
# OSB API authentication settings
|
||||
SERVALA_OSB_USERNAME=''
|
||||
SERVALA_OSB_PASSWORD=''
|
||||
|
||||
# Prefix for auto-generated Kubernetes resource names for service instances.
|
||||
# Format: {prefix}-{hash}. Defaults to 'si' (service instance).
|
||||
SERVALA_INSTANCE_NAME_PREFIX='si'
|
||||
|
|
|
|||
|
|
@ -270,6 +270,9 @@ SESSION_COOKIE_SECURE = not DEBUG
|
|||
DEFAULT_LABEL_KEY = "appcat.vshn.io/provider-config"
|
||||
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
|
||||
|
||||
# Prefix for auto-generated Kubernetes resource names for service instances
|
||||
SERVALA_INSTANCE_NAME_PREFIX = os.environ.get("SERVALA_INSTANCE_NAME_PREFIX", "si")
|
||||
|
||||
# TODO
|
||||
TIME_ZONE = "UTC"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue