-
Notifications
You must be signed in to change notification settings - Fork 0
Jf/validate minio #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
c7ed2de
feat: A new variable has been added to validate whether minio is used…
BetoFandino c99dce2
feat: validated with snipper value
BetoFandino aa533d0
fix: decorator of plugin loaded
BetoFandino 2988e77
fix: deleted variable not used minio_enabled
BetoFandino 07ae962
fix: deleted return config in plugin
BetoFandino 2094716
fix: validation of ilm on rules
BetoFandino c5d6b35
feat: taked action and filter to validate list
BetoFandino 77e23a3
feat: taked filter to validate list
BetoFandino aba6187
fix: return list of plugins
BetoFandino 84b7b84
feat: added comments in minio init
BetoFandino 14c1425
feat: use actions and take plugins list by filter
BetoFandino cdacb84
fix: comments in init minio
BetoFandino 1403beb
fix: format of comments
BetoFandino File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,5 +1,9 @@ | ||
| mc config host add minio http://minio:9000 {{ OPENEDX_AWS_ACCESS_KEY }} {{ OPENEDX_AWS_SECRET_ACCESS_KEY }} --api s3v4 | ||
| mc mb --ignore-existing minio/{{ BACKUP_BUCKET_NAME }} | ||
| {%- if BACKUP_MINIO_EXPIRATION_DAYS > 0 %} | ||
| # Validated if already exists expiration rule in backup bucket | ||
| if ! mc ilm ls minio/{{ BACKUP_BUCKET_NAME }} | grep -q "Expiration"; then | ||
BetoFandino marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # Add expiration rule if it doesn't exist | ||
| mc ilm add --expiry-days "{{ BACKUP_MINIO_EXPIRATION_DAYS }}" minio/{{ BACKUP_BUCKET_NAME }} | ||
| fi | ||
| {%- endif %} | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.