Skip to content

Commit 5fbb05e

Browse files
Merge branch 'staging' into update/Integration-iqair-devices
Updates from airqo staging
2 parents 1bd64f2 + 7bd1427 commit 5fbb05e

File tree

9 files changed

+14
-8
lines changed

9 files changed

+14
-8
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-a7e2441e-1733386719
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-a7e2441e-1733386719
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-a7e2441e-1733386719
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-a7e2441e-1733386719
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-a7e2441e-1733386719
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-a7e2441e-1733386719
13+
tag: prod-a3cb024a-1733435812
1414
nameOverride: ''
1515
fullnameOverride: ''
1616
podAnnotations: {}

k8s/workflows/values-stage.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-stage-workflows-xcom
1111
redisContainer: eu.gcr.io/airqo-250220/airqo-stage-redis
1212
containers: eu.gcr.io/airqo-250220/airqo-stage-workflows
13-
tag: stage-76ff52fe-1733336066
13+
tag: stage-635379ef-1733407940
1414
nameOverride: ''
1515
fullnameOverride: ''
1616
podAnnotations: {}

src/auth-service/utils/create-network.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,10 @@ const createNetwork = {
10321032
);
10331033
}
10341034

1035+
const usersFilter = generateFilter.users(request, next);
1036+
10351037
const filter = {
1038+
...usersFilter,
10361039
"network_roles.network": { $ne: net_id },
10371040
category: "networks",
10381041
};
@@ -1076,7 +1079,10 @@ const createNetwork = {
10761079
);
10771080
}
10781081

1082+
const usersFilter = generateFilter.users(request, next);
1083+
10791084
const filter = {
1085+
...usersFilter,
10801086
"network_roles.network": net_id,
10811087
category: "networks",
10821088
};

0 commit comments

Comments
 (0)