-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathmanager.yaml
89 lines (89 loc) · 2.7 KB
/
manager.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright 2021 IBM Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: apps/v1
kind: Deployment
metadata:
name: modelmesh-controller
labels:
control-plane: modelmesh-controller
spec:
selector:
matchLabels:
control-plane: modelmesh-controller
replicas: 1 # This can be increased safely to enable HA. A good value to set is 3.
template:
metadata:
labels:
control-plane: modelmesh-controller
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: control-plane
operator: In
values:
- modelmesh-controller
topologyKey: topology.kubernetes.io/zone
containers:
- command:
- /manager
args:
- --enable-leader-election
image: modelmesh-controller:replace
name: manager
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: ETCD_SECRET_NAME
value: "model-serving-etcd"
readinessProbe:
httpGet:
path: /readyz
port: 8081
initialDelaySeconds: 10
periodSeconds: 5
livenessProbe:
httpGet:
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 10
resources:
requests:
cpu: 50m
memory: 96Mi
limits:
cpu: "1"
memory: 512Mi
volumeMounts:
- mountPath: /etc/model-serving/config/default
name: config-defaults
readOnly: true
securityContext:
capabilities:
drop:
- ALL
terminationGracePeriodSeconds: 10
serviceAccountName: modelmesh-controller
volumes:
- name: config-defaults
configMap:
defaultMode: 420
name: model-serving-config-defaults