44 lines
2.1 KiB
Django/Jinja
44 lines
2.1 KiB
Django/Jinja
{% set vault_addr = 'https://vault.trez.wtf' %}
|
|
{% set secrets_path = 'rinoa-docker/env' %}
|
|
<?xml version="1.0"?>
|
|
<clickhouse>
|
|
<storage_configuration>
|
|
<disks>
|
|
<default>
|
|
<keep_free_space_bytes>10485760</keep_free_space_bytes>
|
|
</default>
|
|
<s3>
|
|
<type>s3</type>
|
|
<!-- For S3 cold storage,
|
|
if region is us-east-1, endpoint can be https://<bucket-name>.s3.amazonaws.com
|
|
if region is not us-east-1, endpoint should be https://<bucket-name>.s3-<region>.amazonaws.com
|
|
For GCS cold storage,
|
|
endpoint should be https://storage.googleapis.com/<bucket-name>/data/
|
|
-->
|
|
<endpoint>http://minio:9000/signoz/data</endpoint>
|
|
<access_key_id>{{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token)['secret']['SIGNOZ_S3_ACCESS_KEY'] }}</access_key_id>
|
|
<secret_access_key>{{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token)['secret']['SIGNOZ_S3_SECRET_KEY'] }}</secret_access_key>
|
|
<!-- In case of S3, uncomment the below configuration in case you want to read
|
|
AWS credentials from the Environment variables if they exist. -->
|
|
<!-- <use_environment_credentials>true</use_environment_credentials> -->
|
|
<!-- In case of GCS, uncomment the below configuration, since GCS does
|
|
not support batch deletion and result in error messages in logs. -->
|
|
<!-- <support_batch_delete>false</support_batch_delete> -->
|
|
</s3>
|
|
</disks>
|
|
<policies>
|
|
<tiered>
|
|
<volumes>
|
|
<default>
|
|
<disk>default</disk>
|
|
</default>
|
|
<s3>
|
|
<disk>s3</disk>
|
|
<perform_ttl_move_on_insert>0</perform_ttl_move_on_insert>
|
|
</s3>
|
|
</volumes>
|
|
</tiered>
|
|
</policies>
|
|
</storage_configuration>
|
|
</clickhouse>
|