dagster: # =========================================================================== # CODE LOCATION - distributed-execution # =========================================================================== # Deploys this repository as a Dagster code location so the reference jobs # appear in the UI alongside production workflows. # MANAGED BY GITLAB CI/CD - DO NOT CHANGE MANUALLY dagster-user-deployments: deployments: - name: distributed-execution location_name: distributed-execution enabled: true enableSubchart: true codeServerArgs: - "--host" - "0.0.0.0" - "--port" - "4000" - "--python-file" - "src/distributed_execution/repository.py" envFrom: - secretRef: name: distributed-execution-dagster-db-secret - configMapRef: name: distributed-execution-dagster-db-config image: pullPolicy: IfNotPresent # $CI_REGISTRY_IMAGE for this project - the pipeline pushes here, so anything # else is a reference to an image nobody builds. repository: code.europa.eu:4567/simpl/simpl-open/data/supporting-data-services/distributed-execution/distributed-execution tag: 0.0.0 # DO NOT CHANGE - replaced automatically by the pipeline before releasing port: 4000 resources: requests: cpu: 100m memory: 256Mi limits: cpu: 500m memory: 512Mi livenessProbe: enabled: true periodSeconds: 30 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: enabled: true periodSeconds: 10 timeoutSeconds: 3 failureThreshold: 3