-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathapi.yaml
More file actions
58 lines (58 loc) · 1.23 KB
/
Copy pathapi.yaml
File metadata and controls
58 lines (58 loc) · 1.23 KB
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
---
apiVersion: v1
kind: Service
metadata:
name: api
labels:
app.kubernetes.io/name: api
app.kubernetes.io/instance: api
spec:
type: LoadBalancer
ports:
- port: 8632
targetPort: 8632
protocol: TCP
name: http
selector:
app.kubernetes.io/name: api
app.kubernetes.io/instance: api
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: api
labels:
app.kubernetes.io/name: api
app.kubernetes.io/instance: api
spec:
replicas: 1
revisionHistoryLimit: 3
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
selector:
matchLabels:
app.kubernetes.io/name: api
app.kubernetes.io/instance: api
template:
metadata:
labels:
app.kubernetes.io/name: api
app.kubernetes.io/instance: api
spec:
serviceAccountName: default
containers:
- name: api
imagePullPolicy: Never
image: "api"
ports:
- name: http
containerPort: 8632
protocol: TCP
env:
- name: MICRONAUT_HTTP_SERVICES_NGSI_URL
value: http://orion-ld:1026
- name: GENERAL_BASEPATH
value: ${module.ctk.base-path}