You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel
14
14
### Added
15
15
16
16
-[#1660](https://github.com/thanos-io/thanos/pull/1660) Add a new `--prometheus.ready_timeout` CLI option to the sidecar to set how long to wait until Prometheus starts up.
17
+
-[#1573](https://github.com/thanos-io/thanos/pull/1573)`AliYun OSS` object storage, see [documents](docs/storage.md#aliyun-oss-configuration) for further information.
# Be careful on GOCACHE. Those tests are sometimes using built Thanos/Prometheus binaries directly. Don't cache those.
205
205
@rm -rf ${GOCACHE}
206
-
@echo ">> running all tests. Do export THANOS_SKIP_GCS_TESTS='true' or/and THANOS_SKIP_S3_AWS_TESTS='true' or/and THANOS_SKIP_AZURE_TESTS='true' and/or THANOS_SKIP_SWIFT_TESTS='true' and/or THANOS_SKIP_TENCENT_COS_TESTS='true' if you want to skip e2e tests against real store buckets"
206
+
@echo ">> running all tests. Do export THANOS_SKIP_GCS_TESTS='true' or/and THANOS_SKIP_S3_AWS_TESTS='true' or/and THANOS_SKIP_AZURE_TESTS='true' and/or THANOS_SKIP_SWIFT_TESTS='true' and/or THANOS_SKIP_ALIYUN_OSS_TESTS='true' and/or THANOS_SKIP_TENCENT_COS_TESTS='true' if you want to skip e2e tests against real store buckets"
207
207
@go test$(shell go list ./... | grep -v /vendor/);
NOTE: Currently Thanos requires strong consistency (write-read) for object store implementation.
65
66
@@ -336,3 +337,20 @@ config:
336
337
```
337
338
338
339
Set the flags `--objstore.config-file` to reference to the configuration file.
340
+
341
+
## AliYun OSS Configuration
342
+
In order to use AliYun OSS object storage, you should first create a bucket with proper Storage Class , ACLs and get the access key on the AliYun cloud. Go to [https://www.alibabacloud.com/product/oss](https://www.alibabacloud.com/product/oss) for more detail.
343
+
344
+
To use AliYun OSS object storage, please specify following yaml configuration file in `objstore.config*` flag.
345
+
346
+
[embedmd]:# (flags/config_bucket_aliyunoss.txt $)
347
+
```$
348
+
type: ALIYUNOSS
349
+
config:
350
+
endpoint: ""
351
+
bucket: ""
352
+
access_key_id: ""
353
+
access_key_secret: ""
354
+
```
355
+
356
+
Use --objstore.config-file to reference to this configuration file.
0 commit comments