HermesGermany / galapagos

DevOps Self-Service Software for Apache Kafka, including an opinionated approach on how to use Kafka for event-driven enterprise architecture.
GNU Affero General Public License v3.0
82 stars 22 forks source link

yq installation needs help #291

Open jimbethancourt opened 1 year ago

jimbethancourt commented 1 year ago

I get the message below when running ./setup_demo.sh

./setup-demo.sh: line 98: ./bin/yq: Permission denied

Could you please create a ./bin directory and auto-install yq, similar to what you do for keycloak?

Environment: Ubuntu 20.04 on WSL

Thanks!

jimbethancourt commented 1 year ago

You could use something like

mkdir bin
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O ./bin/yq &&\
    chmod +x ./bin/yq