-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwhisper.yaml
48 lines (48 loc) · 1.04 KB
/
whisper.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
---
apiVersion: v1
kind: Service
metadata:
name: islandora-whisper
spec:
selector:
app: islandora-whisper
ports:
- protocol: TCP
port: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: islandora-whisper
spec:
replicas: 3
selector:
matchLabels:
app: islandora-whisper
template:
metadata:
labels:
app: islandora-whisper
spec:
containers:
- name: scyllaridae-whisper
image: lehighlts/scyllaridae-whisper:main-14a4905
imagePullPolicy: IfNotPresent
env:
- name: "JWKS_URI"
value: "https://preserve.lehigh.edu/oauth/discovery/keys"
resources:
requests:
memory: "2Gi"
cpu: "500m"
limits:
memory: "10Gi"
nvidia.com/gpu: "4"
ports:
- containerPort: 8080
readinessProbe:
httpGet:
path: /healthcheck
port: 8080
initialDelaySeconds: 5
periodSeconds: 10