35 lines
1.5 KiB
YAML
Executable File
35 lines
1.5 KiB
YAML
Executable File
rabbitmq:
|
|
host: $RABBITMQ_HOST|localhost # RabbitMQ host address
|
|
port: $RABBITMQ_PORT|5672 # RabbitMQ host port
|
|
user: $RABBITMQ_USERNAME|user # RabbitMQ username
|
|
password: $RABBITMQ_PASSWORD|bitnami # RabbitMQ password
|
|
heartbeat: $RABBITMQ_HEARTBEAT|7200 # Controls AMQP heartbeat timeout in seconds
|
|
|
|
queues:
|
|
input: image_request_queue # Requests to service
|
|
output: image_response_queue # Responses by service
|
|
dead_letter: image_dead_letter_queue # Messages that failed to process
|
|
|
|
prefetch_count: 1
|
|
|
|
retry: # Controls retry behaviour for messages the processing of which failed
|
|
enabled: $RETRY|False # Toggles retry behaviour
|
|
max_attempts: $MAX_ATTEMPTS|3 # Number of times a message may fail before being published to dead letter queue
|
|
|
|
minio:
|
|
host: $STORAGE_ENDPOINT|localhost # MinIO host address
|
|
port: $STORAGE_PORT|9000 # MinIO host port
|
|
user: $STORAGE_KEY|root # MinIO user name
|
|
password: $STORAGE_SECRET|password # MinIO user password
|
|
bucket: $STORAGE_BUCKET_NAME|redaction # MinIO bucket
|
|
|
|
service:
|
|
logging_level: $LOGGING_LEVEL_ROOT|DEBUG # Logging level for log file messages
|
|
name: $SERVICE_NAME|pyinfra-service-v1 # Name of the service in the kubernetes cluster
|
|
storage_backend: $STORAGE_BACKEND|s3 # The storage to pull files to be processed from
|
|
analysis_endpoint: $ANALYSIS_ENDPOINT|"http://127.0.0.1:5000"
|
|
|
|
webserver:
|
|
host: $PROBE_SERVER_HOST|"0.0.0.0" # Probe webserver address
|
|
port: $PROBE_SERVER_PORT|8080 # Probe webserver port
|