Skip to content

Commit 34ae47c

Browse files
authored
Merge pull request #2443 from airqo-platform/staging
move to production
2 parents 4a04d7c + 3c07725 commit 34ae47c

30 files changed

+2497
-336
lines changed

k8s/calibrate/values-stage.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ service:
1919
nodePort: 31106
2020
resources:
2121
limits:
22-
cpu: 50m
22+
cpu: 100m
2323
memory: 100Mi
2424
requests:
2525
cpu: 5m

k8s/docs/values-stage.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ ingress:
1919
enabled: false
2020
resources:
2121
limits:
22-
cpu: 50m
22+
cpu: 200m
2323
memory: 100Mi
2424
requests:
25-
cpu: 1m
25+
cpu: 10m
2626
memory: 20Mi
2727
autoscaling:
2828
minReplicas: 1

netmanager-app/app/(authenticated)/clients/page.tsx

-290
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import ProfileTabs from "@/components/Settings/ProfileTabs"
2+
3+
export default function ProfilePage() {
4+
return (
5+
<div className="container mx-auto px-4 ">
6+
<h1 className="text-3xl font-bold mb-6">User Profile</h1>
7+
<ProfileTabs />
8+
</div>
9+
)
10+
}
11+

netmanager-app/app/types/clients.ts

-2
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,3 @@ import { UserDetails } from './users';
2323
user: UserDetails
2424
access_token: AccessToken
2525
}
26-
27-

0 commit comments

Comments
 (0)