Kirill Semaev
Kirill Semaev
I have an instruction on https://gitlab.com/tzscan/tzscan telling that I need to install pgocalm from sources. I see that you have releases here: https://github.com/darioteixeira/pgocaml/releases Hiw can I use them? Should I...
Most of docker orchestration systems require, or at least recommend to run processes in docker as non-root. I tried it with your container, and it did work normally, so maybe...
So debugged it from very begining on my node: ``` systcl -a | grep vm.max_map_count >vm.max_map_count = 262144 cat /proc/sys/fs/file-max >1636119 ulimit -Hn >4096 docker pull quay.io/pires/docker-elasticsearch-kubernetes:6.2.3 systcl -a |...
Hi guys! As I'm using the docker container to run the node, I want all logs to be sent to stdout. Currently I see that in $HOME the `ActorLog` directory...
BUG_REPORT As I'm using AWS EKS, LoadBalancer type exposes my elastic masters. I don't need that, so I change es-svc, removing `type: LoadBalancer`, so that type will automatically change to...
--- BUG REPORT Default installation in Kubernetes fails with ``` ERROR: [1] bootstrap checks failed [1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least...
Currently the files from https://mainnet-join.zilliqa.com/seed-configuration.tar.gz are located out of the version control system and have to be mounted to the image maually/with the script. Can we consider placing them in...
In the startscript there's a giant replacement command: ``` cp /zilliqa/scripts/download_incr_DB.py /run/zilliqa/download_incr_DB.py && sed -i \"/TESTNET_NAME=/c\TESTNET_NAME= '${testnet_name}'\" /run/zilliqa/download_incr_DB.py && sed -i \"/BUCKET_NAME=/c\BUCKET_NAME= '${bucket_name}'\" /run/zilliqa/download_incr_DB.py && o1=\$(grep -oPm1 '(?
Currently when I start docker container with non-root user I get a lot of errors like: ``` profiling:/build:Cannot create directory profiling:/build/src/depends/jsonrpc/src/jsonrpc-project-build/src/jsonrpccpp/CMakeFiles/common.dir/common/specificationparser.cpp.gcda:Skip ``` Shouldn't we add `mkdir /build` step in dockerfile?...
Since we're using docker containers the best practice is sending all logs to stdout. Currently the logs are filling the filesystem of container, I have to dive into the container...