Closed kevingrismore closed 10 months ago
When using prefect.yaml, allows the user to supply a MinIO Credentials block name for the push_to_s3 and pull_from_s3 deployment steps.
prefect.yaml
push_to_s3
pull_from_s3
build: null push: - prefect_aws.deployments.steps.push_to_s3: bucket: test folder: my-project credentials: "{{ prefect.blocks.minio-credentials.test-creds }}" pull: - prefect_aws.deployments.steps.pull_from_s3: bucket: test folder: my-project credentials: "{{ prefect.blocks.minio-credentials.test-creds }}" deployments: - name: minio-stored-deployment entrypoint: flow.py:my_minio_flow work_pool: name: my-ecs-pool is_schedule_active: true
Docstring update for push_to_s3 and pull_from_s3:
pre-commit
pre-commit install && pre-commit run --all
mkdocs serve
When using
prefect.yaml
, allows the user to supply a MinIO Credentials block name for thepush_to_s3
andpull_from_s3
deployment steps.Example
Screenshots
Docstring update for
push_to_s3
andpull_from_s3
:Checklist
pre-commit
checks.pre-commit install && pre-commit run --all
locally for formatting and linting.mkdocs serve
view documentation locally.