--set global.storageClass: glusterfs-storage
--set global.superuserEmail: sde-superuser@acme.com
--set global.superuserPassword: thePasswordForTheDefaultWebSuperUser
--set global.defaultFromEmail: "ACME Corp. <noreply@acme.com>"
--set global.serverEmail: host@acme.com
--set global.defaultOrg: default
--set global.feedbackEmail: sde-feedback@acme.com
--set global.supportEmail: sde-admin@acme.com
--set global.imageTag: 11d6bc5867c31c3098c721e838f1ba31b6868f31
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
The following are examples of advanced optional settings. Please review values.yaml
for the full list of options and comments. If in doubt, consult the SDE support team.
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