-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable minio for s3 related deployments (#541)
**Which issue is resolved by this Pull Request:** Resolves # #508 **Description of your changes:** - remove minio-pvc - remove minio deployment - remove minio-service **Testing:** - [ ] Unit tests pass - [x] e2e tests pass - Details about new tests (If this PR adds a new feature) - Details about any manual tests performed - configure s3-only deployment and make sure objects are presented in s3 buckets after pipeline run.
- Loading branch information
Showing
9 changed files
with
22 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
awsconfigs/apps/pipeline/s3/disable-minio-server-resources.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
$patch: delete | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: minio | ||
namespace: kubeflow | ||
--- | ||
$patch: delete | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: minio-pvc | ||
namespace: kubeflow | ||
--- | ||
$patch: delete | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: minio-service | ||
namespace: kubeflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 0 additions & 52 deletions
52
charts/apps/kubeflow-pipelines/rds-s3/templates/Deployment/minio-kubeflow-Deployment.yaml
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
...ines/rds-s3/templates/PersistentVolumeClaim/minio-pvc-kubeflow-PersistentVolumeClaim.yaml
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
charts/apps/kubeflow-pipelines/rds-s3/templates/Service/minio-service-kubeflow-Service.yaml
This file was deleted.
Oops, something went wrong.
52 changes: 0 additions & 52 deletions
52
charts/apps/kubeflow-pipelines/s3-only/templates/Deployment/minio-kubeflow-Deployment.yaml
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
...nes/s3-only/templates/PersistentVolumeClaim/minio-pvc-kubeflow-PersistentVolumeClaim.yaml
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
charts/apps/kubeflow-pipelines/s3-only/templates/Service/minio-service-kubeflow-Service.yaml
This file was deleted.
Oops, something went wrong.