diff --git a/test-integration/example-jobs/local-image-registry-job.yaml b/test-integration/example-jobs/local-image-registry-job.yaml deleted file mode 100644 index 670c248979..0000000000 --- a/test-integration/example-jobs/local-image-registry-job.yaml +++ /dev/null @@ -1,14 +0,0 @@ -Name: Job to test using local registry images -Type: batch -Count: 1 -Tasks: - - Name: main - Engine: - Type: docker - Params: - Image: bacalhau-container-img-registry-node:5000/firstbacalhauimage - Entrypoint: - - /bin/bash - Parameters: - - "-c" - - "echo test-local-registry" diff --git a/test-integration/example-jobs/s3-job.yaml b/test-integration/example-jobs/s3-job.yaml deleted file mode 100644 index a179179a1b..0000000000 --- a/test-integration/example-jobs/s3-job.yaml +++ /dev/null @@ -1,23 +0,0 @@ -Name: S3 Job Data Access Test -Type: batch -Count: 1 -Tasks: - - Name: main - Engine: - Type: docker - Params: - Image: ubuntu:latest - Entrypoint: - - /bin/bash - Parameters: - - "-c" - - "cat /put-my-s3-data-here/example.txt" - InputSources: - - Target: "/put-my-s3-data-here" - Source: - Type: s3 - Params: - Bucket: "my-data-bucket" - Key: "section1/" - Endpoint: "http://bacalhau-minio-node:9000" - Region: "us-east-1" # If no region added, it fails, even for minio