-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yaml
45 lines (45 loc) · 1.15 KB
/
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
42
43
44
45
# SPDX-License-Identifier: Apache-2.0
apiVersion: apps/v1
kind: Deployment
metadata:
name: typology-processor-rel-1-0-0
namespace: processor
labels:
app: typology-processor
spec:
replicas: 1
selector:
matchLabels:
app: typology-processor
template:
metadata:
name: typology-processor-rel-1-0-0
labels:
app: typology-processor
annotations:
prometheus.io.scrape: 'false'
spec:
containers:
- name: typology-processor-rel-1-0-0
image: example.io/typology-processor-rel-1-0-0:1.0.0
ports:
- name: http
containerPort: 8080
protocol: TCP
resources: {}
imagePullPolicy: Always
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: ClusterFirst
securityContext: {}
imagePullSecrets:
- name: frmpullsecret
schedulerName: default-scheduler
enableServiceLinks: false
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
revisionHistoryLimit: 10
progressDeadlineSeconds: 600