Add operations.yaml (#21131)

This commit is contained in:
Mohit Yadav 2025-05-12 09:33:19 +05:30 committed by GitHub
parent 799d14eef4
commit 5e8565af4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 22 additions and 1 deletions

View File

@ -428,3 +428,8 @@ web:
cache-control: ${WEB_CONF_CACHE_CONTROL:-""}
pragma: ${WEB_CONF_PRAGMA:-""}
operationalConfig:
enable: ${OPERATIONAL_CONFIG_ENABLED:-true}
operationsConfigFile: ${OPERATIONAL_CONFIG_FILE:-"./conf/operations.yaml"}

15
conf/operations.yaml Normal file
View File

@ -0,0 +1,15 @@
email:
emailingEntity: ${OM_EMAIL_ENTITY:-"OpenMetadata"}
supportUrl: ${OM_SUPPORT_URL:-"https://slack.open-metadata.org"}
enableSmtpServer : ${AUTHORIZER_ENABLE_SMTP:-false}
senderMail: ${OPENMETADATA_SMTP_SENDER_MAIL:-"sender@gmail.com"}
serverEndpoint: ${SMTP_SERVER_ENDPOINT:-"smtp.gmail.com"}
serverPort: ${SMTP_SERVER_PORT:-"587"}
username: ${SMTP_SERVER_USERNAME:-""}
password: ${SMTP_SERVER_PWD:-""}
transportationStrategy: ${SMTP_SERVER_STRATEGY:-"SMTP_TLS"}
templates: ${TEMPLATES:-"collate"}
serverUrl:
openMetadataUrl: ${OPENMETADATA_SERVER_URL:-"http://localhost:8585"}

View File

@ -8,7 +8,8 @@
"properties": {
"openMetadataUrl": {
"description": "OpenMetadata Server Endpoint",
"type": "string"
"type": "string",
"default": "http://localhost:8585"
}
},
"additionalProperties": false