From e3e54c25f339fb435bf458f10a52ee5e9b913ff2 Mon Sep 17 00:00:00 2001 From: GUNA <161329677+GunasekaranRaja10@users.noreply.github.com> Date: Tue, 27 Feb 2024 13:35:09 +0530 Subject: [PATCH] Create Sales_1.yaml --- Sales_1.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Sales_1.yaml diff --git a/Sales_1.yaml b/Sales_1.yaml new file mode 100644 index 0000000..1b3a805 --- /dev/null +++ b/Sales_1.yaml @@ -0,0 +1,23 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: sales-dashboard-data +data: + sales.json: | + { + "total_sales": 100000, + "top_selling_products": [ + {"product": "Product A", "amount": 30000}, + {"product": "Product B", "amount": 25000}, + {"product": "Product C", "amount": 20000}, + {"product": "Product D", "amount": 15000}, + {"product": "Product E", "amount": 10000} + ], + "monthly_sales": [ + {"month": "January", "amount": 15000}, + {"month": "February", "amount": 18000}, + {"month": "March", "amount": 20000}, + {"month": "April", "amount": 22000}, + {"month": "May", "amount": 25000} + ] + }