123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- concourse:
- db_password: concourse
- postgres_image_selector: postgres_17_image
- external_url: http://localhost:8080
- users:
- - username: user
- password: pass
- is_admin: true
- - username: user2
- password: pass2
- is_admin: true
- - username: user3
- password: pass3
- is_admin: false
- worker_additional_envs: []
- web_additional_envs: []
- network:
- http_port:
- bind_mode: published
- port_number: 8080
- certificate_id: null
- ix_volumes:
- workspace: /opt/tests/mnt/workspace
- keystore: /opt/tests/mnt/keystore
- postgres_data: /opt/tests/mnt/postgres-data
- storage:
- workspace:
- type: ix_volume
- ix_volume_config:
- dataset_name: workspace
- create_host_path: true
- keystore:
- type: ix_volume
- ix_volume_config:
- dataset_name: keystore
- create_host_path: true
- postgres_data:
- type: ix_volume
- ix_volume_config:
- dataset_name: postgres_data
- create_host_path: true
- additional_storage: []
|