Skip to content

Commit

Permalink
Merge branch 'master' into cilium-k8s-perf
Browse files Browse the repository at this point in the history
  • Loading branch information
smanda99 authored Dec 18, 2023
2 parents 2f092c6 + 66c6752 commit e165dcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARCH := $(shell arch)
OS_TYPE := $(shell uname)
JB_OS_TYPE := $(shell uname | tr '[:upper:]' '[:lower:]')
JSONNET := https://github.com/google/go-jsonnet/releases/download/v0.20.0/go-jsonnet_0.20.0_$(OS_TYPE)_$(ARCH).tar.gz
JB = https://github.com/jsonnet-bundler/jsonnet-bundler/releases/latest/download/jb-$(JB_OS_TYPE)-$(ARCH)
JB := https://github.com/jsonnet-bundler/jsonnet-bundler/releases/latest/download/jb-$(JB_OS_TYPE)-$(subst x86_64,amd64,$(ARCH))
BINDIR = bin
TEMPLATESDIR = templates
OUTPUTDIR = rendered
Expand Down
2 changes: 1 addition & 1 deletion dittybopper/syncer/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def create_dashboards(self):
if "tags" in dashboard_json.keys():
dashboard_json["tags"].append(self.git_commit_hash)
else:
dashboard_json["tags"] = self.git_commit_hash
dashboard_json["tags"] = [self.git_commit_hash]
try:
response = requests.post(
f"{self.grafana_url}/api/dashboards/db",
Expand Down

0 comments on commit e165dcb

Please sign in to comment.