-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubernetes_manifest.yml
50 lines (50 loc) · 1018 Bytes
/
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
42
43
44
45
46
47
48
49
50
# apiVersion: v1
# kind: PersistentVolumeClaim
# metadata:
# name: model
# spec:
# accessModes:
# - ReadWriteMany
# resources:
# requests:
# storage: 10Gi
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ${APPLICATION_NAME}
spec:
replicas: 1
selector:
matchLabels:
app: ${APPLICATION_NAME}
template:
metadata:
labels:
app: ${APPLICATION_NAME}
spec:
containers:
- name: ${APPLICATION_NAME}
image: ${CONTAINER_IMAGE_TAGGED_CPU}
env:
- name: MLFLOW_TRACKING_URI
value: http://mlflow.mlflow:5000
# volumeMounts:
# - mountPath: /usr/src/app/model
# name: model
# volumes:
# - name: model
# persistentVolumeClaim:
# claimName: model
---
apiVersion: v1
kind: Service
metadata:
name: ${APPLICATION_NAME}
spec:
type: NodePort
selector:
app: ${APPLICATION_NAME}
ports:
- port: 80
nodePort: ${K8S_NODEPORT}