-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.yaml
41 lines (41 loc) · 1006 Bytes
/
deployment.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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
k8s-app: discovery-operator
name: discovery-operator
namespace: tectonic-system
spec:
progressDeadlineSeconds: 600
replicas: 1
selector:
matchLabels:
k8s-app: discovery-operator
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
labels:
k8s-app: discovery-operator
spec:
containers:
- image: docker.io/fabianvf/discovery-operator
args:
- "-t"
- "30m"
imagePullPolicy: Always
name: discovery-operator
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
nodeSelector:
node-role.kubernetes.io/master: ""
restartPolicy: Always
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists