forked from mailgun/gubernator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
k8s-deployment.yaml
115 lines (114 loc) · 2.75 KB
/
k8s-deployment.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
apiVersion: apps/v1
kind: Deployment
metadata:
name: gubernator
labels:
app: gubernator
spec:
replicas: 4
selector:
matchLabels:
app: gubernator
template:
metadata:
labels:
app: gubernator
spec:
serviceAccountName: gubernator
containers:
- image: thrawn01/gubernator:latest
imagePullPolicy: IfNotPresent
ports:
- name: grpc-port
containerPort: 81
- name: http-port
containerPort: 80
name: gubernator
env:
- name: GUBER_K8S_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: GUBER_K8S_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
# Must set the GRPC and HTTP addresses, as gubernator
# defaults to listening on localhost only
- name: GUBER_GRPC_ADDRESS
value: 0.0.0.0:81
- name: GUBER_HTTP_ADDRESS
value: 0.0.0.0:80
# Use the k8s API for peer discovery
- name: GUBER_PEER_DISCOVERY_TYPE
value: "k8s"
# This should match the port number GRPC is listening on
# as defined by `containerPort`
- name: GUBER_K8S_POD_PORT
value: "81"
# The selector used when listing endpoints. This selector
# should only select gubernator peers.
- name: GUBER_K8S_ENDPOINTS_SELECTOR
value: "app=gubernator"
# Gubernator can watch 'endpoints' for changes to the peers
# or it can watch 'pods' (Defaults to 'endpoints')
# - name: GUBER_K8S_WATCH_MECHANISM
# value: "endpoints"
# Enable debug for diagnosing issues
- name: GUBER_DEBUG
value: "true"
# Defines the max age of a client connection
# Default is infinity
# - name: GUBER_GRPC_MAX_CONN_AGE_SEC
# value: "30"
restartPolicy: Always
---
apiVersion: v1
kind: Service
metadata:
name: gubernator
labels:
app: gubernator
spec:
clusterIP: None
#ports:
#- name: grpc-port
#targetPort: 81
#protocol: TCP
#port: 81
#- name: http-port
#targetPort: 80
#protocol: TCP
#port: 80
selector:
app: gubernator
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: gubernator
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: get-endpoints
rules:
- apiGroups:
- ""
resources:
- endpoints
verbs:
- list
- watch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: get-endpoints
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: get-endpoints
subjects:
- kind: ServiceAccount
name: gubernator