Configuring TEMPORAL_HISTORY_RETENTION_IN_DAYS in abctl deployment

Summary

User is seeking help to configure the env variable TEMPORAL_HISTORY_RETENTION_IN_DAYS in abctl deployment to save disk space.


Question

Hi, I migrated from a docker deployment to abctl, and I don’t know how to configure the env variable TEMPORAL_HISTORY_RETENTION_IN_DAYS. This is very important for me to save disk space.
Thanks a lot!



This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.

Join the conversation on Slack

["configuring", "temporal-history-retention-in-days", "abctl-deployment", "disk-space"]

Hello Juan, you need to create a custom values.yaml to override the default value.

  env_vars:
    TEMPORAL_HISTORY_RETENTION_IN_DAYS: 7```
After you can run `abctl local install --values ./values.yaml` to apply the changes.

thanks a lot <@U01MMSDJGC9>!