In our deployment.yaml file we have basically they same instructions for each environment, but there are some settings I might want to se differently per environment, e.g. schedules.
Can I e.g. define a default profile, where I would put the steps once and then have just have override values per environment?
default:
workflows:
- name: "Load_Daily"
schedule:
quartz_cron_expression: "0 1 * * * ?" #
timezone_id: "Europe/Helsinki"
pause_status: "PAUSED"
job_clusters:
- job_cluster_key: "default"
<<: *basic-static-cluster
max_concurrent_runs: 1
prod:
workflows:
- name: "Load_Daily"
schedule:
quartz_cron_expression: "0 */1 * * * ?" #
pause_status: "UNPAUSED"