mirror of
https://github.com/minio/docs.git
synced 2025-11-01 17:31:26 +03:00
MinIO uses RFC3339 data and time formatting and not ISO-8601. RFC3339 requires that there be a `T` as part of the data and time separation. ISO-8601 allows a space. The documentation also currently refers to using a date in the batch framework; this should be a RFC3339 date and time. e.g. ``` mc batch start play expire.yaml mc: <ERROR> Unable to start job. We encountered an internal error, please try again.: cause(parsing time "2006-01-02 15:04:05.00Z" as "2006-01-02T15:04:05Z07:00": cannot parse " 15:04:05.00Z" as "T"). ``` --------- Co-authored-by: Ravind Kumar <ravindk89@gmail.com>
31 lines
1.3 KiB
YAML
31 lines
1.3 KiB
YAML
keyrotate:
|
|
apiVersion: v1
|
|
bucket: BUCKET
|
|
prefix: PREFIX
|
|
encryption:
|
|
type: sse-s3 # valid values are sse-s3 and sse-kms
|
|
key: <new-kms-key> # valid only for sse-kms
|
|
context: <new-kms-key-context> # valid only for sse-kms
|
|
|
|
# optional flags based filtering criteria
|
|
# for all objects
|
|
flags:
|
|
filter:
|
|
newerThan: "7d" # match objects newer than this value (e.g. 7d10h31s)
|
|
olderThan: "7d" # match objects older than this value (e.g. 7d10h31s)
|
|
createdAfter: "date" # match objects created after this date and time in RFC3339 format
|
|
createdBefore: "date" # match objects created before this date and time in RFC3339 format
|
|
tags:
|
|
- key: "name"
|
|
value: "pick*" # match objects with tag 'name', with all values starting with 'pick'
|
|
metadata:
|
|
- key: "content-type"
|
|
value: "image/*" # match objects with 'content-type', with all values starting with 'image/'
|
|
kmskey: "key-id" # match objects with KMS key-id (applicable only for sse-kms)
|
|
notify:
|
|
endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
|
|
token: "Bearer xxxxx" # optional authentication token for the notification endpoint
|
|
retry:
|
|
attempts: 10 # number of retries for the job before giving up
|
|
delay: "500ms" # least amount of delay between each retry
|