Skip to content

Commit

Permalink
Merge pull request #3654 from airqo-platform/staging
Browse files Browse the repository at this point in the history
move to production
  • Loading branch information
Baalmart authored Oct 15, 2024
2 parents f7b07f1 + 3e742d8 commit d03dddd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion k8s/auth-service/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ app:
replicaCount: 3
image:
repository: eu.gcr.io/airqo-250220/airqo-auth-api
tag: prod-d067e1aa-1728946849
tag: prod-f7b07f1a-1728967816
nameOverride: ''
fullnameOverride: ''
podAnnotations: {}
Expand Down
2 changes: 1 addition & 1 deletion k8s/auth-service/values-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ app:
replicaCount: 2
image:
repository: eu.gcr.io/airqo-250220/airqo-stage-auth-api
tag: stage-827e462a-1728941910
tag: stage-382a82d7-1728971248
nameOverride: ''
fullnameOverride: ''
podAnnotations: {}
Expand Down
2 changes: 1 addition & 1 deletion k8s/device-registry/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ app:
replicaCount: 3
image:
repository: eu.gcr.io/airqo-250220/airqo-device-registry-api
tag: prod-d067e1aa-1728946849
tag: prod-f7b07f1a-1728967816
nameOverride: ''
fullnameOverride: ''
podAnnotations: {}
Expand Down
2 changes: 1 addition & 1 deletion k8s/exceedance/values-prod-airqo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ app:
configmap: env-exceedance-production
image:
repository: eu.gcr.io/airqo-250220/airqo-exceedance-job
tag: prod-d067e1aa-1728946849
tag: prod-f7b07f1a-1728967816
nameOverride: ''
fullnameOverride: ''
2 changes: 1 addition & 1 deletion k8s/exceedance/values-prod-kcca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ app:
configmap: env-exceedance-production
image:
repository: eu.gcr.io/airqo-250220/kcca-exceedance-job
tag: prod-d067e1aa-1728946849
tag: prod-f7b07f1a-1728967816
nameOverride: ''
fullnameOverride: ''
2 changes: 1 addition & 1 deletion k8s/predict/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ images:
predictJob: eu.gcr.io/airqo-250220/airqo-predict-job
trainJob: eu.gcr.io/airqo-250220/airqo-train-job
predictPlaces: eu.gcr.io/airqo-250220/airqo-predict-places-air-quality
tag: prod-d067e1aa-1728946849
tag: prod-f7b07f1a-1728967816
api:
name: airqo-prediction-api
label: prediction-api
Expand Down
2 changes: 1 addition & 1 deletion k8s/spatial/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ app:
replicaCount: 3
image:
repository: eu.gcr.io/airqo-250220/airqo-spatial-api
tag: prod-d067e1aa-1728946849
tag: prod-f7b07f1a-1728967816
nameOverride: ''
fullnameOverride: ''
podAnnotations: {}
Expand Down
2 changes: 1 addition & 1 deletion src/auth-service/bin/jobs/preferences-update-job.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const updatePreferences = async (siteSelectionMethod = "featured") => {
const selectedSites = await getSelectedSites(siteSelectionMethod);

if (isEmpty(selectedSites) || selectedSites.length < 4) {
logger.error("👀 No selected sites found. Aborting preference update.");
logger.error("☹️☹️ No selected sites found. Aborting preference update.");
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/device-registry/bin/jobs/v2-store-readings-job.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const fetchAndStoreDataIntoReadingsModel = async () => {
const data = viewEventsResponse.data[0].data;
if (!data || data.length === 0) {
logText("No Events found to insert into Readings");
logger.error(`🐛🐛 Didn't find any Events to insert into Readings`);
logger.error(`☹️☹️ Didn't find any Events to insert into Readings`);
return;
}

Expand Down

0 comments on commit d03dddd

Please sign in to comment.