Change PostgreSQL cluster locale to C.UTF-8
After e74066e3, the only remaining thing that uses the en_US.UTF-8 locale is PostgreSQL:
roles/postgres/files/upgrade_pg.shroles/postgres/tasks/main.ymlroles/postgres/templates/postgresql.conf.j2
Changing the files is not enough, the PostgreSQL clusters need to be migrated to the C.UTF-8 locale by dumping and recreating them with initdb --locale=C.UTF-8 --encoding=UTF8 ....