Skip to content

Commit f2ea8d1

Browse files
committed
adapter-pattern
1 parent fd63a25 commit f2ea8d1

File tree

4 files changed

+117
-0
lines changed

4 files changed

+117
-0
lines changed

kubernetes/adapter-pattern/db.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"cars":[
3+
{
4+
"id":1,
5+
"make":"honda",
6+
"model": "civic",
7+
"topSpeed" : 60
8+
},
9+
{
10+
"id":2,
11+
"make":"honda",
12+
"model": "accord",
13+
"topSpeed" : 80
14+
},
15+
{
16+
"id":3,
17+
"make":"nissan",
18+
"model": "370z",
19+
"topSpeed" : 100
20+
}
21+
]
22+
}
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
upstream backend {
2+
server localhost;
3+
}
4+
5+
server {
6+
7+
listen 8080;
8+
9+
default_type application/json;
10+
11+
location /cars_backend {
12+
internal;
13+
proxy_pass http://backend$request_uri;
14+
proxy_redirect off;
15+
}
16+
17+
location /cars {
18+
19+
content_by_lua_block {
20+
21+
-- forward to backend
22+
local a = ngx.location.capture("/cars_backend")
23+
24+
-- convert to diff unit
25+
local func = function (v)
26+
return '"topSpeed": ' .. v[1] * 1.6;
27+
end
28+
29+
-- find a match and replace
30+
local newstr, n, err = ngx.re.sub(a.body, '"topSpeed": ([0-9]+)', func)
31+
32+
-- final response
33+
ngx.say(newstr)
34+
35+
}
36+
}
37+
38+
}
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
labels:
5+
app: car-service
6+
name: car-service
7+
spec:
8+
replicas: 1
9+
selector:
10+
matchLabels:
11+
app: car-service
12+
template:
13+
metadata:
14+
labels:
15+
app: car-service
16+
spec:
17+
containers:
18+
- image: openresty/openresty:alpine
19+
name: car-adapter
20+
ports:
21+
- containerPort: 8080
22+
volumeMounts:
23+
- name: conf
24+
mountPath: /etc/nginx/conf.d/
25+
- image: clue/json-server
26+
name: car-service
27+
ports:
28+
- containerPort: 80
29+
volumeMounts:
30+
- name: db
31+
mountPath: /data/
32+
volumes:
33+
- name: db
34+
configMap:
35+
name: carsdb
36+
- name: conf
37+
configMap:
38+
name: nginxconf
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
labels:
5+
app: car-service
6+
name: car-service
7+
spec:
8+
ports:
9+
- name: 8080-80
10+
port: 8080
11+
protocol: TCP
12+
targetPort: 80
13+
- name: 8081-80
14+
port: 8081
15+
protocol: TCP
16+
targetPort: 8080
17+
selector:
18+
app: car-service
19+
type: LoadBalancer

0 commit comments

Comments
 (0)