Murilo Maciel Curti
Murilo Maciel Curti

Reputation: 3121

Kubernetes on Azure setup

I'm trying to setup the Kubernetes default cluster on Azure from an Ubuntu VM.

I'm using this command

export KUBERNETES_PROVIDER=azure; wget -q -O - https://get.k8s.io | bash

But the process stops with the message about jq in PATH

Unpacking kubernetes release v1.2.4 Creating a kubernetes on azure... ... Starting cluster using provider: azure ... calling verify-prereqs Couldn't find jq in PATH

Is it necessary any other step before doing this?

Thanks

Upvotes: 0

Views: 198

Answers (1)

Murilo Maciel Curti
Murilo Maciel Curti

Reputation: 3121

I've found the answer.

JQ Json Processor was missing on the machine. https://stedolan.github.io/jq/download/

Installing it fixed the problem sudo apt-get install jq

It wasn't in the Kubernets prereqs documentation. I think would be nice to have the complete list of dependencies in the docs and in the documentation.

Thanks

Upvotes: 1

Related Questions