6156d07013
Gitea Branch PR & Ansible Deployment / Check and Create PR (push) Successful in 47s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (lunafreya) (push) Failing after 1m48s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (ultima) (push) Failing after 5m52s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rinoa) (push) Failing after 8m16s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (aranea) (push) Successful in 9m25s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rikku) (push) Successful in 9m31s
Gitea Branch PR & Ansible Deployment / PR Merge (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (aranea) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (lunafreya) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rikku) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rinoa) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (ultima) (push) Has been skipped
44 lines
1.9 KiB
Django/Jinja
44 lines
1.9 KiB
Django/Jinja
{% import 'app-configs/_macros/hashivault_kv2.j2' as vault %}
|
|
|
|
<?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>\{\{ vault.kv2_field\('env', 'SIGNOZ_S3_ACCESS_KEY', vault_engine_mount_point) }}</access_key_id>
|
|
<secret_access_key>\{\{ vault.kv2_field\('env', 'SIGNOZ_S3_SECRET_KEY', vault_engine_mount_point) }}</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>
|