global:
storageClass: glusterfs-storage
sde:
superuserEmail: sde-superuser@acme.com
superuserPassword: thePasswordForTheDefaultWebSuperUser
defaultFromEmail: "ACME Corp. <noreply@acme.com>"
serverEmail: host@acme.com
defaultOrg: default
feedbackEmail: sde-feedback@acme.com
supportEmail: sde-admin@acme.com
Configuration
Configuration defaults are defined in the values.yaml
file found in the Helm chart.
Note
|
See Configure SDE in the Helm section for configuration update instructions. |
Advanced Settings
The following are examples of advanced optional settings. Please review values.yaml
in the
SD Elements Helm Chart for the full list of options and comments. If in doubt, contact support@sdelements.com.
Common Customizations
Parameter |
Comments |
Default |
|
Sets the default storageclass for all persistent volumes |
(unset) |
|
Set to |
|
|
Sets the storageclass for the database data volume, overrides global.storageClass |
(unset) |
|
Sets the size of the database data volume |
|
|
The default FROM address to send regular email as |
|
|
The default organization to create SDE users under |
default |
|
Set to 'true' to enable JITT (additional license required) |
|
|
E-mail address to which user feedback will be sent |
|
|
Set your site hostname |
|
|
The email address that error messages come from |
|
|
E-mail address to direct in-app support requests to |
|
|
The user session inactivity timeout (seconds) |
|
|
The default admin user email address |
|
|
Adjust the SDE application logging level |
|
|
Adjust the log level of the admin email process |
|
|
Adjust the wsgi/apache process logging level |
|
Jobs
Asyncronous jobs are defined in values.yaml
. You can remove default jobs and add new custom jobs.
The jobs must be included under the specifications
section and in map format.
The following are examples of custom jobs added under specifications
:
job:
specifications:
custom_job:
schedule: "01 1 * * *"
niceness: 15
command: ["/bin/sde.sh"]
args:
- "custom_management_command"
failedJobsHistoryLimit: 1
successfulJobsHistoryLimit: 1
concurrencyPolicy: Forbid
restartPolicy: OnFailure
volumeWritePermission: false
env:
- name: ENV_VAR_NAME
value: ENV_VAR_VALUE
resources:
requests:
cpu: 1
memory: 1024Mi
limits:
cpu: 2
memory: 2048Mi