Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move to production #1848

Merged
merged 4 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions inventory/templates/dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,23 +107,23 @@ <h4 class="card-title">Weekly Todo list</h4>
document.getElementById("id_choice").onchange = function() {
var option = this.value;
if (option === '0') {
window.location.href = '/index/';
window.location.href = 'index/';
} else if (option === '1') {
window.location.href = 'inventory/casing/';
window.location.href = 'casing/';
} else if (option === '2') {
window.location.href = 'inventory/phase2_smt/';
window.location.href = 'phase2_smt/';
}else if (option === '3') {
window.location.href = 'inventory/phase1_tht/';
window.location.href = 'phase1_tht/';
}else if (option === '4') {
window.location.href = 'inventory/phase3_tunning/';
window.location.href = 'phase3_tunning/';
}else if (option === '5') {
window.location.href = 'inventory/monitor_assembly/';
window.location.href = 'monitor_assembly/';
}else if (option === '6') {
window.location.href = 'inventory/communication_config/';
window.location.href = 'communication_config/';
}else if (option === '7') {
window.location.href = 'inventory/analysis/';
window.location.href = 'analysis/';
}else if (option === '8') {
window.location.href = 'inventory/correction/';
window.location.href = 'correction/';
}
};
</script>
Expand Down
2 changes: 1 addition & 1 deletion k8s/inventory/values-prod.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
replicaCount: 2
image:
repository: eu.gcr.io/airqo-250220/airqo-inventory
tag: prod-77d4f68f-1706082903
tag: prod-3722d7cc-1707409844
pullPolicy: Always
imagePullSecrets: []
nameOverride: ''
Expand Down
2 changes: 1 addition & 1 deletion k8s/platform/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ replicaCount: 1
image:
repository: eu.gcr.io/airqo-250220/airqo-next-platform
pullPolicy: Always
tag: prod-c02ba194-1706909988
tag: prod-3722d7cc-1707409844
imagePullSecrets: []
nameOverride: ''
fullnameOverride: ''
Expand Down
Loading