-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support mlflow object versioning (#784)
The underlying terraform module supports this, but we didn't add the plumbing to be able to wire it in.
- Loading branch information
1 parent
4ab2e1a
commit 7dcb3d5
Showing
4 changed files
with
26 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Enable Bucket Versioning | ||
|
||
In case you want to enable s3 object versioning, this is supported via a small terraform configuration. Go to `mlflow/terraform/main.tf` and within the manual section of the `aws` module, add: | ||
|
||
```tf | ||
module "aws" { | ||
## BEGIN MANUAL SECTION <- be sure to put it w/in these | ||
enable_versioning = true | ||
## END MANUAL SECTION | ||
} | ||
``` | ||
|
||
Then run a quick `plural deploy --commit "enable mlflow s3 versioning"` and you'll be set. |
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
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
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