Skip to content

Commit 16e708a

Browse files
authored
Merge pull request #4016 from airqo-platform/staging
move to production
2 parents a3cb024 + e09fa9b commit 16e708a

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

k8s/auth-service/values-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ app:
66
replicaCount: 3
77
image:
88
repository: eu.gcr.io/airqo-250220/airqo-auth-api
9-
tag: prod-f3a0213d-1733408157
9+
tag: prod-a3cb024a-1733435812
1010
nameOverride: ''
1111
fullnameOverride: ''
1212
podAnnotations: {}

k8s/auth-service/values-stage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ app:
66
replicaCount: 2
77
image:
88
repository: eu.gcr.io/airqo-250220/airqo-stage-auth-api
9-
tag: stage-73463ae7-1733386665
9+
tag: stage-95dea6dd-1733435752
1010
nameOverride: ''
1111
fullnameOverride: ''
1212
podAnnotations: {}

k8s/exceedance/values-prod-airqo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ app:
44
configmap: env-exceedance-production
55
image:
66
repository: eu.gcr.io/airqo-250220/airqo-exceedance-job
7-
tag: prod-f3a0213d-1733408157
7+
tag: prod-a3cb024a-1733435812
88
nameOverride: ''
99
fullnameOverride: ''

k8s/exceedance/values-prod-kcca.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ app:
44
configmap: env-exceedance-production
55
image:
66
repository: eu.gcr.io/airqo-250220/kcca-exceedance-job
7-
tag: prod-f3a0213d-1733408157
7+
tag: prod-a3cb024a-1733435812
88
nameOverride: ''
99
fullnameOverride: ''

k8s/predict/values-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ images:
77
predictJob: eu.gcr.io/airqo-250220/airqo-predict-job
88
trainJob: eu.gcr.io/airqo-250220/airqo-train-job
99
predictPlaces: eu.gcr.io/airqo-250220/airqo-predict-places-air-quality
10-
tag: prod-f3a0213d-1733408157
10+
tag: prod-a3cb024a-1733435812
1111
api:
1212
name: airqo-prediction-api
1313
label: prediction-api

k8s/spatial/values-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ app:
66
replicaCount: 3
77
image:
88
repository: eu.gcr.io/airqo-250220/airqo-spatial-api
9-
tag: prod-f3a0213d-1733408157
9+
tag: prod-a3cb024a-1733435812
1010
nameOverride: ''
1111
fullnameOverride: ''
1212
podAnnotations: {}

k8s/workflows/values-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ images:
1010
initContainer: eu.gcr.io/airqo-250220/airqo-workflows-xcom
1111
redisContainer: eu.gcr.io/airqo-250220/airqo-redis
1212
containers: eu.gcr.io/airqo-250220/airqo-workflows
13-
tag: prod-f3a0213d-1733408157
13+
tag: prod-a3cb024a-1733435812
1414
nameOverride: ''
1515
fullnameOverride: ''
1616
podAnnotations: {}

src/workflows/airqo_etl_utils/data_validator.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ def remove_outliers(data: pd.DataFrame) -> pd.DataFrame:
159159
column_name=mapped_name, row_value=x
160160
)
161161
)
162-
else:
163-
data[col] = data[col].apply(
164-
lambda x: DataValidationUtils.get_valid_value(
165-
column_name=mapped_name, row_value=x
162+
else:
163+
data[col] = data[col].apply(
164+
lambda x: DataValidationUtils.get_valid_value(
165+
column_name=mapped_name, row_value=x
166+
)
166167
)
167-
)
168168
return data
169169

170170
@staticmethod

src/workflows/airqo_etl_utils/data_warehouse_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def extract_hourly_bam_data(
4545
},
4646
inplace=True,
4747
)
48-
data.loc[:, "device_category"] = str(DeviceCategory.BAM)
48+
data["device_category"] = str(DeviceCategory.BAM)
4949
return DataWarehouseUtils.filter_valid_columns(data)
5050

5151
@staticmethod

0 commit comments

Comments
 (0)