1234567891011121314151617181920212223242526272829303132333435363738 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- affine:
- postgres_image_selector: postgres_17_image
- db_password: secret
- redis_password: secret
- additional_envs: []
- network:
- web_port:
- bind_mode: published
- port_number: 8080
- ix_volumes:
- postgres_data: /opt/tests/mnt/affine/postgres_data
- uploads: /opt/tests/mnt/affine/uploads
- config: /opt/tests/mnt/affine/config
- storage:
- uploads:
- type: ix_volume
- ix_volume_config:
- dataset_name: uploads
- create_host_path: true
- config:
- type: ix_volume
- ix_volume_config:
- dataset_name: config
- create_host_path: true
- postgres_data:
- type: ix_volume
- ix_volume_config:
- dataset_name: postgres_data
- create_host_path: true
- additional_storage: []
|