-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubernetes_manifest.yml
41 lines (40 loc) · 1.1 KB
/
kubernetes_manifest.yml
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: polygonal-annotation-tool
spec:
replicas: 1
selector:
matchLabels:
app: polygonal-annotation-tool
template:
metadata:
labels:
app: polygonal-annotation-tool
spec:
containers:
- name: polygonal-annotation-tool
image: ${CONTAINER_IMAGE_TAGGED}
env:
- name: VUE_APP_STORAGE_SERVICE_API_URL
value: http://172.16.98.151:30480/api
- name: VUE_APP_ANNOTATION_FIELD
value: polygonalAnnotation
- name: VUE_APP_LABELS
value: example
- name: VUE_APP_DEFAULT_LABEL
value: example
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: polygonal-annotation-tool
spec:
ports:
- port: 80
nodePort: 30444
selector:
app: polygonal-annotation-tool
type: NodePort