|
| 1 | +org: "deisci" |
| 2 | +pull_policy: "Always" |
| 3 | +docker_tag: canary |
| 4 | +# limits_cpu: "100m" |
| 5 | +# limits_memory: "50Mi" |
| 6 | +global: |
| 7 | + # Set the storage backend |
| 8 | + # |
| 9 | + # Valid values are: |
| 10 | + # - s3: Store persistent data in AWS S3 (configure in S3 section) |
| 11 | + # - azure: Store persistent data in Azure's object storage |
| 12 | + # - gcs: Store persistent data in Google Cloud Storage |
| 13 | + # - minio: Store persistent data on in-cluster Minio server |
| 14 | + storage: minio |
| 15 | + # Set the location of Workflow's PostgreSQL database |
| 16 | + # |
| 17 | + # Valid values are: |
| 18 | + # - on-cluster: Run PostgreSQL within the Kubernetes cluster (credentials are generated |
| 19 | + # automatically; backups are sent to object storage |
| 20 | + # configured above) |
| 21 | + # - off-cluster: Run PostgreSQL outside the Kubernetes cluster (configure in database section) |
| 22 | + database_location: "on-cluster" |
| 23 | + |
| 24 | +s3: |
| 25 | + # Your AWS access key. Leave it empty if you want to use IAM credentials. |
| 26 | + accesskey: "" |
| 27 | + # Your AWS secret key. Leave it empty if you want to use IAM credentials. |
| 28 | + secretkey: "" |
| 29 | + # Any S3 region |
| 30 | + region: "us-west-1" |
| 31 | + # Your buckets. |
| 32 | + database_bucket: "your-database-bucket-name" |
| 33 | + |
| 34 | +azure: |
| 35 | + accountname: "YOUR ACCOUNT NAME" |
| 36 | + accountkey: "YOUR ACCOUNT KEY" |
| 37 | + database_container: "your-database-container-name" |
| 38 | + |
| 39 | +gcs: |
| 40 | + # key_json is expanded into a JSON file on the remote server. It must be |
| 41 | + # well-formatted JSON data. |
| 42 | + key_json: '' |
| 43 | + database_bucket: "your-database-bucket-name" |
| 44 | + |
| 45 | +swift: |
| 46 | + username: "Your OpenStack Swift Username" |
| 47 | + password: "Your OpenStack Swift Password" |
| 48 | + authurl: "Swift auth URL for obtaining an auth token" |
| 49 | + # Your OpenStack tenant name if you are using auth version 2 or 3. |
| 50 | + tenant: "" |
| 51 | + authversion: "Your OpenStack swift auth version" |
| 52 | + database_container: "your-database-container-name" |
| 53 | + |
| 54 | +postgres: |
| 55 | + name: "database name" |
| 56 | + username: "database username" |
| 57 | + password: "database password" |
| 58 | + host: "database host" |
| 59 | + port: "database port" |
0 commit comments