Skip to content

Commit

Permalink
Merge pull request #137 from yuvipanda/no-warn
Browse files Browse the repository at this point in the history
Remove warning about only supporting go-jsonnet
  • Loading branch information
minrk authored Jul 29, 2024
2 parents 525c48c + f4ce9bd commit c27264d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,18 +130,12 @@ def main():
"The environment variable GRAFANA_TOKEN needs to be set in order to deploying dashboards to a Grafana deployment."
)

# ensure jsonnet (go-jsonnet)
# ensure jsonnet
if not shutil.which("jsonnet"):
raise ValueError(
"No jsonnet binary was found on path! "
"Install go-jsonnet via https://github.com/google/go-jsonnet/releases."
)
jsonnet_version = subprocess.check_output(["jsonnet", "--version"], text=True)
if "go" not in jsonnet_version.casefold():
print(
"WARNING: The jsonnet binary on path doesn't seem to be go-jsonnet from https://github.com/google/go-jsonnet/releases! "
"Only that jsonnet implementation is known to work."
)

api = partial(
grafana_request,
Expand Down

0 comments on commit c27264d

Please sign in to comment.