-
Notifications
You must be signed in to change notification settings - Fork 82
Yandex
Frank Jogeleit edited this page Sep 29, 2021
·
1 revision
Send new PolicyReport Results with all available information over a S3 like API to Yandex Storage.
Enable Yandex by configure your Yandex credentials under target.yandex.accessKeyID
and target.yandex.secretAccessKey
and the related bucket with target.yandex.bucket
.
helm install policy-reporter policy-reporter/policy-reporter --set target.yandex.accessKeyID=*** --set target.yandex.secretAccessKey=*** --set target.yandex.bucket=policy-reporter -n policy-reporter --create-namespace
- Configure
target.yandex.minimumPriority
to send only results with the configured minimumPriority or above, empty means all results. (info < warning < error) - Configure
target.yandex.skipExistingOnStartup
to skip all results who already existed before the PolicyReporter started (default:true
).
target:
yandex:
accessKeyID: "" # yandex access key
secretAccessKey: "" # yandex secret access key
region: "" # yandex storage region (default: ru-central-1)
endpoint: "" # yandex storage endpoint (default: https://storage.yandexcloud.net)
bucket: "" # Yandex storage, bucket name
prefix: "" # name of prefix, keys will have format: s3://<bucket>/<prefix>/YYYY-MM-DD/YYYY-MM-DDTHH:mm:ss.s+01:00.json
minimumPriority: ""
skipExistingOnStartup: true