You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 21, 2023. It is now read-only.
This works well if the person executing the file already has jq installed but fails with the following error otherwise:
bash: line 76: jq: command not found
To make the script run the use has to install jq but there might be better solutions to solve this so the user doesn't need to take any extra steps. For example we could replace:
Sinece #222 the istio-configuration/configure-istio.sh, quickstart/expose-keptn.sh and quickstart/multistage-delivery.sh use jq to parse JSON output of the
kubectl version -ojsoncommand.This works well if the person executing the file already has jq installed but fails with the following error otherwise:
To make the script run the use has to install jq but there might be better solutions to solve this so the user doesn't need to take any extra steps. For example we could replace:
with:
which would now only require python to run (preinstalled on most systems).