-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgpt-detector.deploy.yaml
51 lines (51 loc) · 976 Bytes
/
gpt-detector.deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apiVersion: v1
kind: Namespace
metadata:
name: gpt-detector
spec:
finalizers:
- kubernetes
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gpt-detector-classifier
namespace: gpt-detector
spec:
replicas: 1
selector:
matchLabels:
app: gpt-detector-classifier
template:
metadata:
labels:
app: gpt-detector-classifier
spec:
nodeSelector:
agentpool: gpu
containers:
- name: classifier
image: gptdetector.azurecr.io/gensy/classifier:02
resources:
requests:
cpu: 1000m
memory: 4Gi
limits:
cpu: 1000m
memory: 4Gi
ports:
- containerPort: 5000
---
apiVersion: v1
kind: Service
metadata:
name: gpt-detector-svc
namespace: gpt-detector
spec:
type: LoadBalancer
ports:
- protocol: TCP
port: 80
targetPort: 5000
selector:
app: gpt-detector-classifier