Skip to content

Commit

Permalink
Update provider_map.py (#4890)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcouzens authored Feb 2, 2024
1 parent 29146bc commit 31200fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koku/api/report/ocp/provider_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def __init__(self, provider, report_type, schema_name):
"tag_column": "pod_labels", # default for if a report type does not have a tag_column
"report_type": {
"costs": {
"tag_column": "pod_labels",
"tag_column": "all_labels",
"tables": {"query": OCPUsageLineItemDailySummary},
"aggregates": {
"sup_raw": Sum(Value(0, output_field=DecimalField())),
Expand Down Expand Up @@ -215,7 +215,7 @@ def __init__(self, provider, report_type, schema_name):
"sum_columns": ["cost_total", "infra_total", "sup_total"],
},
"costs_by_project": {
"tag_column": "pod_labels",
"tag_column": "all_labels",
"tables": {"query": OCPUsageLineItemDailySummary},
"aggregates": {
"sup_raw": Sum(Value(0, output_field=DecimalField())),
Expand Down

0 comments on commit 31200fe

Please sign in to comment.