forked from Jurgen-Allewijn/Workshop-K8S
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app-v1.yaml
77 lines (77 loc) · 1.62 KB
/
app-v1.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
---
apiVersion: v1
kind: Service
metadata:
labels:
app: hello-world
name: hello-world-service
spec:
ports:
- name: web
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: hello-world
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello-world-ingress
annotations:
kubernetes.io/ingress.class: nginx
spec:
defaultBackend:
service:
name: hello-world-service
port:
number: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: hello-world
name: hello-world
spec:
strategy:
type: Recreate
replicas: 1
selector:
matchLabels:
app: hello-world
template:
metadata:
labels:
app: hello-world
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: "8080"
spec:
containers:
- image: avthart/hello-app:1.0.0
name: hello-world
ports:
- name: web
containerPort: 8080
resources:
requests:
memory: "64Mi"
cpu: "100m"
limits:
memory: "128Mi"
cpu: "150m"
# liveness probes to know when to restart a Container.
livenessProbe:
httpGet:
path: /health
port: web
initialDelaySeconds: 10
periodSeconds: 5
# readiness probes to know when a Container is ready to start accepting traffic.
readinessProbe:
httpGet:
path: /health
port: web
initialDelaySeconds: 10
periodSeconds: 5