`vagrant up thanos,`:
- puppet applies then
- check service is ok [1].
The- check query interface ui is also ok [2].
For [2], I guess the data exposed are the actual one from mmca (as we don't have any overridable setup for that node in puppet).
[1]
```
$ vagrant ssh thanos > sudo -i
root@thanos:~# ip a | grep 10.168
inet 10.168.50.90/16 brd 10.168.255.255 scope global eth1
root@thanos:~# ss -tanp | grep 1919*
LISTEN 0 4096 *:19191 *:* users:(("thanos",pid=24042,fd=8))
ESTAB 0 0 [::ffff:10.168.50.90]:19191 [::ffff:10.168.0.1]:53606 users:(("thanos",pid=24042,fd=11))
ESTAB 0 0 [::ffff:10.168.50.90]:19191 [::ffff:10.168.0.1]:53610 users:(("thanos",pid=24042,fd=13))
ESTAB 0 0 [::ffff:10.168.50.90]:19191 [::ffff:10.168.0.1]:53608 users:(("thanos",pid=24042,fd=12))
ESTAB 0 0 [::ffff:10.168.50.90]:19191 [::ffff:10.168.0.1]:53612 users:(("thanos",pid=24042,fd=14))
root@thanos:~# systemctl status thanos-query | grep running
Active: active (running) since Thu 2022-07-07 09:42:15 UTC; 4min 37s ago
root@thanos:~# systemctl cat thanos-query | grep -C3 "thanos query"
[Service]
Restart=on-failure
User=prometheus
ExecStart=/opt/thanos/current/thanos query --http-address 0.0.0.0:19191 \
--store pergamon.internal.softwareheritage.org:19090 \
--store mmca.softwareheritage.org:19090
ExecReload=/bin/kill -HUP $MAINPID
```
{F5777259}