Skip to content

Commit

Permalink
Fix additional spots for kettle project/dataset location
Browse files Browse the repository at this point in the history
Signed-off-by: Davanum Srinivas <[email protected]>
  • Loading branch information
dims committed Apr 18, 2024
1 parent 4fc0972 commit 6899d6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion metrics/configs/job-flakes-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ query: |
date(started) stamp,
date(date_add(date(started), -dayofweek(started), "day")) wk, /* TODO(fejta): remove or use */
result
FROM [k8s_infra_kettle:build.all]
FROM [kubernetes-public:k8s_infra_kettle.all]
where
started > date_add(current_timestamp(), -7, "DAY")
and version != "unknown"
Expand Down
2 changes: 1 addition & 1 deletion metrics/configs/pr-consistency-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ query: |
regexp_extract(metadata.value, r'^[^,]+,\d+:([^,"]+)') commit, /* git hash of pr */
result,
cast(date(started) as date) day
FROM [k8s_infra_kettle:build.all]
FROM [kubernetes-public:k8s_infra_kettle.all]
where
/* Select results that have occurred on or after the day of <LAST_DATA_TIME> (those results were
for the day before), but don't include results from today, only return results for complete days. */
Expand Down
2 changes: 1 addition & 1 deletion metrics/configs/weekly-consistency-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ query: |
date(started) stamp,
date(date_add(date(started), -dayofweek(started), "day")) wk, /* group by week */
result
FROM [k8s_infra_kettle:build.all]
FROM [kubernetes-public:k8s_infra_kettle.all]
where
started > date_add(current_timestamp(), -90, "DAY")
and version != "unknown"
Expand Down
2 changes: 1 addition & 1 deletion triage/update_summaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -exu

# dataset table to query for build info
readonly BUILD_DATASET_TABLE="${BUILD_DATASET_TABLE:-"k8s_infra_kettle:build.all"}"
readonly BUILD_DATASET_TABLE="${BUILD_DATASET_TABLE:-"kubernetes-public:k8s_infra_kettle.all"}"

# dataset to write temp results to for triage
readonly TRIAGE_DATASET_TABLE="${TRIAGE_DATASET_TABLE:-"k8s-gubernator:temp.triage"}"
Expand Down

0 comments on commit 6899d6a

Please sign in to comment.