1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- authentik:
- postgres_image_selector: postgres_17_image
- db_password: authentik
- redis_password: authentik
- secret_key: authentik
- mount_docker_socket: true
- setup_email: false
- email:
- host: smtp.test.com
- port: 587
- from: authentik@test2.com
- username: test
- password: testing123
- security: tls
- additional_envs: []
- run_as:
- user: 568
- group: 568
- network:
- http_port:
- bind_mode: published
- port_number: 8080
- https_port:
- bind_mode: published
- port_number: 8443
- certificate_id: null
- ix_volumes:
- postgres_data: /opt/tests/mnt/postgres-data
- media: /opt/tests/mnt/media
- templates: /opt/tests/mnt/templates
- certs: /opt/tests/mnt/certs
- storage:
- media:
- type: ix_volume
- ix_volume_config:
- dataset_name: media
- create_host_path: true
- templates:
- type: ix_volume
- ix_volume_config:
- dataset_name: templates
- create_host_path: true
- certs:
- type: ix_volume
- ix_volume_config:
- dataset_name: certs
- create_host_path: true
- postgres_data:
- type: ix_volume
- ix_volume_config:
- dataset_name: postgres_data
- create_host_path: true
- additional_storage: []
|