-
Notifications
You must be signed in to change notification settings - Fork 28
/
deployment.yaml
165 lines (163 loc) · 3.58 KB
/
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
---
# Source: doc-controller/templates/networkpolicy.yaml
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: doc-controller
namespace: default
labels:
app: doc-controller
app.kubernetes.io/name: doc-controller
app.kubernetes.io/version: "0.14.0"
spec:
podSelector:
matchLabels:
app: doc-controller
policyTypes:
- Ingress
- Egress
egress:
# Kubernetes apiserver access
- to:
- ipBlock:
cidr: 0.0.0.0/0
ports:
- port: 443
protocol: TCP
- port: 6443
protocol: TCP
# DNS egress
- to:
- podSelector:
matchLabels:
k8s-app: kube-dns
ports:
- port: 53
protocol: UDP
ingress:
# prometheus metrics scraping support
- from:
- namespaceSelector:
matchLabels:
name: monitoring
podSelector:
matchLabels:
app: prometheus
ports:
- port: http
protocol: TCP
---
# Source: doc-controller/templates/rbac.yaml
# Scoped service account
apiVersion: v1
kind: ServiceAccount
metadata:
name: doc-controller
labels:
app: doc-controller
app.kubernetes.io/name: doc-controller
app.kubernetes.io/version: "0.14.0"
namespace: default
automountServiceAccountToken: true
---
# Source: doc-controller/templates/rbac.yaml
# Access for the service account
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: doc-controller
rules:
- apiGroups: ["kube.rs"]
resources: ["documents", "documents/status", "documents/finalizers"]
verbs: ["get", "list", "watch", "patch", "update"]
- apiGroups: ["events.k8s.io"]
resources: ["events"]
verbs: ["create"]
---
# Source: doc-controller/templates/rbac.yaml
# Binding the role to the account
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: doc-controller
subjects:
- kind: ServiceAccount
namespace: default
name: doc-controller
roleRef:
kind: ClusterRole
name: doc-controller
apiGroup: rbac.authorization.k8s.io
---
# Source: doc-controller/templates/service.yaml
# Expose the http port of the service
apiVersion: v1
kind: Service
metadata:
name: doc-controller
namespace: default
labels:
app: doc-controller
app.kubernetes.io/name: doc-controller
app.kubernetes.io/version: "0.14.0"
spec:
type: ClusterIP
ports:
- port: 80
targetPort: 8080
protocol: TCP
name: http
selector:
app: doc-controller
---
# Source: doc-controller/templates/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: doc-controller
namespace: default
labels:
app: doc-controller
app.kubernetes.io/name: doc-controller
app.kubernetes.io/version: "0.14.0"
spec:
replicas: 1
selector:
matchLabels:
app: doc-controller
template:
metadata:
labels:
app: doc-controller
annotations:
kubectl.kubernetes.io/default-container: doc-controller
spec:
serviceAccountName: doc-controller
securityContext:
{}
containers:
- name: doc-controller
image: clux/controller:0.14.0
imagePullPolicy: IfNotPresent
securityContext:
{}
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 50m
memory: 100Mi
ports:
- name: http
containerPort: 8080
protocol: TCP
env:
- name: RUST_LOG
value: info,kube=debug,controller=debug
readinessProbe:
httpGet:
path: /health
port: http
initialDelaySeconds: 5
periodSeconds: 5