-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathk8s-faulty-api.yaml
More file actions
64 lines (64 loc) · 1.2 KB
/
Copy pathk8s-faulty-api.yaml
File metadata and controls
64 lines (64 loc) · 1.2 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
59
60
61
62
63
64
apiVersion: apps/v1
kind: Deployment
metadata:
name: faulty-api
labels:
app: faulty-api
spec:
replicas: 1
selector:
matchLabels:
app: faulty-api
template:
metadata:
labels:
app: faulty-api
spec:
nodeSelector:
kubernetes.io/hostname: minikube
containers:
- name: faulty-api
image: faulty-api:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
env:
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: ERROR_RATE
value: "0.5"
---
apiVersion: v1
kind: Service
metadata:
name: faulty-api
labels:
app: faulty-api
spec:
type: ClusterIP
selector:
app: faulty-api
ports:
- name: http
port: 80
targetPort: 8080
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: faulty-api
spec:
ingressClassName: nginx
rules:
- host: faulty.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: faulty-api
port:
number: 80