Volodymyr Stoiko

Results 15 comments of Volodymyr Stoiko

Using portable pypy causes errors on updating CA certiticates via `update-ca-certificates` ``` /usr/bin/openssl: symbol lookup error: /usr/bin/openssl: undefined symbol: BIO_f_zlib /usr/bin/openssl: symbol lookup error: /usr/bin/openssl: undefined symbol: BIO_f_zlib /usr/bin/openssl: symbol...

Worked for me with pypy2 ``` PYPY_VERSION=v6.0.0 if [[ -e $HOME/pypy2-$PYPY_VERSION-linux64.tar.bz2 ]]; then tar -xjf $HOME/pypy2-$PYPY_VERSION-linux64.tar.bz2 rm -rf $HOME/pypy2-$PYPY_VERSION-linux64.tar.bz2 else wget -O - https://bitbucket.org/pypy/pypy/downloads/pypy2-${PYPY_VERSION}-linux64.tar.bz2 |tar -xjf - fi mv -n...

The way I handled it for my issue is by fixing this prefix with templating. I'm using Fabio with Nomad and Consul, so for the Fabio config I just added...

I had the same issue. It was annoying as same setup for Mimir works fine. And then I just copied advertise address/port configuration from Mimir into Loki (`advertise_addr` and `advertise_port`)...

That actually didn't fix the issue :/ Those parameters are accepted but doesn't look like have any effect

Ok, so here the part of config with all the advertise addresses and ports replaced ``` memberlist: [[ $alloc_index := env "NOMAD_ALLOC_INDEX" ]] [[- $gossip_service := (print "loki-gossip-" $alloc_index) ]]...

Using ``` gorm.io/driver/postgres v1.3.6 gorm.io/gorm v1.23.5 ``` and running into the same issue

@nathanejohnson I somehow forgot about this. So do you think this still makes sense or just docs update enough?

Updates regarding PF_RING 1. Recent kind VMs use kernel version not supported by PF_RING yet, so it is not possible to have it in kind as for now. 2. I've...