forked from luksa/kubernetes-in-action-2nd-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ing.kiada.affinity-gke.yaml
61 lines (61 loc) · 1.15 KB
/
ing.kiada.affinity-gke.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
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kiada
annotations:
cloud.google.com/backend-config: '{"default": "kiada-backend-config"}'
spec:
rules:
- host: kiada.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: kiada
port:
name: http
- host: api.example.com
http:
paths:
- path: /quote
pathType: Exact
backend:
service:
name: quote
port:
name: http
- path: /questions
pathType: Prefix
backend:
service:
name: quiz
port:
name: http
---
apiVersion: v1
kind: Service
metadata:
name: kiada
annotations:
cloud.google.com/backend-config: '{"default": "kiada-backend-config"}'
spec:
type: ClusterIP
selector:
app: kiada
ports:
- name: http
port: 80
targetPort: 8080
- name: https
port: 443
targetPort: 8443
---
apiVersion: cloud.google.com/v1
kind: BackendConfig
metadata:
name: kiada-backend-config
spec:
sessionAffinity:
affinityType: GENERATED_COOKIE