For some reason thee timescaledb-tune was not present on my installation.
apt install acl
add-apt-repository ppa:timescale/timescaledb-ppa2
go get github.com/timescale/timescaledb-tune/cmd/timescaledb-tune
./go/bin/timescaledb-tune --yes --quiet
configure
# Within /etc/postgresql/13/main/postgresql.conf
listen_addresses = '*'
# Within /etc/postgresql/13/main/pg_hba.conf
ostnossl all all 0.0.0.0/0 trust
psql -c "alter user postgres with password 'postgres'"
Can you tell me what the issues were? Our current installation brings down timescale2 and pgsql13, changing the password to the default in the pgsql role (see ansible/roles/postgresql/defaults/main.yml).
@chayim I've bumped into some issues that got resolved after doing the following changes
installation extra steps
configure